Version Description
Give version 1.8 is a major update. Please make sure you make a backup of your database before updating.
Download this release
Release Info
Developer | dlocc |
Plugin | Give – Donation Plugin and Fundraising Platform |
Version | 2.1.1 |
Comparing to | |
See all releases |
Code changes from version 2.1.0 to 2.1.1
- give.php +2 -2
- includes/admin/shortcodes/abstract-shortcode-generator.php +11 -10
- includes/admin/shortcodes/shortcode-give-donation-grid.php +6 -6
- includes/admin/upgrades/class-give-updates.php +4 -7
- includes/admin/upgrades/views/db-upgrades-complete-metabox.php +23 -0
- includes/admin/upgrades/views/upgrades.php +6 -5
- includes/class-give-donate-form.php +2 -2
- includes/class-give-stats.php +4 -4
- languages/give.pot +22 -948
- readme.txt +11 -2
give.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: The most robust, flexible, and intuitive way to accept donations on WordPress.
|
6 |
* Author: WordImpress
|
7 |
* Author URI: https://wordimpress.com
|
8 |
-
* Version: 2.1.
|
9 |
* Text Domain: give
|
10 |
* Domain Path: /languages
|
11 |
* GitHub Plugin URI: https://github.com/WordImpress/Give
|
@@ -395,7 +395,7 @@ if ( ! class_exists( 'Give' ) ) :
|
|
395 |
|
396 |
// Plugin version
|
397 |
if ( ! defined( 'GIVE_VERSION' ) ) {
|
398 |
-
define( 'GIVE_VERSION', '2.1.
|
399 |
}
|
400 |
|
401 |
// Plugin Root File
|
5 |
* Description: The most robust, flexible, and intuitive way to accept donations on WordPress.
|
6 |
* Author: WordImpress
|
7 |
* Author URI: https://wordimpress.com
|
8 |
+
* Version: 2.1.1
|
9 |
* Text Domain: give
|
10 |
* Domain Path: /languages
|
11 |
* GitHub Plugin URI: https://github.com/WordImpress/Give
|
395 |
|
396 |
// Plugin version
|
397 |
if ( ! defined( 'GIVE_VERSION' ) ) {
|
398 |
+
define( 'GIVE_VERSION', '2.1.1' );
|
399 |
}
|
400 |
|
401 |
// Plugin Root File
|
includes/admin/shortcodes/abstract-shortcode-generator.php
CHANGED
@@ -324,16 +324,17 @@ abstract class Give_Shortcode_Generator {
|
|
324 |
protected function generate_textbox( $field ) {
|
325 |
|
326 |
$textbox = shortcode_atts( array(
|
327 |
-
'label'
|
328 |
-
'maxLength'
|
329 |
-
'minHeight'
|
330 |
-
'minWidth'
|
331 |
-
'multiline'
|
332 |
-
'name'
|
333 |
-
'tooltip'
|
334 |
-
'type'
|
335 |
-
'value'
|
336 |
-
'classes'
|
|
|
337 |
), $field );
|
338 |
|
339 |
if ( $this->validate( $field ) ) {
|
324 |
protected function generate_textbox( $field ) {
|
325 |
|
326 |
$textbox = shortcode_atts( array(
|
327 |
+
'label' => '',
|
328 |
+
'maxLength' => '',
|
329 |
+
'minHeight' => '',
|
330 |
+
'minWidth' => '',
|
331 |
+
'multiline' => false,
|
332 |
+
'name' => false,
|
333 |
+
'tooltip' => '',
|
334 |
+
'type' => '',
|
335 |
+
'value' => '',
|
336 |
+
'classes' => '',
|
337 |
+
'placeholder' => ''
|
338 |
), $field );
|
339 |
|
340 |
if ( $this->validate( $field ) ) {
|
includes/admin/shortcodes/shortcode-give-donation-grid.php
CHANGED
@@ -42,11 +42,11 @@ class Give_Shortcode_Donation_Grid extends Give_Shortcode_Generator {
|
|
42 |
'html' => sprintf( '<p class="strong margin-top">%s</p>', esc_html__( 'Optional settings', 'give' ) ),
|
43 |
),
|
44 |
array(
|
45 |
-
'type'
|
46 |
-
'name'
|
47 |
-
'label'
|
48 |
-
'tooltip'
|
49 |
-
'
|
50 |
),
|
51 |
array(
|
52 |
'type' => 'listbox',
|
@@ -65,7 +65,7 @@ class Give_Shortcode_Donation_Grid extends Give_Shortcode_Generator {
|
|
65 |
'type' => 'listbox',
|
66 |
'name' => 'show_goal',
|
67 |
'label' => esc_attr__( 'Show Goal:', 'give' ),
|
68 |
-
'tooltip' =>
|
69 |
'options' => array(
|
70 |
'true' => esc_html__( 'Show', 'give' ),
|
71 |
'false' => esc_html__( 'Hide', 'give' ),
|
42 |
'html' => sprintf( '<p class="strong margin-top">%s</p>', esc_html__( 'Optional settings', 'give' ) ),
|
43 |
),
|
44 |
array(
|
45 |
+
'type' => 'textbox',
|
46 |
+
'name' => 'ids',
|
47 |
+
'label' => esc_attr__( 'Form IDs:', 'give' ),
|
48 |
+
'tooltip' => esc_attr__( 'Enter a comma-separated list of form IDs. If empty, all published forms are displayed.', 'give' ),
|
49 |
+
'placeholder' => esc_html__( 'All Forms', 'give' )
|
50 |
),
|
51 |
array(
|
52 |
'type' => 'listbox',
|
65 |
'type' => 'listbox',
|
66 |
'name' => 'show_goal',
|
67 |
'label' => esc_attr__( 'Show Goal:', 'give' ),
|
68 |
+
'tooltip' => __( 'Do you want to display the goal\'s progress bar?', 'give' ),
|
69 |
'options' => array(
|
70 |
'true' => esc_html__( 'Show', 'give' ),
|
71 |
'false' => esc_html__( 'Hide', 'give' ),
|
includes/admin/upgrades/class-give-updates.php
CHANGED
@@ -243,11 +243,6 @@ class Give_Updates {
|
|
243 |
// Load plugin updates.
|
244 |
$this->__register_plugin_addon_updates();
|
245 |
|
246 |
-
// Bailout.
|
247 |
-
if ( ! $this->get_total_update_count() ) {
|
248 |
-
return;
|
249 |
-
}
|
250 |
-
|
251 |
// Bailout.
|
252 |
if ( ! $this->get_total_update_count() ) {
|
253 |
// Show complete update message if still on update setting page.
|
@@ -304,7 +299,7 @@ class Give_Updates {
|
|
304 |
) {
|
305 |
delete_option( 'give_show_db_upgrade_complete_notice' );
|
306 |
|
307 |
-
wp_redirect(
|
308 |
exit();
|
309 |
}
|
310 |
}
|
@@ -589,6 +584,8 @@ class Give_Updates {
|
|
589 |
* @access public
|
590 |
*/
|
591 |
public function __show_notice() {
|
|
|
|
|
592 |
// Bailout.
|
593 |
if ( ! current_user_can( 'manage_give_settings' ) ) {
|
594 |
return;
|
@@ -601,7 +598,7 @@ class Give_Updates {
|
|
601 |
|
602 |
|
603 |
// Bailout.
|
604 |
-
if (
|
605 |
return;
|
606 |
}
|
607 |
|
243 |
// Load plugin updates.
|
244 |
$this->__register_plugin_addon_updates();
|
245 |
|
|
|
|
|
|
|
|
|
|
|
246 |
// Bailout.
|
247 |
if ( ! $this->get_total_update_count() ) {
|
248 |
// Show complete update message if still on update setting page.
|
299 |
) {
|
300 |
delete_option( 'give_show_db_upgrade_complete_notice' );
|
301 |
|
302 |
+
wp_redirect( admin_url( 'edit.php?post_type=give_forms&page=give-updates&give-db-update-completed=give_db_upgrade_completed' ) );
|
303 |
exit();
|
304 |
}
|
305 |
}
|
584 |
* @access public
|
585 |
*/
|
586 |
public function __show_notice() {
|
587 |
+
$current_screen = get_current_screen();
|
588 |
+
|
589 |
// Bailout.
|
590 |
if ( ! current_user_can( 'manage_give_settings' ) ) {
|
591 |
return;
|
598 |
|
599 |
|
600 |
// Bailout.
|
601 |
+
if ( in_array( $current_screen->base, array( 'give_forms_page_give-updates', 'update-core' ) ) ) {
|
602 |
return;
|
603 |
}
|
604 |
|
includes/admin/upgrades/views/db-upgrades-complete-metabox.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="give-db-updates" data-resume-update="0">
|
2 |
+
<div class="postbox-container">
|
3 |
+
<div class="postbox">
|
4 |
+
<h2 class="hndle"><?php esc_html_e( 'Database Updates', 'give' ); ?></h2>
|
5 |
+
<div class="inside">
|
6 |
+
<div class="progress-container">
|
7 |
+
<p class="update-message"><strong><?php esc_html_e( 'Updates Completed.', 'give' ) ?></strong></p>
|
8 |
+
<div class="progress-content">
|
9 |
+
<div class="notice-wrap give-clearfix">
|
10 |
+
<div class="notice notice-success is-dismissible inline">
|
11 |
+
<p><?php esc_html_e( 'Give database updates completed successfully. Thank you for updating to the latest version!', 'give' ) ?>
|
12 |
+
</p>
|
13 |
+
<button type="button" class="notice-dismiss"></button>
|
14 |
+
</div>
|
15 |
+
</div>
|
16 |
+
</div>
|
17 |
+
</div>
|
18 |
+
</div>
|
19 |
+
<!-- .inside -->
|
20 |
+
</div><!-- .postbox -->
|
21 |
+
</div>
|
22 |
+
</div>
|
23 |
+
<?php delete_option( 'give_show_db_upgrade_complete_notice' ); ?>
|
includes/admin/upgrades/views/upgrades.php
CHANGED
@@ -19,11 +19,7 @@ $give_updates = Give_Updates::get_instance();
|
|
19 |
<div class="wrap" id="poststuff">
|
20 |
<div id="give-updates">
|
21 |
<h1 id="give-updates-h1"><?php esc_html_e( 'Give - Updates', 'give' ); ?></h1>
|
22 |
-
<hr class="wp-header-end"
|
23 |
-
|
24 |
-
<div class="give-update-panel-content">
|
25 |
-
<p><?php printf( __( 'Give regularly receives new features, bug fixes, and enhancements. It is important to always stay up-to-date with latest version of Give core and its add-ons. Please create a backup of your site before updating. To update add-ons be sure your <a href="%1$s">license keys</a> are activated.', 'give' ), 'https://givewp.com/my-account/' ); ?></p>
|
26 |
-
</div>
|
27 |
|
28 |
<?php $db_updates = $give_updates->get_pending_db_update_count(); ?>
|
29 |
<?php if ( ! empty( $db_updates ) ) : ?>
|
@@ -33,6 +29,10 @@ $give_updates = Give_Updates::get_instance();
|
|
33 |
$resume_updates = get_option( 'give_doing_upgrade' );
|
34 |
$width = ! empty( $resume_updates ) ? $resume_updates['percentage'] : 0;
|
35 |
?>
|
|
|
|
|
|
|
|
|
36 |
<div id="give-db-updates" data-resume-update="<?php echo absint( $give_updates->is_doing_updates() ); ?>">
|
37 |
<div class="postbox-container">
|
38 |
<div class="postbox">
|
@@ -108,6 +108,7 @@ $give_updates = Give_Updates::get_instance();
|
|
108 |
</div><!-- .postbox -->
|
109 |
</div>
|
110 |
</div>
|
|
|
111 |
<?php endif; ?>
|
112 |
|
113 |
<?php $plugin_updates = $give_updates->get_total_plugin_update_count(); ?>
|
19 |
<div class="wrap" id="poststuff">
|
20 |
<div id="give-updates">
|
21 |
<h1 id="give-updates-h1"><?php esc_html_e( 'Give - Updates', 'give' ); ?></h1>
|
22 |
+
<hr class="wp-header-end"
|
|
|
|
|
|
|
|
|
23 |
|
24 |
<?php $db_updates = $give_updates->get_pending_db_update_count(); ?>
|
25 |
<?php if ( ! empty( $db_updates ) ) : ?>
|
29 |
$resume_updates = get_option( 'give_doing_upgrade' );
|
30 |
$width = ! empty( $resume_updates ) ? $resume_updates['percentage'] : 0;
|
31 |
?>
|
32 |
+
<div class="give-update-panel-content">
|
33 |
+
<p><?php printf( __( 'Give regularly receives new features, bug fixes, and enhancements. It is important to always stay up-to-date with latest version of Give core and its add-ons. Please create a backup of your site before updating. To update add-ons be sure your <a href="%1$s">license keys</a> are activated.', 'give' ), 'https://givewp.com/my-account/' ); ?></p>
|
34 |
+
</div>
|
35 |
+
|
36 |
<div id="give-db-updates" data-resume-update="<?php echo absint( $give_updates->is_doing_updates() ); ?>">
|
37 |
<div class="postbox-container">
|
38 |
<div class="postbox">
|
108 |
</div><!-- .postbox -->
|
109 |
</div>
|
110 |
</div>
|
111 |
+
<?php else: include GIVE_PLUGIN_DIR . 'includes/admin/upgrades/views/db-upgrades-complete-metabox.php';?>
|
112 |
<?php endif; ?>
|
113 |
|
114 |
<?php $plugin_updates = $give_updates->get_total_plugin_update_count(); ?>
|
includes/class-give-donate-form.php
CHANGED
@@ -567,10 +567,10 @@ class Give_Donate_Form {
|
|
567 |
public function get_maximum_price() {
|
568 |
|
569 |
if ( ! isset( $this->maximum_price ) ) {
|
570 |
-
$this->maximum_price = give_get_meta( $this->ID, '_give_custom_amount_range_maximum', true );
|
571 |
|
572 |
if ( ! $this->is_custom_price_mode() ) {
|
573 |
-
$this->maximum_price =
|
574 |
}
|
575 |
}
|
576 |
|
567 |
public function get_maximum_price() {
|
568 |
|
569 |
if ( ! isset( $this->maximum_price ) ) {
|
570 |
+
$this->maximum_price = give_get_meta( $this->ID, '_give_custom_amount_range_maximum', true, 999999.99 );
|
571 |
|
572 |
if ( ! $this->is_custom_price_mode() ) {
|
573 |
+
$this->maximum_price = give_get_highest_price_option();
|
574 |
}
|
575 |
}
|
576 |
|
includes/class-give-stats.php
CHANGED
@@ -234,9 +234,9 @@ class Give_Stats {
|
|
234 |
case 'this_week' :
|
235 |
|
236 |
$days_to_week_start = ( date( 'w', current_time( 'timestamp' ) ) - 1 ) * 60 * 60 * 24;
|
237 |
-
$today = date( '
|
238 |
|
239 |
-
if ( $today
|
240 |
|
241 |
if ( $month > 1 ) {
|
242 |
$month -= 1;
|
@@ -267,9 +267,9 @@ class Give_Stats {
|
|
267 |
case 'last_week' :
|
268 |
|
269 |
$days_to_week_start = ( date( 'w', current_time( 'timestamp' ) ) - 1 ) * 60 * 60 * 24;
|
270 |
-
$today = date( '
|
271 |
|
272 |
-
if ( $today
|
273 |
|
274 |
if ( $month > 1 ) {
|
275 |
$month -= 1;
|
234 |
case 'this_week' :
|
235 |
|
236 |
$days_to_week_start = ( date( 'w', current_time( 'timestamp' ) ) - 1 ) * 60 * 60 * 24;
|
237 |
+
$today = date( 'j', current_time( 'timestamp' ) ) * 60 * 60 * 24;
|
238 |
|
239 |
+
if ( $today <= $days_to_week_start ) {
|
240 |
|
241 |
if ( $month > 1 ) {
|
242 |
$month -= 1;
|
267 |
case 'last_week' :
|
268 |
|
269 |
$days_to_week_start = ( date( 'w', current_time( 'timestamp' ) ) - 1 ) * 60 * 60 * 24;
|
270 |
+
$today = date( 'j', current_time( 'timestamp' ) ) * 60 * 60 * 24;
|
271 |
|
272 |
+
if ( $today <= $days_to_week_start ) {
|
273 |
|
274 |
if ( $month > 1 ) {
|
275 |
$month -= 1;
|
languages/give.pot
CHANGED
@@ -15,7 +15,6 @@ msgstr ""
|
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
|
18 |
-
#. undefined
|
19 |
#: give.php:370, give.php:383
|
20 |
msgid "Cheatin’ huh?"
|
21 |
msgstr ""
|
@@ -52,13 +51,6 @@ msgstr ""
|
|
52 |
msgid "WordPress user #%d is connected to #%d"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#. undefined
|
56 |
-
#. undefined
|
57 |
-
#. undefined
|
58 |
-
#. undefined
|
59 |
-
#. undefined
|
60 |
-
#. undefined
|
61 |
-
#. undefined
|
62 |
#: includes/ajax-functions.php:216, includes/country-functions.php:474, includes/country-functions.php:522, includes/country-functions.php:770, includes/import-functions.php:441, includes/forms/template.php:929, includes/admin/tools/export/class-batch-export-donors.php:197, includes/admin/tools/export/give-export-donations-exporter.php:188
|
63 |
msgid "State"
|
64 |
msgstr ""
|
@@ -67,32 +59,22 @@ msgstr ""
|
|
67 |
msgid "All Levels"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#. undefined
|
71 |
-
#. undefined
|
72 |
-
#. undefined
|
73 |
#: includes/ajax-functions.php:621, includes/admin/payments/view-payment-details.php:441, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:71, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:73
|
74 |
msgid "n/a"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#. undefined
|
78 |
#: includes/ajax-functions.php:685, includes/login-register.php:388
|
79 |
msgid "Unable to send email. Please try again."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#. undefined
|
83 |
-
#. undefined
|
84 |
#: includes/ajax-functions.php:693, includes/class-give-scripts.php:365, templates/email-login-form.php:23
|
85 |
msgid "Please check your email and click on the link to access your complete donation history."
|
86 |
msgstr ""
|
87 |
|
88 |
-
#. undefined
|
89 |
-
#. undefined
|
90 |
#: includes/ajax-functions.php:704, templates/email-login-form.php:31, templates/history-donations.php:33
|
91 |
msgid "Too many access email requests detected. Please wait %s before requesting a new donation history access link."
|
92 |
msgstr ""
|
93 |
|
94 |
-
#. undefined
|
95 |
-
#. undefined
|
96 |
#: includes/ajax-functions.php:705, templates/email-login-form.php:32, templates/history-donations.php:34
|
97 |
msgid "%s minute"
|
98 |
msgid_plural "%s minutes"
|
@@ -107,8 +89,6 @@ msgstr ""
|
|
107 |
msgid "Do not pass empty action to generate cache key."
|
108 |
msgstr ""
|
109 |
|
110 |
-
#. undefined
|
111 |
-
#. undefined
|
112 |
#: includes/class-give-cache.php:205, includes/class-give-cache.php:246, includes/class-give-cache.php:295
|
113 |
msgid "Cache key format should be give_cache_*"
|
114 |
msgstr ""
|
@@ -125,9 +105,6 @@ msgstr ""
|
|
125 |
msgid "Success Page: "
|
126 |
msgstr ""
|
127 |
|
128 |
-
#. undefined
|
129 |
-
#. undefined
|
130 |
-
#. undefined
|
131 |
#: includes/class-give-cli-commands.php:121, includes/class-give-cli-commands.php:122, includes/class-give-cli-commands.php:123, includes/class-give-cli-commands.php:139
|
132 |
msgid "Not Set"
|
133 |
msgstr ""
|
@@ -172,14 +149,10 @@ msgstr ""
|
|
172 |
msgid "Test Mode: "
|
173 |
msgstr ""
|
174 |
|
175 |
-
#. undefined
|
176 |
-
#. undefined
|
177 |
#: includes/class-give-cli-commands.php:138, includes/forms/widget.php:181, includes/admin/tools/views/html-admin-page-system-info.php:938
|
178 |
msgid "Yes"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#. undefined
|
182 |
-
#. undefined
|
183 |
#: includes/class-give-cli-commands.php:138, includes/forms/widget.php:182, includes/admin/tools/views/html-admin-page-system-info.php:938
|
184 |
msgid "No"
|
185 |
msgstr ""
|
@@ -196,11 +169,6 @@ msgstr ""
|
|
196 |
msgid "Not any payment gateways found"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#. undefined
|
200 |
-
#. undefined
|
201 |
-
#. undefined
|
202 |
-
#. undefined
|
203 |
-
#. undefined
|
204 |
#: includes/class-give-cli-commands.php:216, includes/class-give-html-elements.php:151, includes/post-types.php:63, includes/admin/shortcodes/shortcode-give-form.php:57, includes/admin/shortcodes/shortcode-give-goal.php:58, includes/admin/tools/export/pdf-reports.php:189
|
205 |
msgid "No forms found."
|
206 |
msgstr ""
|
@@ -229,9 +197,6 @@ msgstr ""
|
|
229 |
msgid "%1$d donors created in %2$d seconds"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#. undefined
|
233 |
-
#. undefined
|
234 |
-
#. undefined
|
235 |
#: includes/class-give-cli-commands.php:470, includes/class-give-html-elements.php:213, includes/admin/class-blank-slate.php:293, includes/api/class-give-api.php:985
|
236 |
msgid "No donors found."
|
237 |
msgstr ""
|
@@ -240,12 +205,6 @@ msgstr ""
|
|
240 |
msgid "s_no"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#. undefined
|
244 |
-
#. undefined
|
245 |
-
#. undefined
|
246 |
-
#. undefined
|
247 |
-
#. undefined
|
248 |
-
#. undefined
|
249 |
#: includes/class-give-cli-commands.php:618, includes/class-give-html-elements.php:70, includes/post-types.php:118, includes/admin/class-blank-slate.php:273, includes/admin/class-blank-slate.php:277, includes/emails/template.php:172, includes/admin/donors/donors.php:845
|
250 |
msgid "No donations found."
|
251 |
msgstr ""
|
@@ -348,7 +307,6 @@ msgstr ""
|
|
348 |
msgid "Give Donors Gravatars"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#. undefined
|
352 |
#: includes/class-give-gravatars.php:544, includes/forms/widget.php:140
|
353 |
msgid "Title:"
|
354 |
msgstr ""
|
@@ -357,17 +315,10 @@ msgstr ""
|
|
357 |
msgid "Select a donation"
|
358 |
msgstr ""
|
359 |
|
360 |
-
|
361 |
-
#. undefined
|
362 |
-
#: includes/class-give-html-elements.php:112, includes/post-types.php:60, includes/admin/tools/export/class-give-export-donations.php:216
|
363 |
msgid "All Forms"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#. undefined
|
367 |
-
#. undefined
|
368 |
-
#. undefined
|
369 |
-
#. undefined
|
370 |
-
#. undefined
|
371 |
#: includes/class-give-html-elements.php:147, includes/forms/widget.php:151, includes/admin/payments/class-payments-table.php:484, includes/admin/reports/class-form-reports-table.php:84, includes/admin/shortcodes/abstract-shortcode-generator.php:300, includes/admin/tools/logs/class-sales-logs-list-table.php:75
|
372 |
msgid "Untitled (#%s)"
|
373 |
msgstr ""
|
@@ -376,29 +327,22 @@ msgstr ""
|
|
376 |
msgid "Select a Donor"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#. undefined
|
380 |
#: includes/class-give-html-elements.php:208, includes/admin/tools/logs/class-sales-logs-list-table.php:119
|
381 |
msgid "No donor attached"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#. undefined
|
385 |
#: includes/class-give-html-elements.php:274, includes/post-types.php:158
|
386 |
msgid "All Categories"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#. undefined
|
390 |
#: includes/class-give-html-elements.php:308, includes/post-types.php:192
|
391 |
msgid "All Tags"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#. undefined
|
395 |
#: includes/class-give-html-elements.php:410, includes/admin/payments/class-payments-table.php:289
|
396 |
msgid "All"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#. undefined
|
400 |
-
#. undefined
|
401 |
-
#. undefined
|
402 |
#: includes/class-give-html-elements.php:411, includes/forms/widget.php:196, includes/admin/forms/class-metabox-form-data.php:313, includes/admin/payments/view-payment-details.php:455
|
403 |
msgid "None"
|
404 |
msgstr ""
|
@@ -415,7 +359,6 @@ msgstr ""
|
|
415 |
msgid "Add-on Licenses"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#. undefined
|
419 |
#: includes/class-give-license-handler.php:593, includes/class-give-license-handler.php:682
|
420 |
msgid "You have invalid or expired license keys for one or more Give Add-ons. Please go to the <a href=\"%s\">licenses page</a> to correct this issue."
|
421 |
msgstr ""
|
@@ -424,7 +367,6 @@ msgstr ""
|
|
424 |
msgid "Your Give add-on license expired for payment <a href=\"%1$s\" target=\"_blank\">#%2$d</a>. <a href=\"%3$s\" target=\"_blank\">Click to renew an existing license</a> or %4$s."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#. undefined
|
428 |
#: includes/class-give-license-handler.php:635, includes/class-give-license-handler.php:654
|
429 |
msgid "Click here if already renewed"
|
430 |
msgstr ""
|
@@ -433,75 +375,14 @@ msgstr ""
|
|
433 |
msgid "Your Give add-on license will expire in %1$s for payment <a href=\"%2$s\" target=\"_blank\">#%3$d</a>. <a href=\"%4$s\" target=\"_blank\">Click to renew an existing license</a> or %5$s."
|
434 |
msgstr ""
|
435 |
|
436 |
-
#. undefined
|
437 |
-
#. undefined
|
438 |
-
#. undefined
|
439 |
-
#. undefined
|
440 |
-
#. undefined
|
441 |
-
#. undefined
|
442 |
#: includes/class-give-license-handler.php:850, includes/api/class-give-api.php:1822, includes/forms/functions.php:319, includes/gateways/manual.php:38, includes/admin/donors/donor-actions.php:436, includes/admin/tools/export/export-actions.php:26, includes/admin/tools/export/pdf-reports.php:35
|
443 |
msgid "Nonce verification failed."
|
444 |
msgstr ""
|
445 |
|
446 |
-
#. undefined
|
447 |
-
#. undefined
|
448 |
-
#. undefined
|
449 |
-
#. undefined
|
450 |
-
#. undefined
|
451 |
-
#. undefined
|
452 |
-
#. undefined
|
453 |
-
#. undefined
|
454 |
-
#. undefined
|
455 |
-
#. undefined
|
456 |
-
#. undefined
|
457 |
-
#. undefined
|
458 |
-
#. undefined
|
459 |
-
#. undefined
|
460 |
-
#. undefined
|
461 |
-
#. undefined
|
462 |
-
#. undefined
|
463 |
-
#. undefined
|
464 |
-
#. undefined
|
465 |
-
#. undefined
|
466 |
-
#. undefined
|
467 |
-
#. undefined
|
468 |
-
#. undefined
|
469 |
-
#. undefined
|
470 |
-
#. undefined
|
471 |
-
#. undefined
|
472 |
-
#. undefined
|
473 |
-
#. undefined
|
474 |
-
#. undefined
|
475 |
-
#. undefined
|
476 |
-
#. undefined
|
477 |
-
#. undefined
|
478 |
-
#. undefined
|
479 |
-
#. undefined
|
480 |
-
#. undefined
|
481 |
-
#. undefined
|
482 |
-
#. undefined
|
483 |
-
#. undefined
|
484 |
-
#. undefined
|
485 |
-
#. undefined
|
486 |
-
#. undefined
|
487 |
-
#. undefined
|
488 |
-
#. undefined
|
489 |
-
#. undefined
|
490 |
-
#. undefined
|
491 |
-
#. undefined
|
492 |
-
#. undefined
|
493 |
-
#. undefined
|
494 |
-
#. undefined
|
495 |
-
#. undefined
|
496 |
-
#. undefined
|
497 |
-
#. undefined
|
498 |
-
#. undefined
|
499 |
-
#. undefined
|
500 |
#: includes/class-give-license-handler.php:850, includes/class-notices.php:576, includes/formatting.php:680, includes/admin/EDD_SL_Plugin_Updater.php:396, includes/api/class-give-api.php:1822, includes/api/class-give-api.php:1828, includes/api/class-give-api.php:1843, includes/api/class-give-api.php:1848, includes/forms/functions.php:319, includes/gateways/manual.php:38, includes/admin/donors/donor-actions.php:31, includes/admin/donors/donor-actions.php:45, includes/admin/donors/donor-actions.php:144, includes/admin/donors/donor-actions.php:158, includes/admin/donors/donor-actions.php:226, includes/admin/donors/donor-actions.php:241, includes/admin/donors/donor-actions.php:325, includes/admin/donors/donor-actions.php:339, includes/admin/donors/donor-actions.php:418, includes/admin/donors/donor-actions.php:514, includes/admin/donors/donor-actions.php:561, includes/admin/donors/donor-actions.php:599, includes/admin/donors/donor-actions.php:615, includes/admin/emails/class-donation-receipt-email.php:300, includes/admin/forms/dashboard-columns.php:255, includes/admin/payments/actions.php:31, includes/admin/payments/actions.php:85, includes/admin/payments/actions.php:98, includes/admin/payments/actions.php:333, includes/admin/payments/actions.php:353, includes/admin/payments/actions.php:386, includes/admin/payments/actions.php:408, includes/admin/payments/view-payment-details.php:19, includes/admin/payments/view-payment-details.php:32, includes/admin/payments/view-payment-details.php:42, includes/admin/reports/reports.php:143, includes/admin/upgrades/upgrade-functions.php:371, includes/admin/tools/data/class-give-tools-delete-import-donors.php:268, includes/admin/tools/data/class-give-tools-delete-test-donors.php:239, includes/admin/tools/data/class-give-tools-delete-test-transactions.php:129, includes/admin/tools/data/class-give-tools-recount-all-stats.php:248, includes/admin/tools/data/class-give-tools-recount-donor-stats.php:204, includes/admin/tools/data/class-give-tools-recount-form-stats.php:204, includes/admin/tools/data/class-give-tools-recount-income.php:178, includes/admin/tools/data/class-give-tools-recount-single-donor-stats.php:160, includes/admin/tools/data/class-give-tools-reset-stats.php:198, includes/admin/tools/export/class-batch-export.php:145, includes/admin/tools/export/class-core-settings-export.php:81, includes/admin/tools/export/class-export.php:185, includes/admin/tools/export/export-actions.php:26, includes/admin/tools/export/pdf-reports.php:31, includes/admin/tools/export/pdf-reports.php:35, includes/admin/tools/export/pdf-reports.php:39, includes/admin/tools/logs/class-api-requests-logs-list-table.php:154, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:136
|
501 |
msgid "Error"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#. undefined
|
505 |
#: includes/class-give-logging.php:98, includes/admin/tools/class-settings-logs.php:37
|
506 |
msgid "Logs"
|
507 |
msgstr ""
|
@@ -562,17 +443,10 @@ msgstr ""
|
|
562 |
msgid "Ok"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#. undefined
|
566 |
-
#. undefined
|
567 |
-
#. undefined
|
568 |
-
#. undefined
|
569 |
-
#. undefined
|
570 |
-
#. undefined
|
571 |
#: includes/class-give-scripts.php:187, includes/forms/template.php:1308, includes/admin/donors/class-donor-table.php:469, includes/admin/donors/donors.php:460, includes/admin/donors/donors.php:684, includes/admin/donors/donors.php:1066, includes/admin/payments/view-payment-details.php:633
|
572 |
msgid "Cancel"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#. undefined
|
576 |
#: includes/class-give-scripts.php:188, includes/admin/shortcodes/abstract-shortcode-generator.php:91
|
577 |
msgid "Close"
|
578 |
msgstr ""
|
@@ -653,7 +527,6 @@ msgstr ""
|
|
653 |
msgid "Do you want to delete this item?"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#. undefined
|
657 |
#: includes/class-give-scripts.php:209, includes/admin/admin-actions.php:299
|
658 |
msgid "You cannot set the success and failed pages to the same page"
|
659 |
msgstr ""
|
@@ -806,35 +679,26 @@ msgstr ""
|
|
806 |
msgid "Please select payment mode."
|
807 |
msgstr ""
|
808 |
|
809 |
-
#. undefined
|
810 |
-
#. undefined
|
811 |
-
#. undefined
|
812 |
#: includes/class-give-scripts.php:357, includes/process-donation.php:504, includes/shortcodes.php:449, includes/admin/admin-actions.php:782
|
813 |
msgid "Please enter your first name."
|
814 |
msgstr ""
|
815 |
|
816 |
-
#. undefined
|
817 |
#: includes/class-give-scripts.php:358, includes/process-donation.php:500
|
818 |
msgid "Please enter a valid email address."
|
819 |
msgstr ""
|
820 |
|
821 |
-
#. undefined
|
822 |
#: includes/class-give-scripts.php:359, includes/user-functions.php:305
|
823 |
msgid "Invalid username. Only lowercase letters (a-z) and numbers are allowed."
|
824 |
msgstr ""
|
825 |
|
826 |
-
#. undefined
|
827 |
-
#. undefined
|
828 |
#: includes/class-give-scripts.php:360, includes/process-donation.php:777, includes/user-functions.php:410
|
829 |
msgid "Enter a password."
|
830 |
msgstr ""
|
831 |
|
832 |
-
#. undefined
|
833 |
#: includes/class-give-scripts.php:361, includes/user-functions.php:414
|
834 |
msgid "Enter the password confirmation."
|
835 |
msgstr ""
|
836 |
|
837 |
-
#. undefined
|
838 |
#: includes/class-give-scripts.php:362, includes/process-donation.php:479
|
839 |
msgid "You must agree to the terms and conditions."
|
840 |
msgstr ""
|
@@ -843,63 +707,46 @@ msgstr ""
|
|
843 |
msgid "Loading"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#. undefined
|
847 |
#: includes/class-give-scripts.php:371, includes/admin/tools/views/html-admin-page-data.php:33
|
848 |
msgid "Please select an option"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#. undefined
|
852 |
#: includes/class-give-stats.php:96, includes/admin/reports/graphing.php:488
|
853 |
msgid "Today"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#. undefined
|
857 |
#: includes/class-give-stats.php:97, includes/admin/reports/graphing.php:489
|
858 |
msgid "Yesterday"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#. undefined
|
862 |
-
#. undefined
|
863 |
-
#. undefined
|
864 |
#: includes/class-give-stats.php:98, includes/admin/dashboard-widgets.php:79, includes/admin/dashboard-widgets.php:89, includes/admin/reports/graphing.php:490
|
865 |
msgid "This Week"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#. undefined
|
869 |
#: includes/class-give-stats.php:99, includes/admin/reports/graphing.php:491
|
870 |
msgid "Last Week"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#. undefined
|
874 |
-
#. undefined
|
875 |
-
#. undefined
|
876 |
#: includes/class-give-stats.php:100, includes/admin/dashboard-widgets.php:80, includes/admin/dashboard-widgets.php:94, includes/admin/reports/graphing.php:492
|
877 |
msgid "This Month"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#. undefined
|
881 |
-
#. undefined
|
882 |
#: includes/class-give-stats.php:101, includes/admin/dashboard-widgets.php:101, includes/admin/reports/graphing.php:493
|
883 |
msgid "Last Month"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#. undefined
|
887 |
-
#. undefined
|
888 |
#: includes/class-give-stats.php:102, includes/admin/dashboard-widgets.php:106, includes/admin/reports/graphing.php:494
|
889 |
msgid "This Quarter"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#. undefined
|
893 |
#: includes/class-give-stats.php:103, includes/admin/reports/graphing.php:495
|
894 |
msgid "Last Quarter"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#. undefined
|
898 |
#: includes/class-give-stats.php:104, includes/admin/reports/graphing.php:496
|
899 |
msgid "This Year"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#. undefined
|
903 |
#: includes/class-give-stats.php:105, includes/admin/reports/graphing.php:497
|
904 |
msgid "Last Year"
|
905 |
msgstr ""
|
@@ -1564,7 +1411,6 @@ msgstr ""
|
|
1564 |
msgid "Nicaragua"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#. undefined
|
1568 |
#: includes/country-functions.php:246, includes/country-functions.php:1170
|
1569 |
msgid "Niger"
|
1570 |
msgstr ""
|
@@ -1909,15 +1755,6 @@ msgstr ""
|
|
1909 |
msgid "District"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#. undefined
|
1913 |
-
#. undefined
|
1914 |
-
#. undefined
|
1915 |
-
#. undefined
|
1916 |
-
#. undefined
|
1917 |
-
#. undefined
|
1918 |
-
#. undefined
|
1919 |
-
#. undefined
|
1920 |
-
#. undefined
|
1921 |
#: includes/country-functions.php:538, includes/country-functions.php:549, includes/country-functions.php:566, includes/country-functions.php:628, includes/country-functions.php:650, includes/country-functions.php:681, includes/country-functions.php:742, includes/country-functions.php:765, includes/country-functions.php:792, includes/import-functions.php:442
|
1922 |
msgid "Province"
|
1923 |
msgstr ""
|
@@ -1926,16 +1763,10 @@ msgstr ""
|
|
1926 |
msgid "Canton"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#. undefined
|
1930 |
-
#. undefined
|
1931 |
-
#. undefined
|
1932 |
#: includes/country-functions.php:561, includes/country-functions.php:617, includes/country-functions.php:687, includes/import-functions.php:444
|
1933 |
msgid "Region"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#. undefined
|
1937 |
-
#. undefined
|
1938 |
-
#. undefined
|
1939 |
#: includes/country-functions.php:622, includes/country-functions.php:633, includes/country-functions.php:775, includes/import-functions.php:443
|
1940 |
msgid "County"
|
1941 |
msgstr ""
|
@@ -4172,7 +4003,6 @@ msgstr ""
|
|
4172 |
msgid "Potosí"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
-
#. undefined
|
4176 |
#: includes/country-functions.php:1545, includes/country-functions.php:1700
|
4177 |
msgid "Santa Cruz"
|
4178 |
msgstr ""
|
@@ -4569,7 +4399,6 @@ msgstr ""
|
|
4569 |
msgid "Chubut"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
-
#. undefined
|
4573 |
#: includes/country-functions.php:1686, includes/country-functions.php:2276
|
4574 |
msgid "Córdoba"
|
4575 |
msgstr ""
|
@@ -4594,7 +4423,6 @@ msgstr ""
|
|
4594 |
msgid "La Pampa"
|
4595 |
msgstr ""
|
4596 |
|
4597 |
-
#. undefined
|
4598 |
#: includes/country-functions.php:1692, includes/country-functions.php:2285
|
4599 |
msgid "La Rioja"
|
4600 |
msgstr ""
|
@@ -5087,7 +4915,6 @@ msgstr ""
|
|
5087 |
msgid "Costa Rican colón (%1$s)"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
-
#. undefined
|
5091 |
#: includes/currency-functions.php:548, includes/currency-functions.php:558
|
5092 |
msgid "Cuban convertible peso (%1$s)"
|
5093 |
msgstr ""
|
@@ -5224,17 +5051,14 @@ msgstr ""
|
|
5224 |
msgid "%s million"
|
5225 |
msgstr ""
|
5226 |
|
5227 |
-
#. undefined
|
5228 |
#: includes/formatting.php:679, includes/formatting.php:718
|
5229 |
msgid "Nonce verification has failed."
|
5230 |
msgstr ""
|
5231 |
|
5232 |
-
#. undefined
|
5233 |
#: includes/import-functions.php:264, includes/import-functions.php:355
|
5234 |
msgid "This donor was imported by %s"
|
5235 |
msgstr ""
|
5236 |
|
5237 |
-
#. undefined
|
5238 |
#: includes/import-functions.php:343, includes/post-types.php:59
|
5239 |
msgid "New Form"
|
5240 |
msgstr ""
|
@@ -5243,25 +5067,14 @@ msgstr ""
|
|
5243 |
msgid "Do not import"
|
5244 |
msgstr ""
|
5245 |
|
5246 |
-
#. undefined
|
5247 |
-
#. undefined
|
5248 |
-
#. undefined
|
5249 |
-
#. undefined
|
5250 |
#: includes/import-functions.php:406, includes/admin/tools/export/give-export-donations-exporter.php:167, includes/admin/tools/export/give-export-donations-functions.php:246, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:138, templates/shortcode-receipt.php:84
|
5251 |
msgid "Donation ID"
|
5252 |
msgstr ""
|
5253 |
|
5254 |
-
#. undefined
|
5255 |
-
#. undefined
|
5256 |
#: includes/import-functions.php:408, includes/admin/tools/import/class-give-import-donations.php:510, includes/admin/tools/logs/class-sales-logs-list-table.php:143
|
5257 |
msgid "Donation Amount"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
-
#. undefined
|
5261 |
-
#. undefined
|
5262 |
-
#. undefined
|
5263 |
-
#. undefined
|
5264 |
-
#. undefined
|
5265 |
#: includes/import-functions.php:409, includes/admin/donors/donors.php:799, includes/admin/forms/class-metabox-form-data.php:200, includes/admin/forms/dashboard-columns.php:38, includes/admin/payments/class-payments-table.php:396, templates/history-donations.php:53
|
5266 |
msgid "Amount"
|
5267 |
msgstr ""
|
@@ -5274,23 +5087,10 @@ msgstr ""
|
|
5274 |
msgid "Currencies"
|
5275 |
msgstr ""
|
5276 |
|
5277 |
-
#. undefined
|
5278 |
-
#. undefined
|
5279 |
#: includes/import-functions.php:416, includes/admin/tools/export/give-export-donations-exporter.php:220, includes/admin/tools/export/give-export-donations-functions.php:300
|
5280 |
msgid "Donation Date"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
-
#. undefined
|
5284 |
-
#. undefined
|
5285 |
-
#. undefined
|
5286 |
-
#. undefined
|
5287 |
-
#. undefined
|
5288 |
-
#. undefined
|
5289 |
-
#. undefined
|
5290 |
-
#. undefined
|
5291 |
-
#. undefined
|
5292 |
-
#. undefined
|
5293 |
-
#. undefined
|
5294 |
#: includes/import-functions.php:417, includes/admin/donors/donors.php:800, includes/admin/forms/dashboard-columns.php:43, includes/admin/payments/class-payments-table.php:395, includes/admin/tools/export/class-export-earnings.php:60, includes/admin/tools/export/class-export.php:81, includes/admin/tools/logs/class-api-requests-logs-list-table.php:96, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:139, includes/admin/tools/logs/class-sales-logs-list-table.php:144, includes/admin/tools/logs/class-update-logs-list-table.php:80, templates/history-donations.php:51, templates/shortcode-receipt.php:60
|
5295 |
msgid "Date"
|
5296 |
msgstr ""
|
@@ -5299,24 +5099,10 @@ msgstr ""
|
|
5299 |
msgid "Donor First Name"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
-
#. undefined
|
5303 |
-
#. undefined
|
5304 |
-
#. undefined
|
5305 |
-
#. undefined
|
5306 |
-
#. undefined
|
5307 |
-
#. undefined
|
5308 |
-
#. undefined
|
5309 |
-
#. undefined
|
5310 |
#: includes/import-functions.php:421, includes/misc-functions.php:608, includes/misc-functions.php:610, includes/forms/template.php:644, includes/forms/template.php:654, includes/admin/donors/donors.php:341, includes/admin/tools/export/give-export-donations-exporter.php:173, includes/admin/tools/import/class-give-import-donations.php:500, templates/shortcode-profile-editor.php:60
|
5311 |
msgid "First Name"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
-
#. undefined
|
5315 |
-
#. undefined
|
5316 |
-
#. undefined
|
5317 |
-
#. undefined
|
5318 |
-
#. undefined
|
5319 |
-
#. undefined
|
5320 |
#: includes/import-functions.php:422, includes/admin/donors/class-donor-table.php:192, includes/admin/forms/dashboard-columns.php:35, includes/admin/reports/class-donor-reports-table.php:215, includes/admin/tools/export/class-batch-export-forms.php:46, includes/admin/tools/views/html-admin-page-exports.php:141, includes/admin/tools/views/html-admin-page-system-info.php:920
|
5321 |
msgid "Name"
|
5322 |
msgstr ""
|
@@ -5325,23 +5111,10 @@ msgstr ""
|
|
5325 |
msgid "Donor Last Name"
|
5326 |
msgstr ""
|
5327 |
|
5328 |
-
#. undefined
|
5329 |
-
#. undefined
|
5330 |
-
#. undefined
|
5331 |
-
#. undefined
|
5332 |
-
#. undefined
|
5333 |
-
#. undefined
|
5334 |
-
#. undefined
|
5335 |
#: includes/import-functions.php:426, includes/misc-functions.php:614, includes/misc-functions.php:616, includes/forms/template.php:663, includes/forms/template.php:675, includes/admin/donors/donors.php:350, includes/admin/tools/export/give-export-donations-exporter.php:176, templates/shortcode-profile-editor.php:68
|
5336 |
msgid "Last Name"
|
5337 |
msgstr ""
|
5338 |
|
5339 |
-
#. undefined
|
5340 |
-
#. undefined
|
5341 |
-
#. undefined
|
5342 |
-
#. undefined
|
5343 |
-
#. undefined
|
5344 |
-
#. undefined
|
5345 |
#: includes/import-functions.php:429, includes/forms/template.php:685, includes/forms/template.php:696, includes/admin/tools/export/give-export-donations-exporter.php:182, includes/admin/tools/export/give-export-donations-functions.php:421, templates/shortcode-profile-editor.php:75, templates/shortcode-receipt.php:54
|
5346 |
msgid "Company Name"
|
5347 |
msgstr ""
|
@@ -5358,36 +5131,22 @@ msgstr ""
|
|
5358 |
msgid "Company"
|
5359 |
msgstr ""
|
5360 |
|
5361 |
-
#. undefined
|
5362 |
-
#. undefined
|
5363 |
#: includes/import-functions.php:435, includes/forms/template.php:967, includes/admin/tools/export/give-export-donations-exporter.php:185
|
5364 |
msgid "Address 1"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
-
#. undefined
|
5368 |
-
#. undefined
|
5369 |
#: includes/import-functions.php:436, includes/admin/tools/export/class-batch-export-donors.php:194, includes/admin/tools/views/html-admin-page-exports.php:155
|
5370 |
msgid "Address"
|
5371 |
msgstr ""
|
5372 |
|
5373 |
-
#. undefined
|
5374 |
-
#. undefined
|
5375 |
-
#. undefined
|
5376 |
#: includes/import-functions.php:438, includes/forms/template.php:988, includes/admin/tools/export/class-batch-export-donors.php:195, includes/admin/tools/export/give-export-donations-exporter.php:186
|
5377 |
msgid "Address 2"
|
5378 |
msgstr ""
|
5379 |
|
5380 |
-
#. undefined
|
5381 |
-
#. undefined
|
5382 |
-
#. undefined
|
5383 |
-
#. undefined
|
5384 |
#: includes/import-functions.php:439, includes/forms/template.php:1008, includes/forms/template.php:1019, includes/admin/tools/export/class-batch-export-donors.php:196, includes/admin/tools/export/give-export-donations-exporter.php:187
|
5385 |
msgid "City"
|
5386 |
msgstr ""
|
5387 |
|
5388 |
-
#. undefined
|
5389 |
-
#. undefined
|
5390 |
-
#. undefined
|
5391 |
#: includes/import-functions.php:446, includes/forms/template.php:943, includes/admin/tools/export/class-batch-export-donors.php:199, includes/admin/tools/export/give-export-donations-exporter.php:190
|
5392 |
msgid "Country"
|
5393 |
msgstr ""
|
@@ -5396,8 +5155,6 @@ msgstr ""
|
|
5396 |
msgid "Zip Code"
|
5397 |
msgstr ""
|
5398 |
|
5399 |
-
#. undefined
|
5400 |
-
#. undefined
|
5401 |
#: includes/import-functions.php:449, includes/admin/tools/export/class-batch-export-donors.php:198, includes/admin/tools/export/give-export-donations-exporter.php:189
|
5402 |
msgid "Zip"
|
5403 |
msgstr ""
|
@@ -5418,35 +5175,18 @@ msgstr ""
|
|
5418 |
msgid "Donor Email"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
-
#. undefined
|
5422 |
-
#. undefined
|
5423 |
-
#. undefined
|
5424 |
-
#. undefined
|
5425 |
-
#. undefined
|
5426 |
-
#. undefined
|
5427 |
-
#. undefined
|
5428 |
#: includes/import-functions.php:456, includes/admin/donors/class-donor-table.php:193, includes/admin/donors/donors.php:724, includes/admin/emails/class-email-notification-table.php:64, includes/admin/emails/class-email-setting-field.php:306, includes/admin/reports/class-donor-reports-table.php:216, includes/admin/tools/views/html-admin-page-exports.php:148, templates/shortcode-register.php:39
|
5429 |
msgid "Email"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
-
#. undefined
|
5433 |
-
#. undefined
|
5434 |
-
#. undefined
|
5435 |
#: includes/import-functions.php:459, includes/admin/tools/export/give-export-donations-exporter.php:202, includes/admin/tools/export/give-export-donations-functions.php:292, templates/shortcode-receipt.php:78
|
5436 |
msgid "Donation Status"
|
5437 |
msgstr ""
|
5438 |
|
5439 |
-
#. undefined
|
5440 |
-
#. undefined
|
5441 |
-
#. undefined
|
5442 |
-
#. undefined
|
5443 |
-
#. undefined
|
5444 |
#: includes/import-functions.php:460, includes/admin/donors/donors.php:801, includes/admin/payments/class-payments-table.php:394, includes/admin/tools/export/class-batch-export-forms.php:51, includes/admin/tools/logs/class-sales-logs-list-table.php:142, templates/history-donations.php:54
|
5445 |
msgid "Status"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
-
#. undefined
|
5449 |
-
#. undefined
|
5450 |
#: includes/import-functions.php:463, templates/history-donations.php:55, templates/shortcode-receipt.php:96
|
5451 |
msgid "Payment Method"
|
5452 |
msgstr ""
|
@@ -5455,15 +5195,10 @@ msgstr ""
|
|
5455 |
msgid "Method"
|
5456 |
msgstr ""
|
5457 |
|
5458 |
-
#. undefined
|
5459 |
-
#. undefined
|
5460 |
#: includes/import-functions.php:466, includes/admin/donors/class-donor-table.php:236, includes/admin/donors/donors.php:940
|
5461 |
msgid "Notes"
|
5462 |
msgstr ""
|
5463 |
|
5464 |
-
#. undefined
|
5465 |
-
#. undefined
|
5466 |
-
#. undefined
|
5467 |
#: includes/import-functions.php:468, includes/admin/class-give-settings.php:315, includes/admin/settings/class-settings-gateways.php:169, includes/admin/tools/views/html-admin-page-system-info.php:534
|
5468 |
msgid "Test Mode"
|
5469 |
msgstr ""
|
@@ -5472,39 +5207,26 @@ msgstr ""
|
|
5472 |
msgid "Mode"
|
5473 |
msgstr ""
|
5474 |
|
5475 |
-
#. undefined
|
5476 |
#: includes/import-functions.php:471, includes/admin/tools/import/class-give-import-donations.php:567
|
5477 |
msgid "Import as Meta"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
-
#. undefined
|
5481 |
-
#. undefined
|
5482 |
#: includes/import-functions.php:489, includes/admin/tools/export/give-export-donations-exporter.php:229, includes/admin/tools/export/give-export-donations-functions.php:445
|
5483 |
msgid "Donor ID"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#. undefined
|
5487 |
-
#. undefined
|
5488 |
-
#. undefined
|
5489 |
-
#. undefined
|
5490 |
#: includes/import-functions.php:490, includes/admin/tools/export/class-batch-export-donors.php:202, includes/admin/tools/export/give-export-donations-exporter.php:226, includes/admin/tools/export/give-export-donations-functions.php:437, includes/admin/tools/views/html-admin-page-exports.php:162
|
5491 |
msgid "User ID"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#. undefined
|
5495 |
#: includes/import-functions.php:509, includes/admin/tools/export/give-export-donations-functions.php:353
|
5496 |
msgid "Donation Form Title"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#. undefined
|
5500 |
-
#. undefined
|
5501 |
-
#. undefined
|
5502 |
-
#. undefined
|
5503 |
#: includes/import-functions.php:510, includes/post-types.php:67, includes/admin/payments/class-payments-table.php:393, includes/admin/shortcodes/shortcode-give-form.php:27, includes/admin/shortcodes/shortcode-give-form.php:28
|
5504 |
msgid "Donation Form"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
-
#. undefined
|
5508 |
#: includes/import-functions.php:511, includes/admin/tools/export/pdf-reports.php:100
|
5509 |
msgid "Form Name"
|
5510 |
msgstr ""
|
@@ -5513,18 +5235,14 @@ msgstr ""
|
|
5513 |
msgid "Title"
|
5514 |
msgstr ""
|
5515 |
|
5516 |
-
#. undefined
|
5517 |
#: includes/import-functions.php:515, includes/admin/tools/export/give-export-donations-functions.php:345
|
5518 |
msgid "Donation Form ID"
|
5519 |
msgstr ""
|
5520 |
|
5521 |
-
#. undefined
|
5522 |
#: includes/import-functions.php:516, includes/admin/tools/export/give-export-donations-exporter.php:208
|
5523 |
msgid "Form ID"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
-
#. undefined
|
5527 |
-
#. undefined
|
5528 |
#: includes/import-functions.php:519, includes/admin/forms/class-metabox-form-data.php:187, includes/admin/forms/class-metabox-form-data.php:214
|
5529 |
msgid "Donation Level"
|
5530 |
msgstr ""
|
@@ -5533,7 +5251,6 @@ msgstr ""
|
|
5533 |
msgid "Level"
|
5534 |
msgstr ""
|
5535 |
|
5536 |
-
#. undefined
|
5537 |
#: includes/import-functions.php:522, includes/admin/forms/class-metabox-form-data.php:171
|
5538 |
msgid "Custom Amount Text"
|
5539 |
msgstr ""
|
@@ -5542,11 +5259,6 @@ msgstr ""
|
|
5542 |
msgid "This donation was imported by %s"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
-
#. undefined
|
5546 |
-
#. undefined
|
5547 |
-
#. undefined
|
5548 |
-
#. undefined
|
5549 |
-
#. undefined
|
5550 |
#: includes/install.php:349, includes/forms/template.php:1495, includes/forms/template.php:1500, includes/admin/forms/class-metabox-form-data.php:535, includes/admin/settings/class-settings-display.php:278, tests/unit-tests/tests-install.php:100
|
5551 |
msgid "Agree to Terms?"
|
5552 |
msgstr ""
|
@@ -5563,28 +5275,22 @@ msgstr ""
|
|
5563 |
msgid "We're sorry, your donation failed to process. Please try again or contact site support."
|
5564 |
msgstr ""
|
5565 |
|
5566 |
-
#. undefined
|
5567 |
#: includes/install.php:460, includes/admin/shortcodes/shortcode-give-donation-history.php:24
|
5568 |
msgid "Donation History"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
-
#. undefined
|
5572 |
#: includes/login-register.php:118, includes/process-donation.php:757
|
5573 |
msgid "The password you entered is incorrect."
|
5574 |
msgstr ""
|
5575 |
|
5576 |
-
#. undefined
|
5577 |
#: includes/login-register.php:121, includes/process-donation.php:781
|
5578 |
msgid "The username you entered does not exist."
|
5579 |
msgstr ""
|
5580 |
|
5581 |
-
#. undefined
|
5582 |
-
#. undefined
|
5583 |
#: includes/login-register.php:245, includes/login-register.php:253, includes/user-functions.php:308
|
5584 |
msgid "Invalid username."
|
5585 |
msgstr ""
|
5586 |
|
5587 |
-
#. undefined
|
5588 |
#: includes/login-register.php:249, includes/user-functions.php:298
|
5589 |
msgid "Username already taken."
|
5590 |
msgstr ""
|
@@ -5593,10 +5299,6 @@ msgstr ""
|
|
5593 |
msgid "Email address already taken."
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#. undefined
|
5597 |
-
#. undefined
|
5598 |
-
#. undefined
|
5599 |
-
#. undefined
|
5600 |
#: includes/login-register.php:261, includes/process-donation.php:647, includes/process-donation.php:814, includes/user-functions.php:364, includes/admin/donors/donor-actions.php:441
|
5601 |
msgid "Invalid email."
|
5602 |
msgstr ""
|
@@ -5657,7 +5359,6 @@ msgstr ""
|
|
5657 |
msgid "Thanks for Subscribing!"
|
5658 |
msgstr ""
|
5659 |
|
5660 |
-
#. undefined
|
5661 |
#: includes/misc-functions.php:601, includes/misc-functions.php:603
|
5662 |
msgid "Email Address (required)"
|
5663 |
msgstr ""
|
@@ -5666,7 +5367,6 @@ msgstr ""
|
|
5666 |
msgid "Subscribe"
|
5667 |
msgstr ""
|
5668 |
|
5669 |
-
#. undefined
|
5670 |
#: includes/misc-functions.php:699, includes/post-types.php:54
|
5671 |
msgid "Donation Forms"
|
5672 |
msgstr ""
|
@@ -5687,7 +5387,6 @@ msgstr ""
|
|
5687 |
msgid "array_column(): The index key should be either a string or an integer."
|
5688 |
msgstr ""
|
5689 |
|
5690 |
-
#. undefined
|
5691 |
#: includes/misc-functions.php:1630, includes/admin/tools/import/class-give-import-core-settings.php:464
|
5692 |
msgid "Please upload or provide a valid JSON file."
|
5693 |
msgstr ""
|
@@ -5696,7 +5395,6 @@ msgstr ""
|
|
5696 |
msgid "For security reasons, please confirm your email address (%s) to view your complete donation history."
|
5697 |
msgstr ""
|
5698 |
|
5699 |
-
#. undefined
|
5700 |
#: includes/misc-functions.php:1671, includes/admin/emails/class-email-access-email.php:222
|
5701 |
msgid "Confirm Email"
|
5702 |
msgstr ""
|
@@ -5705,11 +5403,6 @@ msgstr ""
|
|
5705 |
msgid "Email Sent!"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
-
#. undefined
|
5709 |
-
#. undefined
|
5710 |
-
#. undefined
|
5711 |
-
#. undefined
|
5712 |
-
#. undefined
|
5713 |
#: includes/post-types.php:55, includes/post-types.php:259, includes/admin/donors/donors.php:859, includes/admin/payments/class-payments-table.php:180, includes/admin/reports/class-form-reports-table.php:120, includes/admin/tools/logs/class-sales-logs-list-table.php:141
|
5714 |
msgid "Form"
|
5715 |
msgstr ""
|
@@ -5726,12 +5419,6 @@ msgstr ""
|
|
5726 |
msgid "Edit Donation Form"
|
5727 |
msgstr ""
|
5728 |
|
5729 |
-
#. undefined
|
5730 |
-
#. undefined
|
5731 |
-
#. undefined
|
5732 |
-
#. undefined
|
5733 |
-
#. undefined
|
5734 |
-
#. undefined
|
5735 |
#: includes/post-types.php:61, includes/post-types.php:418, includes/post-types.php:419, includes/post-types.php:420, includes/post-types.php:421, includes/post-types.php:422, includes/admin/donors/donors.php:878
|
5736 |
msgid "View Form"
|
5737 |
msgstr ""
|
@@ -5744,21 +5431,6 @@ msgstr ""
|
|
5744 |
msgid "No forms found in Trash."
|
5745 |
msgstr ""
|
5746 |
|
5747 |
-
#. undefined
|
5748 |
-
#. undefined
|
5749 |
-
#. undefined
|
5750 |
-
#. undefined
|
5751 |
-
#. undefined
|
5752 |
-
#. undefined
|
5753 |
-
#. undefined
|
5754 |
-
#. undefined
|
5755 |
-
#. undefined
|
5756 |
-
#. undefined
|
5757 |
-
#. undefined
|
5758 |
-
#. undefined
|
5759 |
-
#. undefined
|
5760 |
-
#. undefined
|
5761 |
-
#. undefined
|
5762 |
#: includes/post-types.php:66, includes/post-types.php:121, includes/deprecated/deprecated-functions.php:68, includes/forms/functions.php:1334, includes/admin/donors/class-donor-table.php:194, includes/admin/forms/dashboard-columns.php:40, includes/admin/reports/class-donor-reports-table.php:217, includes/admin/reports/class-form-reports-table.php:121, includes/admin/reports/graphing.php:180, includes/admin/reports/graphing.php:427, includes/admin/tools/class-settings-logs.php:93, includes/admin/upgrades/class-give-updates.php:225, includes/admin/tools/export/class-batch-export-forms.php:56, includes/admin/tools/export/class-export-earnings.php:61, includes/admin/tools/export/pdf-reports.php:304, includes/admin/tools/import/class-give-import-donations.php:593
|
5763 |
msgid "Donations"
|
5764 |
msgstr ""
|
@@ -5785,7 +5457,6 @@ msgstr ""
|
|
5785 |
msgid "Edit Donation"
|
5786 |
msgstr ""
|
5787 |
|
5788 |
-
#. undefined
|
5789 |
#: includes/post-types.php:114, includes/admin/emails/class-new-donation-email.php:44
|
5790 |
msgid "New Donation"
|
5791 |
msgstr ""
|
@@ -5794,7 +5465,6 @@ msgstr ""
|
|
5794 |
msgid "All Donations"
|
5795 |
msgstr ""
|
5796 |
|
5797 |
-
#. undefined
|
5798 |
#: includes/post-types.php:116, includes/admin/donors/donors.php:823
|
5799 |
msgid "View Donation"
|
5800 |
msgstr ""
|
@@ -5845,9 +5515,6 @@ msgstr ""
|
|
5845 |
msgid "New Category Name"
|
5846 |
msgstr ""
|
5847 |
|
5848 |
-
#. undefined
|
5849 |
-
#. undefined
|
5850 |
-
#. undefined
|
5851 |
#: includes/post-types.php:165, includes/admin/forms/dashboard-columns.php:36, includes/admin/tools/export/class-batch-export-forms.php:52, includes/admin/tools/export/pdf-reports.php:105
|
5852 |
msgid "Categories"
|
5853 |
msgstr ""
|
@@ -5890,9 +5557,6 @@ msgstr ""
|
|
5890 |
msgid "New Tag Name"
|
5891 |
msgstr ""
|
5892 |
|
5893 |
-
#. undefined
|
5894 |
-
#. undefined
|
5895 |
-
#. undefined
|
5896 |
#: includes/post-types.php:199, includes/admin/forms/dashboard-columns.php:37, includes/admin/tools/export/class-batch-export-forms.php:53, includes/admin/tools/export/pdf-reports.php:110
|
5897 |
msgid "Tags"
|
5898 |
msgstr ""
|
@@ -5901,21 +5565,14 @@ msgstr ""
|
|
5901 |
msgid "Choose from most used tags."
|
5902 |
msgstr ""
|
5903 |
|
5904 |
-
#. undefined
|
5905 |
-
#. undefined
|
5906 |
-
#. undefined
|
5907 |
-
#. undefined
|
5908 |
#: includes/post-types.php:260, includes/admin/reports/class-forms-report.php:37, includes/admin/reports/class-forms-report.php:75, includes/admin/reports/reports.php:104, includes/admin/tools/import/class-give-import-donations.php:605
|
5909 |
msgid "Forms"
|
5910 |
msgstr ""
|
5911 |
|
5912 |
-
#. undefined
|
5913 |
#: includes/post-types.php:305, includes/post-types.php:313
|
5914 |
msgid "Enter form title here"
|
5915 |
msgstr ""
|
5916 |
|
5917 |
-
#. undefined
|
5918 |
-
#. undefined
|
5919 |
#: includes/post-types.php:330, includes/payments/functions.php:536, includes/admin/payments/class-payments-table.php:305
|
5920 |
msgid "Refunded"
|
5921 |
msgstr ""
|
@@ -5926,8 +5583,6 @@ msgid_plural "Refunded <span class=\"count\">(%s)</span>"
|
|
5926 |
msgstr[0] ""
|
5927 |
msgstr[1] ""
|
5928 |
|
5929 |
-
#. undefined
|
5930 |
-
#. undefined
|
5931 |
#: includes/post-types.php:338, includes/payments/functions.php:537, includes/admin/payments/class-payments-table.php:313
|
5932 |
msgid "Failed"
|
5933 |
msgstr ""
|
@@ -5938,8 +5593,6 @@ msgid_plural "Failed <span class=\"count\">(%s)</span>"
|
|
5938 |
msgstr[0] ""
|
5939 |
msgstr[1] ""
|
5940 |
|
5941 |
-
#. undefined
|
5942 |
-
#. undefined
|
5943 |
#: includes/post-types.php:346, includes/payments/functions.php:542, includes/admin/payments/class-payments-table.php:309
|
5944 |
msgid "Revoked"
|
5945 |
msgstr ""
|
@@ -5950,8 +5603,6 @@ msgid_plural "Revoked <span class=\"count\">(%s)</span>"
|
|
5950 |
msgstr[0] ""
|
5951 |
msgstr[1] ""
|
5952 |
|
5953 |
-
#. undefined
|
5954 |
-
#. undefined
|
5955 |
#: includes/post-types.php:354, includes/payments/functions.php:538, includes/admin/payments/class-payments-table.php:317
|
5956 |
msgid "Cancelled"
|
5957 |
msgstr ""
|
@@ -5962,8 +5613,6 @@ msgid_plural "Cancelled <span class=\"count\">(%s)</span>"
|
|
5962 |
msgstr[0] ""
|
5963 |
msgstr[1] ""
|
5964 |
|
5965 |
-
#. undefined
|
5966 |
-
#. undefined
|
5967 |
#: includes/post-types.php:362, includes/payments/functions.php:539, includes/admin/payments/class-payments-table.php:321
|
5968 |
msgid "Abandoned"
|
5969 |
msgstr ""
|
@@ -5996,24 +5645,18 @@ msgid_plural "Preapproval <span class=\"count\">(%s)</span>"
|
|
5996 |
msgstr[0] ""
|
5997 |
msgstr[1] ""
|
5998 |
|
5999 |
-
#. undefined
|
6000 |
-
#. undefined
|
6001 |
-
#. undefined
|
6002 |
#: includes/post-types.php:408, includes/post-types.php:409, includes/post-types.php:418, includes/post-types.php:419
|
6003 |
msgid "Form updated."
|
6004 |
msgstr ""
|
6005 |
|
6006 |
-
#. undefined
|
6007 |
#: includes/post-types.php:410, includes/post-types.php:420
|
6008 |
msgid "Form published."
|
6009 |
msgstr ""
|
6010 |
|
6011 |
-
#. undefined
|
6012 |
#: includes/post-types.php:411, includes/post-types.php:421
|
6013 |
msgid "Form saved."
|
6014 |
msgstr ""
|
6015 |
|
6016 |
-
#. undefined
|
6017 |
#: includes/post-types.php:412, includes/post-types.php:422
|
6018 |
msgid "Form submitted."
|
6019 |
msgstr ""
|
@@ -6089,18 +5732,14 @@ msgstr ""
|
|
6089 |
msgid "The user information is invalid."
|
6090 |
msgstr ""
|
6091 |
|
6092 |
-
#. undefined
|
6093 |
#: includes/process-donation.php:735, includes/user-functions.php:319
|
6094 |
msgid "You must register or login to complete your donation."
|
6095 |
msgstr ""
|
6096 |
|
6097 |
-
#. undefined
|
6098 |
-
#. undefined
|
6099 |
#: includes/process-donation.php:759, includes/forms/template.php:1298, templates/shortcode-login.php:46
|
6100 |
msgid "Reset Password"
|
6101 |
msgstr ""
|
6102 |
|
6103 |
-
#. undefined
|
6104 |
#: includes/process-donation.php:827, includes/user-functions.php:354
|
6105 |
msgid "Enter an email."
|
6106 |
msgstr ""
|
@@ -6157,15 +5796,10 @@ msgstr ""
|
|
6157 |
msgid "The email you entered belongs to another donor. Please use another."
|
6158 |
msgstr ""
|
6159 |
|
6160 |
-
#. undefined
|
6161 |
#: includes/shortcodes.php:583, includes/admin/shortcodes/shortcode-give-totals.php:101
|
6162 |
msgid "Hey! We've raised {total} of the {total_goal} we are trying to raise for this campaign!"
|
6163 |
msgstr ""
|
6164 |
|
6165 |
-
#. undefined
|
6166 |
-
#. undefined
|
6167 |
-
#. undefined
|
6168 |
-
#. undefined
|
6169 |
#: includes/shortcodes.php:592, includes/forms/template.php:609, includes/forms/template.php:1657, includes/admin/forms/class-metabox-form-data.php:263, includes/admin/forms/class-metabox-form-data.php:273
|
6170 |
msgid "Donate Now"
|
6171 |
msgstr ""
|
@@ -6207,8 +5841,6 @@ msgstr ""
|
|
6207 |
msgid "Passwords you entered do not match. Please try again."
|
6208 |
msgstr ""
|
6209 |
|
6210 |
-
#. undefined
|
6211 |
-
#. undefined
|
6212 |
#: includes/admin/abstract-admin-settings-page.php:185, includes/admin/settings/class-settings-cmb2-backward-compatibility.php:631, includes/admin/views/html-admin-settings.php:119
|
6213 |
msgid "Oops, this settings page does not exist."
|
6214 |
msgstr ""
|
@@ -6303,9 +5935,6 @@ msgstr ""
|
|
6303 |
msgid "You must confirm to delete the selected donor(s)."
|
6304 |
msgstr ""
|
6305 |
|
6306 |
-
#. undefined
|
6307 |
-
#. undefined
|
6308 |
-
#. undefined
|
6309 |
#: includes/admin/admin-actions.php:361, includes/admin/donors/donor-actions.php:299, includes/admin/donors/donors.php:222, includes/admin/donors/donors.php:236
|
6310 |
msgid "Invalid Donor ID."
|
6311 |
msgstr ""
|
@@ -6346,8 +5975,6 @@ msgstr ""
|
|
6346 |
msgid "Give Test Mode Active"
|
6347 |
msgstr ""
|
6348 |
|
6349 |
-
#. undefined
|
6350 |
-
#. undefined
|
6351 |
#: includes/admin/admin-actions.php:513, includes/admin/tools/views/html-admin-page-import-donations.php:25, includes/admin/tools/views/html-admin-page-imports.php:47
|
6352 |
msgid "Import Donations"
|
6353 |
msgstr ""
|
@@ -6360,14 +5987,6 @@ msgstr ""
|
|
6360 |
msgid "ERROR"
|
6361 |
msgstr ""
|
6362 |
|
6363 |
-
#. undefined
|
6364 |
-
#. undefined
|
6365 |
-
#. undefined
|
6366 |
-
#. undefined
|
6367 |
-
#. undefined
|
6368 |
-
#. undefined
|
6369 |
-
#. undefined
|
6370 |
-
#. undefined
|
6371 |
#: includes/admin/admin-actions.php:809, includes/admin/donors/class-donor-table.php:65, includes/admin/emails/abstract-email-notification.php:149, includes/admin/emails/class-donation-receipt-email.php:46, includes/admin/emails/class-donor-register-email.php:41, includes/admin/emails/class-email-access-email.php:42, includes/admin/reports/class-donor-reports-table.php:66, templates/history-donations.php:52, templates/shortcode-receipt.php:39
|
6372 |
msgid "Donor"
|
6373 |
msgstr ""
|
@@ -6404,7 +6023,6 @@ msgstr ""
|
|
6404 |
msgid "Successfully updated a address of donor"
|
6405 |
msgstr ""
|
6406 |
|
6407 |
-
#. undefined
|
6408 |
#: includes/admin/admin-actions.php:1012, includes/admin/payments/view-payment-details.php:679
|
6409 |
msgid "Billing Address"
|
6410 |
msgstr ""
|
@@ -6442,11 +6060,6 @@ msgstr ""
|
|
6442 |
msgid "Thanks :)"
|
6443 |
msgstr ""
|
6444 |
|
6445 |
-
#. undefined
|
6446 |
-
#. undefined
|
6447 |
-
#. undefined
|
6448 |
-
#. undefined
|
6449 |
-
#. undefined
|
6450 |
#: includes/admin/admin-pages.php:48, includes/admin/admin-pages.php:49, includes/forms/functions.php:1334, includes/admin/donors/class-donor-table.php:66, includes/admin/reports/class-donor-reports-table.php:67, includes/admin/tools/import/class-give-import-donations.php:599
|
6451 |
msgid "Donors"
|
6452 |
msgstr ""
|
@@ -6459,12 +6072,10 @@ msgstr ""
|
|
6459 |
msgid "Reports"
|
6460 |
msgstr ""
|
6461 |
|
6462 |
-
#. undefined
|
6463 |
#: includes/admin/admin-pages.php:71, includes/admin/welcome.php:269
|
6464 |
msgid "Give Settings"
|
6465 |
msgstr ""
|
6466 |
|
6467 |
-
#. undefined
|
6468 |
#: includes/admin/admin-pages.php:72, includes/admin/plugins.php:31
|
6469 |
msgid "Settings"
|
6470 |
msgstr ""
|
@@ -6473,7 +6084,6 @@ msgstr ""
|
|
6473 |
msgid "Give Tools"
|
6474 |
msgstr ""
|
6475 |
|
6476 |
-
#. undefined
|
6477 |
#: includes/admin/admin-pages.php:85, includes/admin/tools/class-settings-data.php:65
|
6478 |
msgid "Tools"
|
6479 |
msgstr ""
|
@@ -6482,10 +6092,6 @@ msgstr ""
|
|
6482 |
msgid "Give Add-ons"
|
6483 |
msgstr ""
|
6484 |
|
6485 |
-
#. undefined
|
6486 |
-
#. undefined
|
6487 |
-
#. undefined
|
6488 |
-
#. undefined
|
6489 |
#: includes/admin/admin-pages.php:98, includes/admin/class-give-settings.php:100, includes/admin/plugins.php:81, includes/admin/welcome.php:135, includes/admin/settings/class-settings-addon.php:29
|
6490 |
msgid "Add-ons"
|
6491 |
msgstr ""
|
@@ -6498,9 +6104,6 @@ msgstr ""
|
|
6498 |
msgid "Donation Failed Page"
|
6499 |
msgstr ""
|
6500 |
|
6501 |
-
#. undefined
|
6502 |
-
#. undefined
|
6503 |
-
#. undefined
|
6504 |
#: includes/admin/admin-pages.php:383, includes/admin/class-give-settings.php:230, includes/admin/settings/class-settings-general.php:269, includes/admin/tools/views/html-admin-page-system-info.php:569
|
6505 |
msgid "Donation History Page"
|
6506 |
msgstr ""
|
@@ -6543,22 +6146,18 @@ msgstr ""
|
|
6543 |
msgid "Remove setting field"
|
6544 |
msgstr ""
|
6545 |
|
6546 |
-
#. undefined
|
6547 |
#: includes/admin/class-admin-settings.php:672, includes/admin/give-metabox-functions.php:777
|
6548 |
msgid "Add or Upload %s"
|
6549 |
msgstr ""
|
6550 |
|
6551 |
-
#. undefined
|
6552 |
#: includes/admin/class-admin-settings.php:672, includes/admin/give-metabox-functions.php:777
|
6553 |
msgid "File"
|
6554 |
msgstr ""
|
6555 |
|
6556 |
-
#. undefined
|
6557 |
#: includes/admin/class-admin-settings.php:672, includes/admin/give-metabox-functions.php:777
|
6558 |
msgid "Image"
|
6559 |
msgstr ""
|
6560 |
|
6561 |
-
#. undefined
|
6562 |
#: includes/admin/class-admin-settings.php:826, includes/admin/give-metabox-functions.php:869
|
6563 |
msgid "Need Help? See docs on \"%s\""
|
6564 |
msgstr ""
|
@@ -6583,9 +6182,6 @@ msgstr ""
|
|
6583 |
msgid "Revoke"
|
6584 |
msgstr ""
|
6585 |
|
6586 |
-
#. undefined
|
6587 |
-
#. undefined
|
6588 |
-
#. undefined
|
6589 |
#: includes/admin/class-api-keys-table.php:192, includes/forms/template.php:1270, templates/shortcode-login.php:29, templates/shortcode-register.php:34
|
6590 |
msgid "Username"
|
6591 |
msgstr ""
|
@@ -6635,7 +6231,6 @@ msgstr ""
|
|
6635 |
msgid "When your first donation arrives, a record of the donation will appear here."
|
6636 |
msgstr ""
|
6637 |
|
6638 |
-
#. undefined
|
6639 |
#: includes/admin/class-blank-slate.php:279, includes/admin/class-blank-slate.php:295
|
6640 |
msgid "View All Forms"
|
6641 |
msgstr ""
|
@@ -6662,51 +6257,34 @@ msgstr ""
|
|
6662 |
msgid "Need help? Learn more about %1$sDonors%2$s."
|
6663 |
msgstr ""
|
6664 |
|
6665 |
-
#. undefined
|
6666 |
-
#. undefined
|
6667 |
#: includes/admin/class-give-settings.php:94, includes/admin/settings/class-settings-general.php:30, includes/admin/settings/class-settings-general.php:423
|
6668 |
msgid "General"
|
6669 |
msgstr ""
|
6670 |
|
6671 |
-
#. undefined
|
6672 |
-
#. undefined
|
6673 |
#: includes/admin/class-give-settings.php:95, includes/admin/class-give-settings.php:305, includes/admin/settings/class-settings-gateways.php:30
|
6674 |
msgid "Payment Gateways"
|
6675 |
msgstr ""
|
6676 |
|
6677 |
-
#. undefined
|
6678 |
-
#. undefined
|
6679 |
-
#. undefined
|
6680 |
#: includes/admin/class-give-settings.php:96, includes/admin/forms/class-metabox-form-data.php:245, includes/admin/settings/class-settings-display.php:30, includes/admin/shortcodes/shortcode-give-form.php:100
|
6681 |
msgid "Display Options"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
-
#. undefined
|
6685 |
#: includes/admin/class-give-settings.php:97, includes/admin/settings/class-settings-email.php:30
|
6686 |
msgid "Emails"
|
6687 |
msgstr ""
|
6688 |
|
6689 |
-
#. undefined
|
6690 |
#: includes/admin/class-give-settings.php:104, includes/admin/settings/class-settings-license.php:30
|
6691 |
msgid "Licenses"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
-
#. undefined
|
6695 |
#: includes/admin/class-give-settings.php:107, includes/admin/settings/class-settings-advanced.php:30
|
6696 |
msgid "Advanced"
|
6697 |
msgstr ""
|
6698 |
|
6699 |
-
#. undefined
|
6700 |
-
#. undefined
|
6701 |
-
#. undefined
|
6702 |
-
#. undefined
|
6703 |
#: includes/admin/class-give-settings.php:108, includes/admin/class-give-settings.php:727, includes/admin/class-give-settings.php:733, includes/admin/tools/class-settings-api.php:37, includes/admin/tools/class-settings-api.php:58
|
6704 |
msgid "API"
|
6705 |
msgstr ""
|
6706 |
|
6707 |
-
#. undefined
|
6708 |
-
#. undefined
|
6709 |
-
#. undefined
|
6710 |
#: includes/admin/class-give-settings.php:109, includes/admin/class-give-settings.php:742, includes/admin/class-give-settings.php:747, includes/admin/tools/class-settings-system-info.php:37
|
6711 |
msgid "System Info"
|
6712 |
msgstr ""
|
@@ -6715,14 +6293,10 @@ msgstr ""
|
|
6715 |
msgid "Save Settings"
|
6716 |
msgstr ""
|
6717 |
|
6718 |
-
#. undefined
|
6719 |
-
#. undefined
|
6720 |
#: includes/admin/class-give-settings.php:199, includes/admin/class-give-settings.php:203, includes/admin/settings/class-settings-general.php:234
|
6721 |
msgid "General Settings"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
-
#. undefined
|
6725 |
-
#. undefined
|
6726 |
#: includes/admin/class-give-settings.php:209, includes/admin/settings/class-settings-general.php:240, includes/admin/tools/views/html-admin-page-system-info.php:559
|
6727 |
msgid "Success Page"
|
6728 |
msgstr ""
|
@@ -6733,12 +6307,10 @@ msgstr ""
|
|
6733 |
msgid "The page donors are sent to after completing their donations. The %s shortcode should be on this page."
|
6734 |
msgstr ""
|
6735 |
|
6736 |
-
#. undefined
|
6737 |
#: includes/admin/class-give-settings.php:220, includes/admin/settings/class-settings-general.php:255
|
6738 |
msgid "Failed Donation Page"
|
6739 |
msgstr ""
|
6740 |
|
6741 |
-
#. undefined
|
6742 |
#: includes/admin/class-give-settings.php:221, includes/admin/settings/class-settings-general.php:256
|
6743 |
msgid "The page donors are sent to if their donation is cancelled or fails."
|
6744 |
msgstr ""
|
@@ -6749,58 +6321,44 @@ msgstr ""
|
|
6749 |
msgid "The page showing a complete donation history for the current user. The %s shortcode should be on this page."
|
6750 |
msgstr ""
|
6751 |
|
6752 |
-
#. undefined
|
6753 |
#: includes/admin/class-give-settings.php:241, includes/admin/settings/class-settings-general.php:284
|
6754 |
msgid "Base Country"
|
6755 |
msgstr ""
|
6756 |
|
6757 |
-
#. undefined
|
6758 |
#: includes/admin/class-give-settings.php:242, includes/admin/settings/class-settings-general.php:285
|
6759 |
msgid "The country your site operates from."
|
6760 |
msgstr ""
|
6761 |
|
6762 |
-
#. undefined
|
6763 |
-
#. undefined
|
6764 |
#: includes/admin/class-give-settings.php:248, includes/admin/settings/class-settings-general.php:147, includes/admin/settings/class-settings-general.php:206
|
6765 |
msgid "Currency Settings"
|
6766 |
msgstr ""
|
6767 |
|
6768 |
-
#. undefined
|
6769 |
-
#. undefined
|
6770 |
#: includes/admin/class-give-settings.php:254, includes/admin/settings/class-settings-general.php:153, includes/admin/settings/class-settings-general.php:424
|
6771 |
msgid "Currency"
|
6772 |
msgstr ""
|
6773 |
|
6774 |
-
#. undefined
|
6775 |
#: includes/admin/class-give-settings.php:255, includes/admin/settings/class-settings-general.php:154
|
6776 |
msgid "The donation currency. Note that some payment gateways have currency restrictions."
|
6777 |
msgstr ""
|
6778 |
|
6779 |
-
#. undefined
|
6780 |
-
#. undefined
|
6781 |
#: includes/admin/class-give-settings.php:262, includes/admin/settings/class-settings-general.php:162, includes/admin/tools/views/html-admin-page-system-info.php:544
|
6782 |
msgid "Currency Position"
|
6783 |
msgstr ""
|
6784 |
|
6785 |
-
#. undefined
|
6786 |
#: includes/admin/class-give-settings.php:263, includes/admin/settings/class-settings-general.php:163
|
6787 |
msgid "The position of the currency symbol."
|
6788 |
msgstr ""
|
6789 |
|
6790 |
#. translators: %s: currency symbol
|
6791 |
-
#. undefined
|
6792 |
#: includes/admin/class-give-settings.php:268, includes/admin/settings/class-settings-general.php:137
|
6793 |
msgid "Before - %s‎10"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
#. translators: %s: currency symbol
|
6797 |
-
#. undefined
|
6798 |
#: includes/admin/class-give-settings.php:270, includes/admin/settings/class-settings-general.php:138
|
6799 |
msgid "After - 10%s‏"
|
6800 |
msgstr ""
|
6801 |
|
6802 |
-
#. undefined
|
6803 |
-
#. undefined
|
6804 |
#: includes/admin/class-give-settings.php:275, includes/admin/settings/class-settings-general.php:179, includes/admin/tools/views/html-admin-page-system-info.php:554
|
6805 |
msgid "Thousands Separator"
|
6806 |
msgstr ""
|
@@ -6809,23 +6367,18 @@ msgstr ""
|
|
6809 |
msgid "The symbol (usually , or .) to separate thousands."
|
6810 |
msgstr ""
|
6811 |
|
6812 |
-
#. undefined
|
6813 |
-
#. undefined
|
6814 |
#: includes/admin/class-give-settings.php:283, includes/admin/settings/class-settings-general.php:187, includes/admin/tools/views/html-admin-page-system-info.php:549
|
6815 |
msgid "Decimal Separator"
|
6816 |
msgstr ""
|
6817 |
|
6818 |
-
#. undefined
|
6819 |
#: includes/admin/class-give-settings.php:284, includes/admin/settings/class-settings-general.php:188
|
6820 |
msgid "The symbol (usually , or .) to separate decimal points."
|
6821 |
msgstr ""
|
6822 |
|
6823 |
-
#. undefined
|
6824 |
#: includes/admin/class-give-settings.php:290, includes/admin/settings/class-settings-general.php:195
|
6825 |
msgid "Number of Decimals"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
-
#. undefined
|
6829 |
#: includes/admin/class-give-settings.php:291, includes/admin/settings/class-settings-general.php:196
|
6830 |
msgid "The number of decimal points displayed in amounts."
|
6831 |
msgstr ""
|
@@ -6834,49 +6387,38 @@ msgstr ""
|
|
6834 |
msgid "Gateways Settings"
|
6835 |
msgstr ""
|
6836 |
|
6837 |
-
#. undefined
|
6838 |
#: includes/admin/class-give-settings.php:316, includes/admin/settings/class-settings-gateways.php:170
|
6839 |
msgid "While in test mode no live donations are processed. To fully use test mode, you must have a sandbox (test) account for the payment gateway you are testing."
|
6840 |
msgstr ""
|
6841 |
|
6842 |
-
#. undefined
|
6843 |
#: includes/admin/class-give-settings.php:321, includes/admin/settings/class-settings-gateways.php:180
|
6844 |
msgid "Enabled Gateways"
|
6845 |
msgstr ""
|
6846 |
|
6847 |
-
#. undefined
|
6848 |
#: includes/admin/class-give-settings.php:322, includes/admin/settings/class-settings-gateways.php:181
|
6849 |
msgid "Enable your payment gateway. Can be ordered by dragging."
|
6850 |
msgstr ""
|
6851 |
|
6852 |
-
#. undefined
|
6853 |
-
#. undefined
|
6854 |
#: includes/admin/class-give-settings.php:327, includes/admin/forms/class-metabox-form-data.php:277, includes/admin/settings/class-settings-gateways.php:206
|
6855 |
msgid "Default Gateway"
|
6856 |
msgstr ""
|
6857 |
|
6858 |
-
#. undefined
|
6859 |
#: includes/admin/class-give-settings.php:328, includes/admin/settings/class-settings-gateways.php:207
|
6860 |
msgid "The gateway that will be selected by default."
|
6861 |
msgstr ""
|
6862 |
|
6863 |
-
#. undefined
|
6864 |
-
#. undefined
|
6865 |
#: includes/admin/class-give-settings.php:333, includes/gateways/functions.php:27, includes/admin/settings/class-settings-gateways.php:255
|
6866 |
msgid "PayPal Standard"
|
6867 |
msgstr ""
|
6868 |
|
6869 |
-
#. undefined
|
6870 |
#: includes/admin/class-give-settings.php:339, includes/admin/settings/class-settings-gateways.php:61
|
6871 |
msgid "PayPal Email"
|
6872 |
msgstr ""
|
6873 |
|
6874 |
-
#. undefined
|
6875 |
#: includes/admin/class-give-settings.php:340, includes/admin/settings/class-settings-gateways.php:62
|
6876 |
msgid "Enter your PayPal account's email."
|
6877 |
msgstr ""
|
6878 |
|
6879 |
-
#. undefined
|
6880 |
#: includes/admin/class-give-settings.php:345, includes/admin/settings/class-settings-gateways.php:67
|
6881 |
msgid "PayPal Page Style"
|
6882 |
msgstr ""
|
@@ -6885,25 +6427,18 @@ msgstr ""
|
|
6885 |
msgid "Enter the name of the page style to use, or leave blank to use the default."
|
6886 |
msgstr ""
|
6887 |
|
6888 |
-
#. undefined
|
6889 |
#: includes/admin/class-give-settings.php:351, includes/admin/settings/class-settings-gateways.php:73
|
6890 |
msgid "PayPal Transaction Type"
|
6891 |
msgstr ""
|
6892 |
|
6893 |
-
#. undefined
|
6894 |
#: includes/admin/class-give-settings.php:352, includes/admin/settings/class-settings-gateways.php:74
|
6895 |
msgid "Nonprofits must verify their status to withdraw donations they receive via PayPal. PayPal users that are not verified nonprofits must demonstrate how their donations will be used, once they raise more than $10,000. By default, Give transactions are sent to PayPal as donations. You may change the transaction type using this option if you feel you may not meet PayPal's donation requirements."
|
6896 |
msgstr ""
|
6897 |
|
6898 |
-
#. undefined
|
6899 |
-
#. undefined
|
6900 |
-
#. undefined
|
6901 |
-
#. undefined
|
6902 |
#: includes/admin/class-give-settings.php:356, includes/admin/payments/class-payments-table.php:392, includes/admin/settings/class-settings-gateways.php:78, includes/admin/tools/logs/class-sales-logs-list-table.php:140, templates/shortcode-receipt.php:72
|
6903 |
msgid "Donation"
|
6904 |
msgstr ""
|
6905 |
|
6906 |
-
#. undefined
|
6907 |
#: includes/admin/class-give-settings.php:357, includes/admin/settings/class-settings-gateways.php:79
|
6908 |
msgid "Standard Transaction"
|
6909 |
msgstr ""
|
@@ -6912,39 +6447,26 @@ msgstr ""
|
|
6912 |
msgid "Disable PayPal IPN Verification"
|
6913 |
msgstr ""
|
6914 |
|
6915 |
-
#. undefined
|
6916 |
#: includes/admin/class-give-settings.php:363, includes/admin/settings/class-settings-gateways.php:96
|
6917 |
msgid "If donations are not getting marked as complete, use a slightly less secure method of verifying donations."
|
6918 |
msgstr ""
|
6919 |
|
6920 |
-
#. undefined
|
6921 |
-
#. undefined
|
6922 |
-
#. undefined
|
6923 |
-
#. undefined
|
6924 |
#: includes/admin/class-give-settings.php:368, includes/gateways/offline-donations.php:302, includes/gateways/offline-donations.php:341, includes/admin/forms/class-metabox-form-data.php:1194, includes/admin/settings/class-settings-gateways.php:256
|
6925 |
msgid "Offline Donations"
|
6926 |
msgstr ""
|
6927 |
|
6928 |
-
#. undefined
|
6929 |
#: includes/admin/class-give-settings.php:374, includes/admin/settings/class-settings-gateways.php:127
|
6930 |
msgid "Collect Billing Details"
|
6931 |
msgstr ""
|
6932 |
|
6933 |
-
#. undefined
|
6934 |
#: includes/admin/class-give-settings.php:375, includes/admin/settings/class-settings-gateways.php:128
|
6935 |
msgid "Enable to request billing details for offline donations. Will appear above offline donation instructions. Can be enabled/disabled per form."
|
6936 |
msgstr ""
|
6937 |
|
6938 |
-
#. undefined
|
6939 |
-
#. undefined
|
6940 |
-
#. undefined
|
6941 |
-
#. undefined
|
6942 |
-
#. undefined
|
6943 |
#: includes/admin/class-give-settings.php:380, includes/gateways/offline-donations.php:183, includes/gateways/offline-donations.php:198, includes/admin/emails/class-offline-donation-instruction-email.php:43, includes/admin/emails/class-offline-donation-instruction-email.php:207, includes/admin/settings/class-settings-gateways.php:138
|
6944 |
msgid "Offline Donation Instructions"
|
6945 |
msgstr ""
|
6946 |
|
6947 |
-
#. undefined
|
6948 |
#: includes/admin/class-give-settings.php:381, includes/admin/settings/class-settings-gateways.php:139
|
6949 |
msgid "The following content will appear for all forms when the user selects the offline donation payment option. Note: You may customize the content per form as needed."
|
6950 |
msgstr ""
|
@@ -6953,12 +6475,10 @@ msgstr ""
|
|
6953 |
msgid "Offline Donation Email Instructions Subject"
|
6954 |
msgstr ""
|
6955 |
|
6956 |
-
#. undefined
|
6957 |
#: includes/admin/class-give-settings.php:391, includes/admin/class-give-settings.php:567
|
6958 |
msgid "Enter the subject line for the donation receipt email."
|
6959 |
msgstr ""
|
6960 |
|
6961 |
-
#. undefined
|
6962 |
#: includes/admin/class-give-settings.php:393, includes/admin/emails/class-offline-donation-instruction-email.php:51
|
6963 |
msgid "{donation} - Offline Donation Instructions"
|
6964 |
msgstr ""
|
@@ -6971,7 +6491,6 @@ msgstr ""
|
|
6971 |
msgid "Enter the instructions you want emailed to the donor after they have submitted the donation form. Most likely this would include important information like mailing address and who to make the check out to."
|
6972 |
msgstr ""
|
6973 |
|
6974 |
-
#. undefined
|
6975 |
#: includes/admin/class-give-settings.php:412, includes/admin/class-give-settings.php:416
|
6976 |
msgid "Display Settings"
|
6977 |
msgstr ""
|
@@ -7002,7 +6521,6 @@ msgstr ""
|
|
7002 |
msgid "Enable this option if you would like to disable the <a href=\"%s\" target=\"_blank\">Give Welcome screen</a> every time Give is activated and/or updated."
|
7003 |
msgstr ""
|
7004 |
|
7005 |
-
#. undefined
|
7006 |
#: includes/admin/class-give-settings.php:452, includes/admin/settings/class-settings-display.php:331
|
7007 |
msgid "Post Types"
|
7008 |
msgstr ""
|
@@ -7027,17 +6545,14 @@ msgstr ""
|
|
7027 |
msgid "Disable Form Excerpts"
|
7028 |
msgstr ""
|
7029 |
|
7030 |
-
#. undefined
|
7031 |
#: includes/admin/class-give-settings.php:471, includes/admin/settings/class-settings-display.php:161
|
7032 |
msgid "The excerpt is an optional summary or description of a donation form; in short, a summary as to why the user should give."
|
7033 |
msgstr ""
|
7034 |
|
7035 |
-
#. undefined
|
7036 |
#: includes/admin/class-give-settings.php:476, includes/admin/settings/class-settings-display.php:182
|
7037 |
msgid "Featured Image Size"
|
7038 |
msgstr ""
|
7039 |
|
7040 |
-
#. undefined
|
7041 |
#: includes/admin/class-give-settings.php:477, includes/admin/settings/class-settings-display.php:183
|
7042 |
msgid "The Featured Image is an image that is chosen as the representative image for a donation form. Some themes may have custom featured image sizes. Please select the size you would like to display for your single donation form's featured image."
|
7043 |
msgstr ""
|
@@ -7046,7 +6561,6 @@ msgstr ""
|
|
7046 |
msgid "Disable Form Featured Image"
|
7047 |
msgstr ""
|
7048 |
|
7049 |
-
#. undefined
|
7050 |
#: includes/admin/class-give-settings.php:485, includes/admin/settings/class-settings-display.php:172
|
7051 |
msgid "If you do not wish to use the featured image functionality you can disable it using this option and it will not be displayed for single donation forms."
|
7052 |
msgstr ""
|
@@ -7059,7 +6573,6 @@ msgstr ""
|
|
7059 |
msgid "The sidebar allows you to add additional widget to the Give single form view. If you don't plan on using the sidebar you may disable it with this option."
|
7060 |
msgstr ""
|
7061 |
|
7062 |
-
#. undefined
|
7063 |
#: includes/admin/class-give-settings.php:496, includes/admin/settings/class-settings-display.php:332
|
7064 |
msgid "Taxonomies"
|
7065 |
msgstr ""
|
@@ -7080,14 +6593,10 @@ msgstr ""
|
|
7080 |
msgid "Enables the \"Tag\" taxonomy for all Give forms."
|
7081 |
msgstr ""
|
7082 |
|
7083 |
-
#. undefined
|
7084 |
-
#. undefined
|
7085 |
#: includes/admin/class-give-settings.php:522, includes/admin/class-give-settings.php:526, includes/admin/settings/class-settings-email.php:143
|
7086 |
msgid "Email Settings"
|
7087 |
msgstr ""
|
7088 |
|
7089 |
-
#. undefined
|
7090 |
-
#. undefined
|
7091 |
#: includes/admin/class-give-settings.php:533, includes/admin/emails/class-email-notifications.php:136, includes/admin/settings/class-settings-email.php:76
|
7092 |
msgid "Email Template"
|
7093 |
msgstr ""
|
@@ -7096,20 +6605,14 @@ msgstr ""
|
|
7096 |
msgid "Choose a template. Click \"Save Changes\" then \"Preview Donation Receipt\" to see the new template."
|
7097 |
msgstr ""
|
7098 |
|
7099 |
-
#. undefined
|
7100 |
-
#. undefined
|
7101 |
#: includes/admin/class-give-settings.php:540, includes/admin/emails/class-email-notifications.php:144, includes/admin/settings/class-settings-email.php:83
|
7102 |
msgid "Logo"
|
7103 |
msgstr ""
|
7104 |
|
7105 |
-
#. undefined
|
7106 |
-
#. undefined
|
7107 |
#: includes/admin/class-give-settings.php:541, includes/admin/emails/class-email-notifications.php:145, includes/admin/settings/class-settings-email.php:84
|
7108 |
msgid "Upload or choose a logo to be displayed at the top of the donation receipt emails. Displayed on HTML emails only."
|
7109 |
msgstr ""
|
7110 |
|
7111 |
-
#. undefined
|
7112 |
-
#. undefined
|
7113 |
#: includes/admin/class-give-settings.php:546, includes/admin/emails/class-email-notifications.php:150, includes/admin/settings/class-settings-email.php:89
|
7114 |
msgid "From Name"
|
7115 |
msgstr ""
|
@@ -7118,8 +6621,6 @@ msgstr ""
|
|
7118 |
msgid "The name that appears in the \"From\" field in donation receipt emails."
|
7119 |
msgstr ""
|
7120 |
|
7121 |
-
#. undefined
|
7122 |
-
#. undefined
|
7123 |
#: includes/admin/class-give-settings.php:553, includes/admin/emails/class-email-notifications.php:157, includes/admin/settings/class-settings-email.php:96
|
7124 |
msgid "From Email"
|
7125 |
msgstr ""
|
@@ -7128,14 +6629,6 @@ msgstr ""
|
|
7128 |
msgid "Email to send donation receipts from. This will act as the \"from\" and \"reply-to\" address."
|
7129 |
msgstr ""
|
7130 |
|
7131 |
-
#. undefined
|
7132 |
-
#. undefined
|
7133 |
-
#. undefined
|
7134 |
-
#. undefined
|
7135 |
-
#. undefined
|
7136 |
-
#. undefined
|
7137 |
-
#. undefined
|
7138 |
-
#. undefined
|
7139 |
#: includes/admin/class-give-settings.php:559, includes/admin/class-give-settings.php:568, includes/admin/class-give-settings.php:573, includes/admin/emails/class-donation-receipt-email.php:42, includes/admin/emails/class-donation-receipt-email.php:47, includes/admin/emails/class-donation-receipt-email.php:241, includes/admin/shortcodes/shortcode-give-receipt.php:27, includes/admin/shortcodes/shortcode-give-receipt.php:28, templates/shortcode-receipt.php:248
|
7140 |
msgid "Donation Receipt"
|
7141 |
msgstr ""
|
@@ -7161,7 +6654,6 @@ msgstr ""
|
|
7161 |
msgid "Enter the subject line for the donation notification email."
|
7162 |
msgstr ""
|
7163 |
|
7164 |
-
#. undefined
|
7165 |
#: includes/admin/class-give-settings.php:593, includes/admin/emails/class-new-donation-email.php:49
|
7166 |
msgid "New Donation - #{payment_id}"
|
7167 |
msgstr ""
|
@@ -7199,58 +6691,46 @@ msgstr ""
|
|
7199 |
msgid "Give Licenses"
|
7200 |
msgstr ""
|
7201 |
|
7202 |
-
#. undefined
|
7203 |
#: includes/admin/class-give-settings.php:641, includes/admin/settings/class-settings-advanced.php:184
|
7204 |
msgid "Advanced Options"
|
7205 |
msgstr ""
|
7206 |
|
7207 |
-
#. undefined
|
7208 |
-
#. undefined
|
7209 |
#: includes/admin/class-give-settings.php:645, includes/admin/settings/class-settings-general.php:126, includes/admin/settings/class-settings-general.php:425
|
7210 |
msgid "Access Control"
|
7211 |
msgstr ""
|
7212 |
|
7213 |
-
#. undefined
|
7214 |
#: includes/admin/class-give-settings.php:652, includes/admin/settings/class-settings-general.php:63
|
7215 |
msgid "Session Lifetime"
|
7216 |
msgstr ""
|
7217 |
|
7218 |
-
#. undefined
|
7219 |
#: includes/admin/class-give-settings.php:653, includes/admin/settings/class-settings-general.php:64
|
7220 |
msgid "The length of time a user's session is kept alive. Give starts a new session per user upon donation. Sessions allow donors to view their donation receipts without being logged in."
|
7221 |
msgstr ""
|
7222 |
|
7223 |
-
#. undefined
|
7224 |
#: includes/admin/class-give-settings.php:656, includes/admin/settings/class-settings-general.php:67
|
7225 |
msgid "24 Hours"
|
7226 |
msgstr ""
|
7227 |
|
7228 |
-
#. undefined
|
7229 |
#: includes/admin/class-give-settings.php:657, includes/admin/settings/class-settings-general.php:68
|
7230 |
msgid "48 Hours"
|
7231 |
msgstr ""
|
7232 |
|
7233 |
-
#. undefined
|
7234 |
#: includes/admin/class-give-settings.php:658, includes/admin/settings/class-settings-general.php:69
|
7235 |
msgid "72 Hours"
|
7236 |
msgstr ""
|
7237 |
|
7238 |
-
#. undefined
|
7239 |
#: includes/admin/class-give-settings.php:659, includes/admin/settings/class-settings-general.php:70
|
7240 |
msgid "1 Week"
|
7241 |
msgstr ""
|
7242 |
|
7243 |
-
#. undefined
|
7244 |
#: includes/admin/class-give-settings.php:663, includes/admin/settings/class-settings-general.php:86
|
7245 |
msgid "Email Access"
|
7246 |
msgstr ""
|
7247 |
|
7248 |
-
#. undefined
|
7249 |
#: includes/admin/class-give-settings.php:664, includes/admin/settings/class-settings-general.php:87
|
7250 |
msgid "Would you like your donors to be able to access their donation history using only email? Donors whose sessions have expired and do not have an account may still access their donation history via a temporary email access link."
|
7251 |
msgstr ""
|
7252 |
|
7253 |
-
#. undefined
|
7254 |
#: includes/admin/class-give-settings.php:670, includes/admin/settings/class-settings-general.php:109
|
7255 |
msgid "reCAPTCHA Site Key"
|
7256 |
msgstr ""
|
@@ -7260,7 +6740,6 @@ msgstr ""
|
|
7260 |
msgid "If you would like to prevent spam on the email access form navigate to <a href=\"%s\" target=\"_blank\">the reCAPTCHA website</a> and sign up for an API key. The reCAPTCHA uses Google's user-friendly single click verification method."
|
7261 |
msgstr ""
|
7262 |
|
7263 |
-
#. undefined
|
7264 |
#: includes/admin/class-give-settings.php:678, includes/admin/settings/class-settings-general.php:117
|
7265 |
msgid "reCAPTCHA Secret Key"
|
7266 |
msgstr ""
|
@@ -7328,8 +6807,6 @@ msgstr ""
|
|
7328 |
msgid "Invalid license. Please <a href=\"%s\" target=\"_blank\" title=\"Visit account page\">visit your account page</a> and verify it."
|
7329 |
msgstr ""
|
7330 |
|
7331 |
-
#. undefined
|
7332 |
-
#. undefined
|
7333 |
#: includes/admin/class-give-settings.php:1258, includes/admin/class-give-settings.php:1268, includes/admin/class-give-settings.php:1339
|
7334 |
msgid "Your %1$s is not active for this URL. Please <a href=\"%2$s\" target=\"_blank\" title=\"Visit account page\">visit your account page</a> to manage your license key URLs."
|
7335 |
msgstr ""
|
@@ -7477,12 +6954,10 @@ msgstr ""
|
|
7477 |
msgid "Global Default"
|
7478 |
msgstr ""
|
7479 |
|
7480 |
-
#. undefined
|
7481 |
#: includes/admin/give-metabox-functions.php:917, includes/emails/template.php:138
|
7482 |
msgid "Send Test Email."
|
7483 |
msgstr ""
|
7484 |
|
7485 |
-
#. undefined
|
7486 |
#: includes/admin/give-metabox-functions.php:918, includes/emails/template.php:139
|
7487 |
msgid "Send Test Email"
|
7488 |
msgstr ""
|
@@ -7491,8 +6966,6 @@ msgstr ""
|
|
7491 |
msgid "Group"
|
7492 |
msgstr ""
|
7493 |
|
7494 |
-
#. undefined
|
7495 |
-
#. undefined
|
7496 |
#: includes/admin/give-metabox-functions.php:1175, includes/admin/give-metabox-functions.php:1210, includes/admin/give-metabox-functions.php:1245
|
7497 |
msgid "Remove Group"
|
7498 |
msgstr ""
|
@@ -7505,7 +6978,6 @@ msgstr ""
|
|
7505 |
msgid "Documentation"
|
7506 |
msgstr ""
|
7507 |
|
7508 |
-
#. undefined
|
7509 |
#: includes/admin/plugins.php:221, includes/admin/welcome.php:179
|
7510 |
msgid "Give"
|
7511 |
msgstr ""
|
@@ -7519,7 +6991,6 @@ msgstr ""
|
|
7519 |
msgid "Welcome to Give"
|
7520 |
msgstr ""
|
7521 |
|
7522 |
-
#. undefined
|
7523 |
#: includes/admin/welcome.php:66, includes/admin/welcome.php:67
|
7524 |
msgid "Give Changelog"
|
7525 |
msgstr ""
|
@@ -7567,8 +7038,6 @@ msgstr ""
|
|
7567 |
msgid "Version %s"
|
7568 |
msgstr ""
|
7569 |
|
7570 |
-
#. undefined
|
7571 |
-
#. undefined
|
7572 |
#: includes/admin/welcome.php:184, includes/admin/tools/export/pdf-reports.php:75, includes/admin/tools/export/pdf-reports.php:76
|
7573 |
msgid "Give - Democratizing Generosity"
|
7574 |
msgstr ""
|
@@ -7712,12 +7181,10 @@ msgstr ""
|
|
7712 |
msgid "Form %s not found."
|
7713 |
msgstr ""
|
7714 |
|
7715 |
-
#. undefined
|
7716 |
#: includes/api/class-give-api.php:1165, includes/api/class-give-api.php:1280
|
7717 |
msgid "The end date must be later than the start date."
|
7718 |
msgstr ""
|
7719 |
|
7720 |
-
#. undefined
|
7721 |
#: includes/api/class-give-api.php:1170, includes/api/class-give-api.php:1285
|
7722 |
msgid "Invalid or no date range specified."
|
7723 |
msgstr ""
|
@@ -7756,12 +7223,10 @@ msgstr ""
|
|
7756 |
msgid "You do not have permission to %s API keys for this user."
|
7757 |
msgstr ""
|
7758 |
|
7759 |
-
#. undefined
|
7760 |
#: includes/deprecated/deprecated-functions.php:69, includes/admin/tools/class-settings-logs.php:94
|
7761 |
msgid "Payment Errors"
|
7762 |
msgstr ""
|
7763 |
|
7764 |
-
#. undefined
|
7765 |
#: includes/deprecated/deprecated-functions.php:70, includes/admin/tools/class-settings-logs.php:95
|
7766 |
msgid "API Requests"
|
7767 |
msgstr ""
|
@@ -7770,7 +7235,6 @@ msgstr ""
|
|
7770 |
msgid "The donation form name, and the donation level (if applicable)."
|
7771 |
msgstr ""
|
7772 |
|
7773 |
-
#. undefined
|
7774 |
#: includes/emails/class-give-email-tags.php:325, includes/emails/class-give-email-tags.php:331
|
7775 |
msgid "The total donation amount with currency sign."
|
7776 |
msgstr ""
|
@@ -7847,7 +7311,6 @@ msgstr ""
|
|
7847 |
msgid "View it in your browser »"
|
7848 |
msgstr ""
|
7849 |
|
7850 |
-
#. undefined
|
7851 |
#: includes/emails/class-give-email-tags.php:1247, includes/admin/emails/abstract-email-notification.php:845
|
7852 |
msgid "View your donation history »"
|
7853 |
msgstr ""
|
@@ -7884,31 +7347,22 @@ msgstr ""
|
|
7884 |
msgid "This email is to inform you that a new donation has been made on your website:"
|
7885 |
msgstr ""
|
7886 |
|
7887 |
-
#. undefined
|
7888 |
-
#. undefined
|
7889 |
-
#. undefined
|
7890 |
#: includes/emails/functions.php:89, includes/emails/functions.php:112, includes/gateways/offline-donations.php:244, includes/admin/emails/class-new-offline-donation-email.php:112
|
7891 |
msgid "Donor:"
|
7892 |
msgstr ""
|
7893 |
|
7894 |
-
#. undefined
|
7895 |
#: includes/emails/functions.php:90, includes/emails/functions.php:113
|
7896 |
msgid "Donation:"
|
7897 |
msgstr ""
|
7898 |
|
7899 |
-
#. undefined
|
7900 |
-
#. undefined
|
7901 |
-
#. undefined
|
7902 |
#: includes/emails/functions.php:91, includes/emails/functions.php:115, includes/gateways/offline-donations.php:245, includes/admin/emails/class-new-offline-donation-email.php:113
|
7903 |
msgid "Amount:"
|
7904 |
msgstr ""
|
7905 |
|
7906 |
-
#. undefined
|
7907 |
#: includes/emails/functions.php:92, includes/emails/functions.php:116
|
7908 |
msgid "Payment Method:"
|
7909 |
msgstr ""
|
7910 |
|
7911 |
-
#. undefined
|
7912 |
#: includes/emails/functions.php:93, includes/emails/functions.php:256
|
7913 |
msgid "Thank you,"
|
7914 |
msgstr ""
|
@@ -7921,7 +7375,6 @@ msgstr ""
|
|
7921 |
msgid "Thank you for your donation. Your generosity is appreciated! Here are the details of your donation:"
|
7922 |
msgstr ""
|
7923 |
|
7924 |
-
#. undefined
|
7925 |
#: includes/emails/functions.php:114, includes/admin/payments/view-payment-details.php:432
|
7926 |
msgid "Donation Date:"
|
7927 |
msgstr ""
|
@@ -7934,8 +7387,6 @@ msgstr ""
|
|
7934 |
msgid "Receipt ID:"
|
7935 |
msgstr ""
|
7936 |
|
7937 |
-
#. undefined
|
7938 |
-
#. undefined
|
7939 |
#: includes/emails/functions.php:121, includes/gateways/offline-donations.php:422, includes/admin/emails/class-email-access-email.php:184
|
7940 |
msgid "Sincerely,"
|
7941 |
msgstr ""
|
@@ -7965,17 +7416,14 @@ msgstr ""
|
|
7965 |
msgid "User - Donor Profile Disconnection"
|
7966 |
msgstr ""
|
7967 |
|
7968 |
-
#. undefined
|
7969 |
#: includes/emails/template.php:74, includes/admin/emails/abstract-email-notification.php:797
|
7970 |
msgid "View the receipt in your browser »"
|
7971 |
msgstr ""
|
7972 |
|
7973 |
-
#. undefined
|
7974 |
#: includes/emails/template.php:88, includes/admin/emails/abstract-email-notification.php:829
|
7975 |
msgid "Sample Donation Form Title"
|
7976 |
msgstr ""
|
7977 |
|
7978 |
-
#. undefined
|
7979 |
#: includes/emails/template.php:89, includes/admin/emails/abstract-email-notification.php:830
|
7980 |
msgid "Sample Donation Form Title - Sample Donation Level"
|
7981 |
msgstr ""
|
@@ -7996,12 +7444,10 @@ msgstr ""
|
|
7996 |
msgid "Goal achieved"
|
7997 |
msgstr ""
|
7998 |
|
7999 |
-
#. undefined
|
8000 |
#: includes/forms/template.php:411, includes/forms/template.php:432
|
8001 |
msgid "Donation Amount:"
|
8002 |
msgstr ""
|
8003 |
|
8004 |
-
#. undefined
|
8005 |
#: includes/forms/template.php:493, includes/admin/forms/class-metabox-form-data.php:177
|
8006 |
msgid "Give a Custom Amount"
|
8007 |
msgstr ""
|
@@ -8026,13 +7472,6 @@ msgstr ""
|
|
8026 |
msgid "Donate on behalf of Company"
|
8027 |
msgstr ""
|
8028 |
|
8029 |
-
#. undefined
|
8030 |
-
#. undefined
|
8031 |
-
#. undefined
|
8032 |
-
#. undefined
|
8033 |
-
#. undefined
|
8034 |
-
#. undefined
|
8035 |
-
#. undefined
|
8036 |
#: includes/forms/template.php:715, includes/forms/template.php:726, includes/admin/donors/donors.php:767, includes/admin/tools/export/class-batch-export-donors.php:191, includes/admin/tools/export/give-export-donations-exporter.php:179, includes/admin/tools/import/class-give-import-donations.php:490, templates/email-login-form.php:59, templates/shortcode-profile-editor.php:126
|
8037 |
msgid "Email Address"
|
8038 |
msgstr ""
|
@@ -8097,7 +7536,6 @@ msgstr ""
|
|
8097 |
msgid "MM / YY"
|
8098 |
msgstr ""
|
8099 |
|
8100 |
-
#. undefined
|
8101 |
#: includes/forms/template.php:897, includes/admin/settings/class-settings-gateways.php:84
|
8102 |
msgid "Billing Details"
|
8103 |
msgstr ""
|
@@ -8130,7 +7568,6 @@ msgstr ""
|
|
8130 |
msgid "The state, province, or county for your billing address."
|
8131 |
msgstr ""
|
8132 |
|
8133 |
-
#. undefined
|
8134 |
#: includes/forms/template.php:1058, includes/forms/template.php:1071
|
8135 |
msgid "Zip / Postal Code"
|
8136 |
msgstr ""
|
@@ -8155,10 +7592,6 @@ msgstr ""
|
|
8155 |
msgid "Already have an account?"
|
8156 |
msgstr ""
|
8157 |
|
8158 |
-
#. undefined
|
8159 |
-
#. undefined
|
8160 |
-
#. undefined
|
8161 |
-
#. undefined
|
8162 |
#: includes/forms/template.php:1169, includes/forms/template.php:1304, includes/admin/forms/class-metabox-form-data.php:315, includes/admin/shortcodes/shortcode-give-login.php:24, includes/admin/shortcodes/shortcode-give-login.php:25
|
8163 |
msgid "Login"
|
8164 |
msgstr ""
|
@@ -8187,8 +7620,6 @@ msgstr ""
|
|
8187 |
msgid "Your username"
|
8188 |
msgstr ""
|
8189 |
|
8190 |
-
#. undefined
|
8191 |
-
#. undefined
|
8192 |
#: includes/forms/template.php:1284, templates/shortcode-login.php:34, templates/shortcode-register.php:44
|
8193 |
msgid "Password"
|
8194 |
msgstr ""
|
@@ -8249,7 +7680,6 @@ msgstr ""
|
|
8249 |
msgid "Give Form:"
|
8250 |
msgstr ""
|
8251 |
|
8252 |
-
#. undefined
|
8253 |
#: includes/forms/widget.php:149, includes/admin/shortcodes/abstract-shortcode-generator.php:257
|
8254 |
msgid "- Select -"
|
8255 |
msgstr ""
|
@@ -8258,32 +7688,22 @@ msgstr ""
|
|
8258 |
msgid "Select a Give Form to embed in this widget."
|
8259 |
msgstr ""
|
8260 |
|
8261 |
-
#. undefined
|
8262 |
#: includes/forms/widget.php:160, includes/admin/shortcodes/shortcode-give-donation-grid.php:97
|
8263 |
msgid "Display Style:"
|
8264 |
msgstr ""
|
8265 |
|
8266 |
-
#. undefined
|
8267 |
-
#. undefined
|
8268 |
#: includes/forms/widget.php:161, includes/admin/forms/class-metabox-form-data.php:250, includes/admin/shortcodes/shortcode-give-form.php:103
|
8269 |
msgid "All Fields"
|
8270 |
msgstr ""
|
8271 |
|
8272 |
-
#. undefined
|
8273 |
-
#. undefined
|
8274 |
#: includes/forms/widget.php:162, includes/admin/forms/class-metabox-form-data.php:252, includes/admin/shortcodes/shortcode-give-form.php:105
|
8275 |
msgid "Reveal"
|
8276 |
msgstr ""
|
8277 |
|
8278 |
-
#. undefined
|
8279 |
-
#. undefined
|
8280 |
-
#. undefined
|
8281 |
#: includes/forms/widget.php:163, includes/admin/forms/class-metabox-form-data.php:251, includes/admin/shortcodes/shortcode-give-donation-grid.php:101, includes/admin/shortcodes/shortcode-give-form.php:104
|
8282 |
msgid "Modal"
|
8283 |
msgstr ""
|
8284 |
|
8285 |
-
#. undefined
|
8286 |
-
#. undefined
|
8287 |
#: includes/forms/widget.php:164, includes/admin/forms/class-metabox-form-data.php:253, includes/admin/shortcodes/shortcode-give-form.php:106
|
8288 |
msgid "Button"
|
8289 |
msgstr ""
|
@@ -8296,8 +7716,6 @@ msgstr ""
|
|
8296 |
msgid "Button Text:"
|
8297 |
msgstr ""
|
8298 |
|
8299 |
-
#. undefined
|
8300 |
-
#. undefined
|
8301 |
#: includes/forms/widget.php:174, includes/admin/forms/class-metabox-form-data.php:260, includes/admin/shortcodes/shortcode-give-form.php:114
|
8302 |
msgid "The button label for displaying the additional payment fields."
|
8303 |
msgstr ""
|
@@ -8306,10 +7724,6 @@ msgstr ""
|
|
8306 |
msgid "Floating Labels (optional):"
|
8307 |
msgstr ""
|
8308 |
|
8309 |
-
#. undefined
|
8310 |
-
#. undefined
|
8311 |
-
#. undefined
|
8312 |
-
#. undefined
|
8313 |
#: includes/forms/widget.php:180, includes/gateways/offline-donations.php:308, includes/admin/forms/class-metabox-form-data.php:289, includes/admin/forms/class-metabox-form-data.php:327, includes/admin/forms/class-metabox-form-data.php:521
|
8314 |
msgid "Global Option"
|
8315 |
msgstr ""
|
@@ -8339,21 +7753,14 @@ msgstr ""
|
|
8339 |
msgid "You must enable a payment gateway to use Give."
|
8340 |
msgstr ""
|
8341 |
|
8342 |
-
#. undefined
|
8343 |
#: includes/gateways/functions.php:28, includes/admin/emails/abstract-email-notification.php:823
|
8344 |
msgid "PayPal"
|
8345 |
msgstr ""
|
8346 |
|
8347 |
-
#. undefined
|
8348 |
-
#. undefined
|
8349 |
-
#. undefined
|
8350 |
-
#. undefined
|
8351 |
-
#. undefined
|
8352 |
#: includes/gateways/functions.php:31, includes/gateways/functions.php:32, includes/gateways/functions.php:130, includes/gateways/functions.php:150, includes/admin/payments/view-payment-details.php:74, includes/admin/tools/views/html-admin-page-system-info.php:589
|
8353 |
msgid "Test Donation"
|
8354 |
msgstr ""
|
8355 |
|
8356 |
-
#. undefined
|
8357 |
#. translators: %s: payment data
|
8358 |
#: includes/gateways/functions.php:274, includes/gateways/manual.php:62, includes/gateways/paypal-standard.php:58
|
8359 |
msgid "Payment Error"
|
@@ -8364,17 +7771,14 @@ msgstr ""
|
|
8364 |
msgid "The payment creation failed while processing a manual (free or test) donation. Payment data: %s"
|
8365 |
msgstr ""
|
8366 |
|
8367 |
-
#. undefined
|
8368 |
#: includes/gateways/offline-donations.php:24, includes/gateways/offline-donations.php:25
|
8369 |
msgid "Offline Donation"
|
8370 |
msgstr ""
|
8371 |
|
8372 |
-
#. undefined
|
8373 |
#: includes/gateways/offline-donations.php:237, includes/admin/emails/class-new-offline-donation-email.php:83
|
8374 |
msgid "New Pending Donation"
|
8375 |
msgstr ""
|
8376 |
|
8377 |
-
#. undefined
|
8378 |
#: includes/gateways/offline-donations.php:239, includes/admin/emails/class-new-offline-donation-email.php:108
|
8379 |
msgid "Dear Admin,"
|
8380 |
msgstr ""
|
@@ -8391,7 +7795,6 @@ msgstr ""
|
|
8391 |
msgid "View Donation Details »"
|
8392 |
msgstr ""
|
8393 |
|
8394 |
-
#. undefined
|
8395 |
#: includes/gateways/offline-donations.php:261, includes/admin/emails/class-new-offline-donation-email.php:43
|
8396 |
msgid "New Offline Donation"
|
8397 |
msgstr ""
|
@@ -8400,14 +7803,10 @@ msgstr ""
|
|
8400 |
msgid "Do you want to customize the donation instructions for this form?"
|
8401 |
msgstr ""
|
8402 |
|
8403 |
-
#. undefined
|
8404 |
-
#. undefined
|
8405 |
-
#. undefined
|
8406 |
#: includes/gateways/offline-donations.php:309, includes/admin/emails/class-email-notifications.php:131, includes/admin/emails/class-email-setting-field.php:175, includes/admin/forms/class-metabox-form-data.php:522
|
8407 |
msgid "Customize"
|
8408 |
msgstr ""
|
8409 |
|
8410 |
-
#. undefined
|
8411 |
#: includes/gateways/offline-donations.php:310, includes/admin/forms/class-metabox-form-data.php:523
|
8412 |
msgid "Disable"
|
8413 |
msgstr ""
|
@@ -8420,94 +7819,10 @@ msgstr ""
|
|
8420 |
msgid "This option will enable the billing details section for this form's offline donation payment gateway. The fieldset will appear above the offline donation instructions."
|
8421 |
msgstr ""
|
8422 |
|
8423 |
-
#. undefined
|
8424 |
-
#. undefined
|
8425 |
-
#. undefined
|
8426 |
-
#. undefined
|
8427 |
-
#. undefined
|
8428 |
-
#. undefined
|
8429 |
-
#. undefined
|
8430 |
-
#. undefined
|
8431 |
-
#. undefined
|
8432 |
-
#. undefined
|
8433 |
-
#. undefined
|
8434 |
-
#. undefined
|
8435 |
-
#. undefined
|
8436 |
-
#. undefined
|
8437 |
-
#. undefined
|
8438 |
-
#. undefined
|
8439 |
-
#. undefined
|
8440 |
-
#. undefined
|
8441 |
-
#. undefined
|
8442 |
-
#. undefined
|
8443 |
-
#. undefined
|
8444 |
-
#. undefined
|
8445 |
-
#. undefined
|
8446 |
-
#. undefined
|
8447 |
-
#. undefined
|
8448 |
-
#. undefined
|
8449 |
-
#. undefined
|
8450 |
-
#. undefined
|
8451 |
-
#. undefined
|
8452 |
-
#. undefined
|
8453 |
-
#. undefined
|
8454 |
-
#. undefined
|
8455 |
-
#. undefined
|
8456 |
-
#. undefined
|
8457 |
-
#. undefined
|
8458 |
-
#. undefined
|
8459 |
-
#. undefined
|
8460 |
-
#. undefined
|
8461 |
-
#. undefined
|
8462 |
-
#. undefined
|
8463 |
-
#. undefined
|
8464 |
#: includes/gateways/offline-donations.php:322, includes/admin/emails/class-email-setting-field.php:165, includes/admin/forms/class-metabox-form-data.php:149, includes/admin/forms/class-metabox-form-data.php:303, includes/admin/forms/class-metabox-form-data.php:328, includes/admin/forms/class-metabox-form-data.php:361, includes/admin/forms/class-metabox-form-data.php:428, includes/admin/forms/class-metabox-form-data.php:468, includes/admin/settings/class-settings-advanced.php:87, includes/admin/settings/class-settings-advanced.php:109, includes/admin/settings/class-settings-advanced.php:149, includes/admin/settings/class-settings-display.php:62, includes/admin/settings/class-settings-display.php:79, includes/admin/settings/class-settings-display.php:96, includes/admin/settings/class-settings-display.php:139, includes/admin/settings/class-settings-display.php:155, includes/admin/settings/class-settings-display.php:166, includes/admin/settings/class-settings-display.php:177, includes/admin/settings/class-settings-display.php:196, includes/admin/settings/class-settings-display.php:227, includes/admin/settings/class-settings-display.php:238, includes/admin/settings/class-settings-display.php:269, includes/admin/settings/class-settings-gateways.php:90, includes/admin/settings/class-settings-gateways.php:101, includes/admin/settings/class-settings-gateways.php:133, includes/admin/settings/class-settings-gateways.php:175, includes/admin/settings/class-settings-gateways.php:294, includes/admin/settings/class-settings-general.php:92, includes/admin/settings/class-settings-general.php:103, includes/admin/settings/class-settings-general.php:333, includes/admin/tools/import/class-give-import-donations.php:939, includes/admin/tools/import/class-give-import-donations.php:950, includes/admin/tools/import/class-give-import-donations.php:961, includes/admin/tools/views/html-admin-page-system-info.php:458, includes/admin/tools/views/html-admin-page-system-info.php:499, includes/admin/tools/views/html-admin-page-system-info.php:536, includes/admin/tools/views/html-admin-page-system-info.php:614, includes/admin/tools/views/html-admin-page-system-info.php:646, includes/admin/tools/views/html-admin-page-system-info.php:661, includes/admin/tools/views/html-admin-page-system-info.php:666, includes/admin/tools/views/html-admin-page-system-info.php:687, includes/admin/tools/views/html-admin-page-system-info.php:692
|
8465 |
msgid "Enabled"
|
8466 |
msgstr ""
|
8467 |
|
8468 |
-
#. undefined
|
8469 |
-
#. undefined
|
8470 |
-
#. undefined
|
8471 |
-
#. undefined
|
8472 |
-
#. undefined
|
8473 |
-
#. undefined
|
8474 |
-
#. undefined
|
8475 |
-
#. undefined
|
8476 |
-
#. undefined
|
8477 |
-
#. undefined
|
8478 |
-
#. undefined
|
8479 |
-
#. undefined
|
8480 |
-
#. undefined
|
8481 |
-
#. undefined
|
8482 |
-
#. undefined
|
8483 |
-
#. undefined
|
8484 |
-
#. undefined
|
8485 |
-
#. undefined
|
8486 |
-
#. undefined
|
8487 |
-
#. undefined
|
8488 |
-
#. undefined
|
8489 |
-
#. undefined
|
8490 |
-
#. undefined
|
8491 |
-
#. undefined
|
8492 |
-
#. undefined
|
8493 |
-
#. undefined
|
8494 |
-
#. undefined
|
8495 |
-
#. undefined
|
8496 |
-
#. undefined
|
8497 |
-
#. undefined
|
8498 |
-
#. undefined
|
8499 |
-
#. undefined
|
8500 |
-
#. undefined
|
8501 |
-
#. undefined
|
8502 |
-
#. undefined
|
8503 |
-
#. undefined
|
8504 |
-
#. undefined
|
8505 |
-
#. undefined
|
8506 |
-
#. undefined
|
8507 |
-
#. undefined
|
8508 |
-
#. undefined
|
8509 |
-
#. undefined
|
8510 |
-
#. undefined
|
8511 |
#: includes/gateways/offline-donations.php:323, includes/admin/emails/class-email-setting-field.php:166, includes/admin/emails/class-email-setting-field.php:176, includes/admin/forms/class-metabox-form-data.php:150, includes/admin/forms/class-metabox-form-data.php:292, includes/admin/forms/class-metabox-form-data.php:304, includes/admin/forms/class-metabox-form-data.php:329, includes/admin/forms/class-metabox-form-data.php:362, includes/admin/forms/class-metabox-form-data.php:429, includes/admin/forms/class-metabox-form-data.php:469, includes/admin/settings/class-settings-advanced.php:88, includes/admin/settings/class-settings-advanced.php:110, includes/admin/settings/class-settings-advanced.php:150, includes/admin/settings/class-settings-display.php:63, includes/admin/settings/class-settings-display.php:80, includes/admin/settings/class-settings-display.php:97, includes/admin/settings/class-settings-display.php:107, includes/admin/settings/class-settings-display.php:140, includes/admin/settings/class-settings-display.php:156, includes/admin/settings/class-settings-display.php:167, includes/admin/settings/class-settings-display.php:178, includes/admin/settings/class-settings-display.php:197, includes/admin/settings/class-settings-display.php:228, includes/admin/settings/class-settings-display.php:239, includes/admin/settings/class-settings-display.php:270, includes/admin/settings/class-settings-gateways.php:91, includes/admin/settings/class-settings-gateways.php:102, includes/admin/settings/class-settings-gateways.php:134, includes/admin/settings/class-settings-gateways.php:176, includes/admin/settings/class-settings-general.php:93, includes/admin/settings/class-settings-general.php:104, includes/admin/settings/class-settings-general.php:334, includes/admin/tools/import/class-give-import-donations.php:940, includes/admin/tools/import/class-give-import-donations.php:951, includes/admin/tools/import/class-give-import-donations.php:962, includes/admin/tools/views/html-admin-page-system-info.php:458, includes/admin/tools/views/html-admin-page-system-info.php:499, includes/admin/tools/views/html-admin-page-system-info.php:536, includes/admin/tools/views/html-admin-page-system-info.php:614, includes/admin/tools/views/html-admin-page-system-info.php:646, includes/admin/tools/views/html-admin-page-system-info.php:661, includes/admin/tools/views/html-admin-page-system-info.php:666, includes/admin/tools/views/html-admin-page-system-info.php:687, includes/admin/tools/views/html-admin-page-system-info.php:692
|
8512 |
msgid "Disabled"
|
8513 |
msgstr ""
|
@@ -8536,7 +7851,6 @@ msgstr ""
|
|
8536 |
msgid "On the memo line of the check, please indicate that the donation is for \"%s\""
|
8537 |
msgstr ""
|
8538 |
|
8539 |
-
#. undefined
|
8540 |
#: includes/gateways/offline-donations.php:378, includes/gateways/offline-donations.php:416
|
8541 |
msgid "Please mail your check to:"
|
8542 |
msgstr ""
|
@@ -8575,7 +7889,6 @@ msgstr ""
|
|
8575 |
msgid "IPN Error"
|
8576 |
msgstr ""
|
8577 |
|
8578 |
-
#. undefined
|
8579 |
#: includes/gateways/paypal-standard.php:180, includes/gateways/paypal-standard.php:187
|
8580 |
msgid "Invalid IPN verification response. IPN data: %s"
|
8581 |
msgstr ""
|
@@ -8610,7 +7923,6 @@ msgstr ""
|
|
8610 |
|
8611 |
#. translators: %s: Paypal transaction ID
|
8612 |
#. translators: %s: Paypal transaction id
|
8613 |
-
#. undefined
|
8614 |
#. translators: %s: Paypal transaction id
|
8615 |
#: includes/gateways/paypal-standard.php:340, tests/unit-tests/tests-payment-class.php:28, tests/unit-tests/tests-payments.php:48, tests/framework/helpers/class-helper-payment.php:203
|
8616 |
msgid "PayPal Transaction ID: %s"
|
@@ -8676,7 +7988,6 @@ msgstr ""
|
|
8676 |
msgid "This custom meta key deprecated. We are not using this meta key for storing payment meta but your custom meta data will be store because we added backward compatibility. Please change your logic because in future we can remove it."
|
8677 |
msgstr ""
|
8678 |
|
8679 |
-
#. undefined
|
8680 |
#: includes/payments/functions.php:534, includes/admin/payments/class-payments-table.php:297
|
8681 |
msgid "Pending"
|
8682 |
msgstr ""
|
@@ -8689,14 +8000,10 @@ msgstr ""
|
|
8689 |
msgid "Pre-Approved"
|
8690 |
msgstr ""
|
8691 |
|
8692 |
-
#. undefined
|
8693 |
#: includes/payments/functions.php:541, includes/admin/payments/class-payments-table.php:301
|
8694 |
msgid "Processing"
|
8695 |
msgstr ""
|
8696 |
|
8697 |
-
#. undefined
|
8698 |
-
#. undefined
|
8699 |
-
#. undefined
|
8700 |
#: includes/payments/functions.php:1504, includes/admin/donors/donor-actions.php:469, includes/admin/donors/donor-actions.php:523, includes/admin/donors/donor-actions.php:571
|
8701 |
msgid "System"
|
8702 |
msgstr ""
|
@@ -8705,16 +8012,10 @@ msgstr ""
|
|
8705 |
msgid "Delete this donation note."
|
8706 |
msgstr ""
|
8707 |
|
8708 |
-
#. undefined
|
8709 |
-
#. undefined
|
8710 |
-
#. undefined
|
8711 |
-
#. undefined
|
8712 |
-
#. undefined
|
8713 |
#: includes/payments/functions.php:1523, includes/admin/donors/class-donor-table.php:237, includes/admin/donors/class-donor-table.php:278, includes/admin/donors/class-donor-table.php:470, includes/admin/payments/class-payments-table.php:606, includes/admin/payments/class-payments-table.php:730
|
8714 |
msgid "Delete"
|
8715 |
msgstr ""
|
8716 |
|
8717 |
-
#. undefined
|
8718 |
#: includes/payments/functions.php:1747, includes/admin/forms/class-metabox-form-data.php:143
|
8719 |
msgid "Custom Amount"
|
8720 |
msgstr ""
|
@@ -8724,19 +8025,14 @@ msgctxt "custom donation dropdown item"
|
|
8724 |
msgid "Custom"
|
8725 |
msgstr ""
|
8726 |
|
8727 |
-
#. undefined
|
8728 |
#: includes/admin/donors/class-donor-table.php:174, includes/admin/reports/class-donor-reports-table.php:181
|
8729 |
msgid "Unnamed Donor"
|
8730 |
msgstr ""
|
8731 |
|
8732 |
-
#. undefined
|
8733 |
-
#. undefined
|
8734 |
-
#. undefined
|
8735 |
#: includes/admin/donors/class-donor-table.php:195, includes/admin/reports/class-donor-reports-table.php:218, includes/admin/reports/class-gateways-reports-table.php:139, includes/admin/tools/views/html-admin-page-exports.php:183
|
8736 |
msgid "Total Donated"
|
8737 |
msgstr ""
|
8738 |
|
8739 |
-
#. undefined
|
8740 |
#: includes/admin/donors/class-donor-table.php:196, includes/admin/tools/export/class-batch-export-forms.php:47
|
8741 |
msgid "Date Created"
|
8742 |
msgstr ""
|
@@ -8765,22 +8061,14 @@ msgstr ""
|
|
8765 |
msgid "Are you sure you want to delete the selected donor(s)?"
|
8766 |
msgstr ""
|
8767 |
|
8768 |
-
#. undefined
|
8769 |
#: includes/admin/donors/class-donor-table.php:459, includes/admin/donors/donors.php:1041
|
8770 |
msgid "Delete all associated donations and records?"
|
8771 |
msgstr ""
|
8772 |
|
8773 |
-
#. undefined
|
8774 |
-
#. undefined
|
8775 |
-
#. undefined
|
8776 |
#: includes/admin/donors/donor-actions.php:31, includes/admin/donors/donor-actions.php:144, includes/admin/donors/donor-actions.php:325, includes/admin/donors/donor-actions.php:418
|
8777 |
msgid "You do not have permission to edit this donor."
|
8778 |
msgstr ""
|
8779 |
|
8780 |
-
#. undefined
|
8781 |
-
#. undefined
|
8782 |
-
#. undefined
|
8783 |
-
#. undefined
|
8784 |
#: includes/admin/donors/donor-actions.php:45, includes/admin/donors/donor-actions.php:158, includes/admin/donors/donor-actions.php:241, includes/admin/donors/donor-actions.php:339, includes/admin/donors/donor-actions.php:615
|
8785 |
msgid "Cheatin’ uh?"
|
8786 |
msgstr ""
|
@@ -8797,7 +8085,6 @@ msgstr ""
|
|
8797 |
msgid "A note is required."
|
8798 |
msgstr ""
|
8799 |
|
8800 |
-
#. undefined
|
8801 |
#: includes/admin/donors/donor-actions.php:226, includes/admin/donors/donor-actions.php:599
|
8802 |
msgid "You do not have permission to delete donors."
|
8803 |
msgstr ""
|
@@ -8842,12 +8129,10 @@ msgstr ""
|
|
8842 |
msgid "Email address %1$s added by %2$s"
|
8843 |
msgstr ""
|
8844 |
|
8845 |
-
#. undefined
|
8846 |
#: includes/admin/donors/donor-actions.php:474, includes/admin/donors/donor-actions.php:572
|
8847 |
msgid "Email address %1$s set as primary by %2$s"
|
8848 |
msgstr ""
|
8849 |
|
8850 |
-
#. undefined
|
8851 |
#: includes/admin/donors/donor-actions.php:514, includes/admin/donors/donor-actions.php:561
|
8852 |
msgid "Nonce verification failed"
|
8853 |
msgstr ""
|
@@ -8864,23 +8149,18 @@ msgstr ""
|
|
8864 |
msgid "Donor Notes"
|
8865 |
msgstr ""
|
8866 |
|
8867 |
-
#. undefined
|
8868 |
#: includes/admin/donors/donor-functions.php:80, includes/admin/donors/donors.php:1063
|
8869 |
msgid "Delete Donor"
|
8870 |
msgstr ""
|
8871 |
|
8872 |
-
#. undefined
|
8873 |
-
#. undefined
|
8874 |
#: includes/admin/donors/donors.php:74, includes/admin/emails/class-email-notification-table.php:191, includes/admin/emails/class-email-notification-table.php:224
|
8875 |
msgid "Edit"
|
8876 |
msgstr ""
|
8877 |
|
8878 |
-
#. undefined
|
8879 |
#: includes/admin/donors/donors.php:75, includes/admin/donors/donors.php:755
|
8880 |
msgid "Remove"
|
8881 |
msgstr ""
|
8882 |
|
8883 |
-
#. undefined
|
8884 |
#: includes/admin/donors/donors.php:177, includes/admin/reports/class-donor-reports-table.php:145
|
8885 |
msgid "Search Donors"
|
8886 |
msgstr ""
|
@@ -8902,7 +8182,6 @@ msgstr ""
|
|
8902 |
msgid "Edit Donor"
|
8903 |
msgstr ""
|
8904 |
|
8905 |
-
#. undefined
|
8906 |
#: includes/admin/donors/donors.php:376, includes/admin/payments/view-payment-details.php:550
|
8907 |
msgid "Donor ID:"
|
8908 |
msgstr ""
|
@@ -8931,7 +8210,6 @@ msgstr ""
|
|
8931 |
msgid "View User Profile"
|
8932 |
msgstr ""
|
8933 |
|
8934 |
-
#. undefined
|
8935 |
#: includes/admin/donors/donors.php:440, includes/admin/payments/view-payment-details.php:602
|
8936 |
msgid "Company Name:"
|
8937 |
msgstr ""
|
@@ -8962,42 +8240,34 @@ msgstr ""
|
|
8962 |
msgid "Add Address"
|
8963 |
msgstr ""
|
8964 |
|
8965 |
-
#. undefined
|
8966 |
#: includes/admin/donors/donors.php:583, includes/admin/payments/view-payment-details.php:699
|
8967 |
msgid "Country:"
|
8968 |
msgstr ""
|
8969 |
|
8970 |
-
#. undefined
|
8971 |
#: includes/admin/donors/donors.php:594, includes/admin/payments/view-payment-details.php:709
|
8972 |
msgid "Select a country"
|
8973 |
msgstr ""
|
8974 |
|
8975 |
-
#. undefined
|
8976 |
#: includes/admin/donors/donors.php:602, includes/admin/payments/view-payment-details.php:719
|
8977 |
msgid "Address 1:"
|
8978 |
msgstr ""
|
8979 |
|
8980 |
-
#. undefined
|
8981 |
#: includes/admin/donors/donors.php:610, includes/admin/payments/view-payment-details.php:726
|
8982 |
msgid "Address 2:"
|
8983 |
msgstr ""
|
8984 |
|
8985 |
-
#. undefined
|
8986 |
#: includes/admin/donors/donors.php:619, includes/admin/payments/view-payment-details.php:733
|
8987 |
msgid "City:"
|
8988 |
msgstr ""
|
8989 |
|
8990 |
-
#. undefined
|
8991 |
#: includes/admin/donors/donors.php:632, includes/admin/payments/view-payment-details.php:744
|
8992 |
msgid "State / Province / County:"
|
8993 |
msgstr ""
|
8994 |
|
8995 |
-
#. undefined
|
8996 |
#: includes/admin/donors/donors.php:658, includes/admin/payments/view-payment-details.php:756
|
8997 |
msgid "Select a state"
|
8998 |
msgstr ""
|
8999 |
|
9000 |
-
#. undefined
|
9001 |
#: includes/admin/donors/donors.php:671, includes/admin/payments/view-payment-details.php:771
|
9002 |
msgid "Zip / Postal Code:"
|
9003 |
msgstr ""
|
@@ -9010,18 +8280,14 @@ msgstr ""
|
|
9010 |
msgid "Donor Emails"
|
9011 |
msgstr ""
|
9012 |
|
9013 |
-
#. undefined
|
9014 |
-
#. undefined
|
9015 |
#: includes/admin/donors/donors.php:725, includes/admin/donors/donors.php:802, includes/admin/donors/donors.php:860
|
9016 |
msgid "Actions"
|
9017 |
msgstr ""
|
9018 |
|
9019 |
-
#. undefined
|
9020 |
#: includes/admin/donors/donors.php:753, includes/admin/donors/donors.php:770
|
9021 |
msgid "Make Primary"
|
9022 |
msgstr ""
|
9023 |
|
9024 |
-
#. undefined
|
9025 |
#: includes/admin/donors/donors.php:772, includes/admin/emails/class-email-setting-field.php:315
|
9026 |
msgid "Add Email"
|
9027 |
msgstr ""
|
@@ -9034,10 +8300,6 @@ msgstr ""
|
|
9034 |
msgid "Recent Donations"
|
9035 |
msgstr ""
|
9036 |
|
9037 |
-
#. undefined
|
9038 |
-
#. undefined
|
9039 |
-
#. undefined
|
9040 |
-
#. undefined
|
9041 |
#: includes/admin/donors/donors.php:798, includes/admin/forms/class-metabox-form-data.php:195, includes/admin/tools/export/class-batch-export-forms.php:44, includes/admin/tools/export/class-export.php:80, templates/history-donations.php:50
|
9042 |
msgid "ID"
|
9043 |
msgstr ""
|
@@ -9097,7 +8359,6 @@ msgstr ""
|
|
9097 |
msgid "[%s] Your username and password"
|
9098 |
msgstr ""
|
9099 |
|
9100 |
-
#. undefined
|
9101 |
#: includes/admin/emails/class-donor-register-email.php:76, includes/admin/emails/class-new-donor-register-email.php:77
|
9102 |
msgid "Username: {username}"
|
9103 |
msgstr ""
|
@@ -9114,23 +8375,18 @@ msgstr ""
|
|
9114 |
msgid "Click Here to Login »"
|
9115 |
msgstr ""
|
9116 |
|
9117 |
-
#. undefined
|
9118 |
-
#. undefined
|
9119 |
#: includes/admin/emails/class-donor-register-email.php:101, includes/admin/emails/class-new-donor-register-email.php:36, includes/admin/emails/class-new-donor-register-email.php:98
|
9120 |
msgid "New User Registration"
|
9121 |
msgstr ""
|
9122 |
|
9123 |
-
#. undefined
|
9124 |
#: includes/admin/emails/class-donor-register-email.php:150, includes/admin/emails/class-new-donor-register-email.php:147
|
9125 |
msgid "No donor(s) found."
|
9126 |
msgstr ""
|
9127 |
|
9128 |
-
#. undefined
|
9129 |
#: includes/admin/emails/class-donor-register-email.php:154, includes/admin/emails/class-new-donor-register-email.php:151
|
9130 |
msgid "- Select a donor -"
|
9131 |
msgstr ""
|
9132 |
|
9133 |
-
#. undefined
|
9134 |
#: includes/admin/emails/class-donor-register-email.php:188, includes/admin/emails/class-new-donor-register-email.php:201
|
9135 |
msgid "Preview email with a donor:"
|
9136 |
msgstr ""
|
@@ -9151,8 +8407,6 @@ msgstr ""
|
|
9151 |
msgid "This notification is automatically toggled based on whether the email access is enabled or not."
|
9152 |
msgstr ""
|
9153 |
|
9154 |
-
#. undefined
|
9155 |
-
#. undefined
|
9156 |
#: includes/admin/emails/class-email-access-email.php:50, includes/admin/emails/class-new-offline-donation-email.php:58, includes/admin/emails/class-offline-donation-instruction-email.php:58
|
9157 |
msgid "Edit Setting"
|
9158 |
msgstr ""
|
@@ -9205,17 +8459,14 @@ msgstr ""
|
|
9205 |
msgid "Email Options"
|
9206 |
msgstr ""
|
9207 |
|
9208 |
-
#. undefined
|
9209 |
#: includes/admin/emails/class-email-notifications.php:137, includes/admin/settings/class-settings-email.php:77
|
9210 |
msgid "Choose your template from the available registered template types."
|
9211 |
msgstr ""
|
9212 |
|
9213 |
-
#. undefined
|
9214 |
#: includes/admin/emails/class-email-notifications.php:151, includes/admin/settings/class-settings-email.php:90
|
9215 |
msgid "The name which appears in the \"From\" field in all Give donation emails."
|
9216 |
msgstr ""
|
9217 |
|
9218 |
-
#. undefined
|
9219 |
#: includes/admin/emails/class-email-notifications.php:158, includes/admin/settings/class-settings-email.php:97
|
9220 |
msgid "Email address from which all Give emails are sent from. This will act as the \"from\" and \"reply-to\" email address."
|
9221 |
msgstr ""
|
@@ -9337,12 +8588,10 @@ msgstr ""
|
|
9337 |
msgid "Sent to designated recipient(s) for a new (pending) offline donation."
|
9338 |
msgstr ""
|
9339 |
|
9340 |
-
#. undefined
|
9341 |
#: includes/admin/emails/class-new-offline-donation-email.php:49, includes/admin/emails/class-offline-donation-instruction-email.php:49
|
9342 |
msgid "Offline"
|
9343 |
msgstr ""
|
9344 |
|
9345 |
-
#. undefined
|
9346 |
#: includes/admin/emails/class-new-offline-donation-email.php:56, includes/admin/emails/class-offline-donation-instruction-email.php:56
|
9347 |
msgid "This notification is automatically toggled based on whether the gateway is enabled or not."
|
9348 |
msgstr ""
|
@@ -9375,7 +8624,6 @@ msgstr ""
|
|
9375 |
msgid "Donation Form Options"
|
9376 |
msgstr ""
|
9377 |
|
9378 |
-
#. undefined
|
9379 |
#: includes/admin/forms/class-metabox-form-data.php:101, includes/admin/forms/class-metabox-form-data.php:229
|
9380 |
msgid "Donation Options"
|
9381 |
msgstr ""
|
@@ -9392,7 +8640,6 @@ msgstr ""
|
|
9392 |
msgid "Multi-level Donation"
|
9393 |
msgstr ""
|
9394 |
|
9395 |
-
#. undefined
|
9396 |
#: includes/admin/forms/class-metabox-form-data.php:113, includes/admin/forms/class-metabox-form-data.php:117
|
9397 |
msgid "Set Donation"
|
9398 |
msgstr ""
|
@@ -9449,13 +8696,10 @@ msgstr ""
|
|
9449 |
msgid "Text"
|
9450 |
msgstr ""
|
9451 |
|
9452 |
-
#. undefined
|
9453 |
-
#. undefined
|
9454 |
#: includes/admin/forms/class-metabox-form-data.php:219, includes/admin/settings/class-settings-gateways.php:293, includes/admin/tools/views/html-admin-page-system-info.php:116
|
9455 |
msgid "Default"
|
9456 |
msgstr ""
|
9457 |
|
9458 |
-
#. undefined
|
9459 |
#: includes/admin/forms/class-metabox-form-data.php:241, includes/admin/forms/class-metabox-form-data.php:337
|
9460 |
msgid "Form Display"
|
9461 |
msgstr ""
|
@@ -9480,22 +8724,18 @@ msgstr ""
|
|
9480 |
msgid "By default, the gateway for this form will inherit the global default gateway (set under Give > Settings > Payment Gateways). This option allows you to customize the default gateway for this form only."
|
9481 |
msgstr ""
|
9482 |
|
9483 |
-
#. undefined
|
9484 |
#: includes/admin/forms/class-metabox-form-data.php:283, includes/admin/settings/class-settings-display.php:101
|
9485 |
msgid "Company Donations"
|
9486 |
msgstr ""
|
9487 |
|
9488 |
-
#. undefined
|
9489 |
#: includes/admin/forms/class-metabox-form-data.php:284, includes/admin/settings/class-settings-display.php:102
|
9490 |
msgid "Do you want a Company field to appear after First Name and Last Name?"
|
9491 |
msgstr ""
|
9492 |
|
9493 |
-
#. undefined
|
9494 |
#: includes/admin/forms/class-metabox-form-data.php:290, includes/admin/settings/class-settings-display.php:108
|
9495 |
msgid "Required"
|
9496 |
msgstr ""
|
9497 |
|
9498 |
-
#. undefined
|
9499 |
#: includes/admin/forms/class-metabox-form-data.php:291, includes/admin/settings/class-settings-display.php:109
|
9500 |
msgid "Optional"
|
9501 |
msgstr ""
|
@@ -9508,7 +8748,6 @@ msgstr ""
|
|
9508 |
msgid "Do you want to allow non-logged-in users to make donations?"
|
9509 |
msgstr ""
|
9510 |
|
9511 |
-
#. undefined
|
9512 |
#: includes/admin/forms/class-metabox-form-data.php:308, includes/admin/forms/class-metabox-form-data.php:314
|
9513 |
msgid "Registration"
|
9514 |
msgstr ""
|
@@ -9521,7 +8760,6 @@ msgstr ""
|
|
9521 |
msgid "Registration + Login"
|
9522 |
msgstr ""
|
9523 |
|
9524 |
-
#. undefined
|
9525 |
#: includes/admin/forms/class-metabox-form-data.php:321, includes/admin/settings/class-settings-display.php:67
|
9526 |
msgid "Floating Labels"
|
9527 |
msgstr ""
|
@@ -9531,9 +8769,6 @@ msgstr ""
|
|
9531 |
msgid "Select the <a href=\"%s\" target=\"_blank\">floating labels</a> setting for this Give form. Be aware that if you have the \"Disable CSS\" option enabled, you will need to style the floating labels yourself."
|
9532 |
msgstr ""
|
9533 |
|
9534 |
-
#. undefined
|
9535 |
-
#. undefined
|
9536 |
-
#. undefined
|
9537 |
#: includes/admin/forms/class-metabox-form-data.php:350, includes/admin/forms/class-metabox-form-data.php:355, includes/admin/forms/class-metabox-form-data.php:394, includes/admin/forms/class-metabox-form-data.php:445
|
9538 |
msgid "Donation Goal"
|
9539 |
msgstr ""
|
@@ -9558,9 +8793,6 @@ msgstr ""
|
|
9558 |
msgid "Percentage Raised"
|
9559 |
msgstr ""
|
9560 |
|
9561 |
-
#. undefined
|
9562 |
-
#. undefined
|
9563 |
-
#. undefined
|
9564 |
#: includes/admin/forms/class-metabox-form-data.php:375, includes/admin/tools/export/class-batch-export-donors.php:208, includes/admin/tools/export/pdf-reports.php:113, includes/admin/tools/views/html-admin-page-exports.php:176
|
9565 |
msgid "Number of Donations"
|
9566 |
msgstr ""
|
@@ -9617,12 +8849,10 @@ msgstr ""
|
|
9617 |
msgid "Thank you to all our donors, we have met our fundraising goal."
|
9618 |
msgstr ""
|
9619 |
|
9620 |
-
#. undefined
|
9621 |
#: includes/admin/forms/class-metabox-form-data.php:457, includes/admin/forms/class-metabox-form-data.php:499
|
9622 |
msgid "Form Content"
|
9623 |
msgstr ""
|
9624 |
|
9625 |
-
#. undefined
|
9626 |
#: includes/admin/forms/class-metabox-form-data.php:463, includes/admin/shortcodes/shortcode-give-form.php:88
|
9627 |
msgid "Display Content"
|
9628 |
msgstr ""
|
@@ -9659,9 +8889,6 @@ msgstr ""
|
|
9659 |
msgid "Terms & Conditions"
|
9660 |
msgstr ""
|
9661 |
|
9662 |
-
#. undefined
|
9663 |
-
#. undefined
|
9664 |
-
#. undefined
|
9665 |
#: includes/admin/forms/class-metabox-form-data.php:516, includes/admin/forms/class-metabox-form-data.php:551, includes/admin/settings/class-settings-display.php:263, includes/admin/settings/class-settings-display.php:333
|
9666 |
msgid "Terms and Conditions"
|
9667 |
msgstr ""
|
@@ -9678,7 +8905,6 @@ msgstr ""
|
|
9678 |
msgid "The label shown next to the agree to terms check box. Add your own to customize or leave blank to use the default text placeholder."
|
9679 |
msgstr ""
|
9680 |
|
9681 |
-
#. undefined
|
9682 |
#: includes/admin/forms/class-metabox-form-data.php:541, includes/admin/settings/class-settings-display.php:283
|
9683 |
msgid "Agreement Text"
|
9684 |
msgstr ""
|
@@ -9695,14 +8921,6 @@ msgstr ""
|
|
9695 |
msgid "Goal"
|
9696 |
msgstr ""
|
9697 |
|
9698 |
-
#. undefined
|
9699 |
-
#. undefined
|
9700 |
-
#. undefined
|
9701 |
-
#. undefined
|
9702 |
-
#. undefined
|
9703 |
-
#. undefined
|
9704 |
-
#. undefined
|
9705 |
-
#. undefined
|
9706 |
#: includes/admin/forms/dashboard-columns.php:41, includes/admin/reports/class-earnings-report.php:38, includes/admin/reports/class-earnings-report.php:76, includes/admin/reports/class-form-reports-table.php:122, includes/admin/reports/graphing.php:179, includes/admin/reports/graphing.php:426, includes/admin/reports/reports.php:103, includes/admin/tools/export/class-batch-export-forms.php:57, includes/admin/tools/export/pdf-reports.php:274
|
9707 |
msgid "Income"
|
9708 |
msgstr ""
|
@@ -9723,10 +8941,6 @@ msgstr ""
|
|
9723 |
msgid "Give Form Shortcode:"
|
9724 |
msgstr ""
|
9725 |
|
9726 |
-
#. undefined
|
9727 |
-
#. undefined
|
9728 |
-
#. undefined
|
9729 |
-
#. undefined
|
9730 |
#: includes/admin/payments/actions.php:31, includes/admin/payments/actions.php:333, includes/admin/payments/actions.php:353, includes/admin/payments/actions.php:386, includes/admin/payments/actions.php:408
|
9731 |
msgid "You do not have permission to edit payments."
|
9732 |
msgstr ""
|
@@ -9743,7 +8957,6 @@ msgstr ""
|
|
9743 |
msgid "Error creating new donor."
|
9744 |
msgstr ""
|
9745 |
|
9746 |
-
#. undefined
|
9747 |
#: includes/admin/payments/class-payments-table.php:164, includes/admin/tools/logs/logs.php:195
|
9748 |
msgid "Search"
|
9749 |
msgstr ""
|
@@ -9756,7 +8969,6 @@ msgstr ""
|
|
9756 |
msgid "End Date"
|
9757 |
msgstr ""
|
9758 |
|
9759 |
-
#. undefined
|
9760 |
#: includes/admin/payments/class-payments-table.php:215, includes/admin/tools/logs/logs.php:243
|
9761 |
msgid "Apply"
|
9762 |
msgstr ""
|
@@ -9773,24 +8985,18 @@ msgstr ""
|
|
9773 |
msgid "Preapproval Pending"
|
9774 |
msgstr ""
|
9775 |
|
9776 |
-
#. undefined
|
9777 |
-
#. undefined
|
9778 |
#: includes/admin/payments/class-payments-table.php:400, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:140, templates/history-donations.php:56
|
9779 |
msgid "Details"
|
9780 |
msgstr ""
|
9781 |
|
9782 |
-
#. undefined
|
9783 |
#: includes/admin/payments/class-payments-table.php:460, includes/admin/tools/logs/class-sales-logs-list-table.php:103
|
9784 |
msgid "View Donation %s"
|
9785 |
msgstr ""
|
9786 |
|
9787 |
-
#. undefined
|
9788 |
-
#. undefined
|
9789 |
#: includes/admin/payments/class-payments-table.php:470, includes/admin/tools/logs/class-sales-logs-list-table.php:111, includes/admin/tools/logs/class-sales-logs-list-table.php:118
|
9790 |
msgid "by"
|
9791 |
msgstr ""
|
9792 |
|
9793 |
-
#. undefined
|
9794 |
#: includes/admin/payments/class-payments-table.php:480, includes/admin/tools/logs/class-sales-logs-list-table.php:80
|
9795 |
msgid "via"
|
9796 |
msgstr ""
|
@@ -9811,23 +9017,18 @@ msgstr ""
|
|
9811 |
msgid "Resend Donation %s Receipt"
|
9812 |
msgstr ""
|
9813 |
|
9814 |
-
#. undefined
|
9815 |
#: includes/admin/payments/class-payments-table.php:591, includes/admin/payments/view-payment-details.php:259
|
9816 |
msgid "Resend Receipt"
|
9817 |
msgstr ""
|
9818 |
|
9819 |
-
#. undefined
|
9820 |
#: includes/admin/payments/class-payments-table.php:606, includes/admin/payments/view-payment-details.php:144
|
9821 |
msgid "Delete Donation %s"
|
9822 |
msgstr ""
|
9823 |
|
9824 |
-
#. undefined
|
9825 |
-
#. undefined
|
9826 |
#: includes/admin/payments/class-payments-table.php:633, includes/admin/payments/view-payment-details.php:73, includes/admin/tools/logs/class-sales-logs-list-table.php:90
|
9827 |
msgid "This donation was made in test mode."
|
9828 |
msgstr ""
|
9829 |
|
9830 |
-
#. undefined
|
9831 |
#: includes/admin/payments/class-payments-table.php:634, includes/admin/tools/logs/class-sales-logs-list-table.php:91
|
9832 |
msgid "Test"
|
9833 |
msgstr ""
|
@@ -9836,10 +9037,6 @@ msgstr ""
|
|
9836 |
msgid "This donation was imported."
|
9837 |
msgstr ""
|
9838 |
|
9839 |
-
#. undefined
|
9840 |
-
#. undefined
|
9841 |
-
#. undefined
|
9842 |
-
#. undefined
|
9843 |
#: includes/admin/payments/class-payments-table.php:647, includes/admin/tools/class-settings-import.php:48, includes/admin/tools/class-settings-import.php:92, includes/admin/tools/import/class-give-import-core-settings.php:297, includes/admin/tools/import/class-give-import-donations.php:770
|
9844 |
msgid "Import"
|
9845 |
msgstr ""
|
@@ -9931,7 +9128,6 @@ msgstr ""
|
|
9931 |
msgid "Time:"
|
9932 |
msgstr ""
|
9933 |
|
9934 |
-
#. undefined
|
9935 |
#: includes/admin/payments/view-payment-details.php:206, includes/admin/payments/view-payment-details.php:468
|
9936 |
msgid "Total Donation:"
|
9937 |
msgstr ""
|
@@ -10060,18 +9256,14 @@ msgstr ""
|
|
10060 |
msgid "Donation Forms Report"
|
10061 |
msgstr ""
|
10062 |
|
10063 |
-
#. undefined
|
10064 |
#: includes/admin/reports/class-gateways-report.php:37, includes/admin/reports/reports.php:105
|
10065 |
msgid "Donation Methods"
|
10066 |
msgstr ""
|
10067 |
|
10068 |
-
#. undefined
|
10069 |
#: includes/admin/reports/class-gateways-report.php:87, includes/admin/settings/class-settings-gateways.php:254
|
10070 |
msgid "Gateways"
|
10071 |
msgstr ""
|
10072 |
|
10073 |
-
#. undefined
|
10074 |
-
#. undefined
|
10075 |
#: includes/admin/reports/class-gateways-reports-table.php:135, includes/admin/settings/class-settings-gateways.php:291, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:137
|
10076 |
msgid "Gateway"
|
10077 |
msgstr ""
|
@@ -10092,12 +9284,10 @@ msgstr ""
|
|
10092 |
msgid "Donation Methods Report"
|
10093 |
msgstr ""
|
10094 |
|
10095 |
-
#. undefined
|
10096 |
#: includes/admin/reports/graphing.php:207, includes/admin/reports/graphing.php:455
|
10097 |
msgid "Total income for period:"
|
10098 |
msgstr ""
|
10099 |
|
10100 |
-
#. undefined
|
10101 |
#: includes/admin/reports/graphing.php:211, includes/admin/reports/graphing.php:459
|
10102 |
msgid "Total donations for period:"
|
10103 |
msgstr ""
|
@@ -10147,8 +9337,6 @@ msgstr ""
|
|
10147 |
msgid "Refresh Report Data"
|
10148 |
msgstr ""
|
10149 |
|
10150 |
-
#. undefined
|
10151 |
-
#. undefined
|
10152 |
#: includes/admin/reports/reports.php:51, includes/admin/tools/class-settings-export.php:37, includes/admin/tools/class-settings-export.php:76
|
10153 |
msgid "Export"
|
10154 |
msgstr ""
|
@@ -10161,20 +9349,6 @@ msgstr ""
|
|
10161 |
msgid "Report Type"
|
10162 |
msgstr ""
|
10163 |
|
10164 |
-
#. undefined
|
10165 |
-
#. undefined
|
10166 |
-
#. undefined
|
10167 |
-
#. undefined
|
10168 |
-
#. undefined
|
10169 |
-
#. undefined
|
10170 |
-
#. undefined
|
10171 |
-
#. undefined
|
10172 |
-
#. undefined
|
10173 |
-
#. undefined
|
10174 |
-
#. undefined
|
10175 |
-
#. undefined
|
10176 |
-
#. undefined
|
10177 |
-
#. undefined
|
10178 |
#: includes/admin/reports/reports.php:200, includes/admin/shortcodes/shortcode-give-donation-grid.php:70, includes/admin/shortcodes/shortcode-give-donation-grid.php:80, includes/admin/shortcodes/shortcode-give-donation-grid.php:90, includes/admin/shortcodes/shortcode-give-form.php:70, includes/admin/shortcodes/shortcode-give-form.php:80, includes/admin/shortcodes/shortcode-give-goal.php:71, includes/admin/shortcodes/shortcode-give-goal.php:81, includes/admin/shortcodes/shortcode-give-receipt.php:50, includes/admin/shortcodes/shortcode-give-receipt.php:59, includes/admin/shortcodes/shortcode-give-receipt.php:68, includes/admin/shortcodes/shortcode-give-receipt.php:77, includes/admin/shortcodes/shortcode-give-receipt.php:86, includes/admin/shortcodes/shortcode-give-receipt.php:95, includes/admin/shortcodes/shortcode-give-totals.php:125
|
10179 |
msgid "Show"
|
10180 |
msgstr ""
|
@@ -10410,7 +9584,6 @@ msgstr ""
|
|
10410 |
msgid "This option will enable the billing details section for PayPal Standard which requires the donor's address to complete the donation. These fields are not required by PayPal to process the transaction, but you may have a need to collect the data."
|
10411 |
msgstr ""
|
10412 |
|
10413 |
-
#. undefined
|
10414 |
#: includes/admin/settings/class-settings-gateways.php:95, includes/admin/tools/views/html-admin-page-system-info.php:612
|
10415 |
msgid "PayPal IPN Verification"
|
10416 |
msgstr ""
|
@@ -10500,8 +9673,6 @@ msgstr ""
|
|
10500 |
msgid "General Options"
|
10501 |
msgstr ""
|
10502 |
|
10503 |
-
#. undefined
|
10504 |
-
#. undefined
|
10505 |
#: includes/admin/settings/class-settings-general.php:327, includes/admin/settings/class-settings-general.php:386, includes/admin/settings/class-settings-general.php:426
|
10506 |
msgid "Sequential Ordering"
|
10507 |
msgstr ""
|
@@ -10562,17 +9733,16 @@ msgstr ""
|
|
10562 |
msgid "Unlock all settings"
|
10563 |
msgstr ""
|
10564 |
|
10565 |
-
#. undefined
|
10566 |
#: includes/admin/shortcodes/abstract-shortcode-generator.php:92, includes/admin/shortcodes/abstract-shortcode-generator.php:97
|
10567 |
msgid "Insert Shortcode"
|
10568 |
msgstr ""
|
10569 |
|
10570 |
-
#: includes/admin/shortcodes/abstract-shortcode-generator.php:
|
10571 |
msgid "Some of the shortcode options are required."
|
10572 |
msgstr ""
|
10573 |
|
10574 |
#. translators: %s: option label
|
10575 |
-
#: includes/admin/shortcodes/abstract-shortcode-generator.php:
|
10576 |
msgid "The \"%s\" option is required."
|
10577 |
msgstr ""
|
10578 |
|
@@ -10588,14 +9758,10 @@ msgstr ""
|
|
10588 |
msgid "Okay"
|
10589 |
msgstr ""
|
10590 |
|
10591 |
-
#. undefined
|
10592 |
#: includes/admin/shortcodes/shortcode-give-donation-grid.php:26, includes/admin/shortcodes/shortcode-give-donation-grid.php:27
|
10593 |
msgid "Donation Form Grid"
|
10594 |
msgstr ""
|
10595 |
|
10596 |
-
#. undefined
|
10597 |
-
#. undefined
|
10598 |
-
#. undefined
|
10599 |
#: includes/admin/shortcodes/shortcode-give-donation-grid.php:42, includes/admin/shortcodes/shortcode-give-form.php:62, includes/admin/shortcodes/shortcode-give-goal.php:63, includes/admin/shortcodes/shortcode-give-receipt.php:43
|
10600 |
msgid "Optional settings"
|
10601 |
msgstr ""
|
@@ -10605,7 +9771,7 @@ msgid "Form IDs:"
|
|
10605 |
msgstr ""
|
10606 |
|
10607 |
#: includes/admin/shortcodes/shortcode-give-donation-grid.php:48
|
10608 |
-
msgid "
|
10609 |
msgstr ""
|
10610 |
|
10611 |
#: includes/admin/shortcodes/shortcode-give-donation-grid.php:54
|
@@ -10640,24 +9806,10 @@ msgstr ""
|
|
10640 |
msgid "Show Goal:"
|
10641 |
msgstr ""
|
10642 |
|
10643 |
-
#. undefined
|
10644 |
#: includes/admin/shortcodes/shortcode-give-donation-grid.php:68, includes/admin/shortcodes/shortcode-give-goal.php:79
|
10645 |
msgid "Do you want to display the goal's progress bar?"
|
10646 |
msgstr ""
|
10647 |
|
10648 |
-
#. undefined
|
10649 |
-
#. undefined
|
10650 |
-
#. undefined
|
10651 |
-
#. undefined
|
10652 |
-
#. undefined
|
10653 |
-
#. undefined
|
10654 |
-
#. undefined
|
10655 |
-
#. undefined
|
10656 |
-
#. undefined
|
10657 |
-
#. undefined
|
10658 |
-
#. undefined
|
10659 |
-
#. undefined
|
10660 |
-
#. undefined
|
10661 |
#: includes/admin/shortcodes/shortcode-give-donation-grid.php:71, includes/admin/shortcodes/shortcode-give-donation-grid.php:81, includes/admin/shortcodes/shortcode-give-donation-grid.php:91, includes/admin/shortcodes/shortcode-give-form.php:71, includes/admin/shortcodes/shortcode-give-form.php:81, includes/admin/shortcodes/shortcode-give-goal.php:72, includes/admin/shortcodes/shortcode-give-goal.php:82, includes/admin/shortcodes/shortcode-give-receipt.php:51, includes/admin/shortcodes/shortcode-give-receipt.php:60, includes/admin/shortcodes/shortcode-give-receipt.php:69, includes/admin/shortcodes/shortcode-give-receipt.php:78, includes/admin/shortcodes/shortcode-give-receipt.php:87, includes/admin/shortcodes/shortcode-give-receipt.php:96, includes/admin/shortcodes/shortcode-give-totals.php:126
|
10662 |
msgid "Hide"
|
10663 |
msgstr ""
|
@@ -10700,14 +9852,10 @@ msgstr ""
|
|
10700 |
msgid "<a href=\"%s\">Create</a> a new Donation Form."
|
10701 |
msgstr ""
|
10702 |
|
10703 |
-
#. undefined
|
10704 |
-
#. undefined
|
10705 |
-
#. undefined
|
10706 |
#: includes/admin/shortcodes/shortcode-give-form.php:53, includes/admin/shortcodes/shortcode-give-form.php:54, includes/admin/shortcodes/shortcode-give-goal.php:54, includes/admin/shortcodes/shortcode-give-goal.php:55
|
10707 |
msgid "Select a Donation Form"
|
10708 |
msgstr ""
|
10709 |
|
10710 |
-
#. undefined
|
10711 |
#: includes/admin/shortcodes/shortcode-give-form.php:56, includes/admin/shortcodes/shortcode-give-goal.php:57
|
10712 |
msgid "You must first select a Form!"
|
10713 |
msgstr ""
|
@@ -10752,7 +9900,6 @@ msgstr ""
|
|
10752 |
msgid "Button Text"
|
10753 |
msgstr ""
|
10754 |
|
10755 |
-
#. undefined
|
10756 |
#: includes/admin/shortcodes/shortcode-give-goal.php:26, includes/admin/shortcodes/shortcode-give-goal.php:27
|
10757 |
msgid "Donation Form Goal"
|
10758 |
msgstr ""
|
@@ -10765,7 +9912,6 @@ msgstr ""
|
|
10765 |
msgid "This text displays the amount of income raised compared to the goal."
|
10766 |
msgstr ""
|
10767 |
|
10768 |
-
#. undefined
|
10769 |
#: includes/admin/shortcodes/shortcode-give-goal.php:78, includes/admin/shortcodes/shortcode-give-totals.php:122
|
10770 |
msgid "Show Progress Bar:"
|
10771 |
msgstr ""
|
@@ -10814,8 +9960,6 @@ msgstr ""
|
|
10814 |
msgid "Show Payment ID:"
|
10815 |
msgstr ""
|
10816 |
|
10817 |
-
#. undefined
|
10818 |
-
#. undefined
|
10819 |
#: includes/admin/shortcodes/shortcode-give-register.php:24, includes/admin/shortcodes/shortcode-give-register.php:25, templates/shortcode-register.php:71
|
10820 |
msgid "Register"
|
10821 |
msgstr ""
|
@@ -10828,7 +9972,6 @@ msgstr ""
|
|
10828 |
msgid "Enter an URL here to redirect to after registering."
|
10829 |
msgstr ""
|
10830 |
|
10831 |
-
#. undefined
|
10832 |
#: includes/admin/shortcodes/shortcode-give-totals.php:26, includes/admin/shortcodes/shortcode-give-totals.php:27
|
10833 |
msgid "Give Totals"
|
10834 |
msgstr ""
|
@@ -10921,67 +10064,59 @@ msgstr ""
|
|
10921 |
msgid "Log"
|
10922 |
msgstr ""
|
10923 |
|
10924 |
-
|
10925 |
-
#. undefined
|
10926 |
-
#: includes/admin/tools/class-settings-logs.php:96, includes/admin/upgrades/class-give-updates.php:259, includes/admin/upgrades/class-give-updates.php:277
|
10927 |
msgid "Updates"
|
10928 |
msgstr ""
|
10929 |
|
10930 |
-
#: includes/admin/upgrades/class-give-updates.php:
|
10931 |
msgid "Give Updates Complete"
|
10932 |
msgstr ""
|
10933 |
|
10934 |
-
#: includes/admin/upgrades/class-give-updates.php:
|
10935 |
msgid "Give Updates"
|
10936 |
msgstr ""
|
10937 |
|
10938 |
-
|
10939 |
-
#. undefined
|
10940 |
-
#: includes/admin/upgrades/class-give-updates.php:614, includes/admin/upgrades/class-give-updates.php:622, includes/admin/upgrades/class-give-updates.php:673
|
10941 |
msgid "Database Update"
|
10942 |
msgstr ""
|
10943 |
|
10944 |
-
#: includes/admin/upgrades/class-give-updates.php:
|
10945 |
msgid "GiveWP needs to update your database to the latest version. The following process will make updates to your site's database. Please create a backup before proceeding."
|
10946 |
msgstr ""
|
10947 |
|
10948 |
-
#: includes/admin/upgrades/class-give-updates.php:
|
10949 |
msgid "Restart the updater"
|
10950 |
msgstr ""
|
10951 |
|
10952 |
-
|
10953 |
-
#. undefined
|
10954 |
-
#: includes/admin/upgrades/class-give-updates.php:623, includes/admin/upgrades/class-give-updates.php:814, includes/admin/upgrades/views/upgrades.php:57
|
10955 |
msgid "An unexpected issue occurred during the database update which caused it to stop automatically. Please contact support for assistance."
|
10956 |
msgstr ""
|
10957 |
|
10958 |
-
#: includes/admin/upgrades/class-give-updates.php:
|
10959 |
msgid "Give needs to upgrade the database but cannot because AJAX does not appear accessible. This could be because your website is password protected, in maintenance mode, or has a specific hosting configuration or plugin active that is preventing access."
|
10960 |
msgstr ""
|
10961 |
|
10962 |
-
#: includes/admin/upgrades/class-give-updates.php:
|
10963 |
msgid "Read More"
|
10964 |
msgstr ""
|
10965 |
|
10966 |
-
|
10967 |
-
#: includes/admin/upgrades/class-give-updates.php:660, includes/admin/upgrades/class-give-updates.php:821
|
10968 |
msgid "Give database updates completed successfully. Thank you for updating to the latest version!"
|
10969 |
msgstr ""
|
10970 |
|
10971 |
-
#: includes/admin/upgrades/class-give-updates.php:
|
10972 |
msgid "GiveWP needs to update your database to the latest version. The following process will make updates to your site's database. Please create a complete backup before proceeding."
|
10973 |
msgstr ""
|
10974 |
|
10975 |
-
#: includes/admin/upgrades/class-give-updates.php:
|
10976 |
msgid "Run the updater"
|
10977 |
msgstr ""
|
10978 |
|
10979 |
-
|
10980 |
-
#: includes/admin/upgrades/class-give-updates.php:808, includes/admin/upgrades/views/upgrades.php:59
|
10981 |
msgid "The updates have been paused."
|
10982 |
msgstr ""
|
10983 |
|
10984 |
-
#: includes/admin/upgrades/class-give-updates.php:
|
10985 |
msgid "Updates Completed."
|
10986 |
msgstr ""
|
10987 |
|
@@ -11005,7 +10140,6 @@ msgstr ""
|
|
11005 |
msgid "Imported donor and transactions successfully deleted."
|
11006 |
msgstr ""
|
11007 |
|
11008 |
-
#. undefined
|
11009 |
#: includes/admin/tools/data/class-give-tools-delete-test-donors.php:238, includes/admin/tools/data/class-give-tools-delete-test-transactions.php:129
|
11010 |
msgid "You do not have permission to delete test transactions."
|
11011 |
msgstr ""
|
@@ -11018,10 +10152,6 @@ msgstr ""
|
|
11018 |
msgid "Test transactions successfully deleted."
|
11019 |
msgstr ""
|
11020 |
|
11021 |
-
#. undefined
|
11022 |
-
#. undefined
|
11023 |
-
#. undefined
|
11024 |
-
#. undefined
|
11025 |
#: includes/admin/tools/data/class-give-tools-recount-all-stats.php:248, includes/admin/tools/data/class-give-tools-recount-donor-stats.php:204, includes/admin/tools/data/class-give-tools-recount-form-stats.php:204, includes/admin/tools/data/class-give-tools-recount-income.php:178, includes/admin/tools/data/class-give-tools-recount-single-donor-stats.php:160
|
11026 |
msgid "You do not have permission to recount stats."
|
11027 |
msgstr ""
|
@@ -11030,7 +10160,6 @@ msgstr ""
|
|
11030 |
msgid "Donation form income amounts and donation counts stats successfully recounted."
|
11031 |
msgstr ""
|
11032 |
|
11033 |
-
#. undefined
|
11034 |
#: includes/admin/tools/data/class-give-tools-recount-donor-stats.php:217, includes/admin/tools/data/class-give-tools-recount-single-donor-stats.php:205
|
11035 |
msgid "Donor stats have been successfully recounted."
|
11036 |
msgstr ""
|
@@ -11055,7 +10184,6 @@ msgstr ""
|
|
11055 |
msgid "Full Name"
|
11056 |
msgstr ""
|
11057 |
|
11058 |
-
#. undefined
|
11059 |
#: includes/admin/tools/export/class-batch-export-donors.php:205, includes/admin/tools/views/html-admin-page-exports.php:169
|
11060 |
msgid "Donor Created Date"
|
11061 |
msgstr ""
|
@@ -11080,7 +10208,6 @@ msgstr ""
|
|
11080 |
msgid "Excerpt"
|
11081 |
msgstr ""
|
11082 |
|
11083 |
-
#. undefined
|
11084 |
#: includes/admin/tools/export/class-batch-export-forms.php:54, includes/admin/tools/export/pdf-reports.php:101
|
11085 |
msgid "Price"
|
11086 |
msgstr ""
|
@@ -11089,8 +10216,6 @@ msgstr ""
|
|
11089 |
msgid "Featured Image"
|
11090 |
msgstr ""
|
11091 |
|
11092 |
-
#. undefined
|
11093 |
-
#. undefined
|
11094 |
#: includes/admin/tools/export/class-batch-export.php:145, includes/admin/tools/export/class-core-settings-export.php:80, includes/admin/tools/export/class-export.php:185
|
11095 |
msgid "You do not have permission to export data."
|
11096 |
msgstr ""
|
@@ -11136,12 +10261,10 @@ msgstr ""
|
|
11136 |
msgid "Filter by Date:"
|
11137 |
msgstr ""
|
11138 |
|
11139 |
-
#. undefined
|
11140 |
#: includes/admin/tools/export/class-give-export-donations.php:237, includes/admin/tools/views/html-admin-page-exports.php:113
|
11141 |
msgid "Start date"
|
11142 |
msgstr ""
|
11143 |
|
11144 |
-
#. undefined
|
11145 |
#: includes/admin/tools/export/class-give-export-donations.php:244, includes/admin/tools/views/html-admin-page-exports.php:120
|
11146 |
msgid "End date"
|
11147 |
msgstr ""
|
@@ -11154,9 +10277,6 @@ msgstr ""
|
|
11154 |
msgid "All Statuses"
|
11155 |
msgstr ""
|
11156 |
|
11157 |
-
#. undefined
|
11158 |
-
#. undefined
|
11159 |
-
#. undefined
|
11160 |
#: includes/admin/tools/export/class-give-export-donations.php:286, includes/admin/tools/views/html-admin-page-exports.php:54, includes/admin/tools/views/html-admin-page-exports.php:93, includes/admin/tools/views/html-admin-page-exports.php:130
|
11161 |
msgid "Generate CSV"
|
11162 |
msgstr ""
|
@@ -11177,28 +10297,22 @@ msgstr ""
|
|
11177 |
msgid "Batch Processing Complete"
|
11178 |
msgstr ""
|
11179 |
|
11180 |
-
#. undefined
|
11181 |
#: includes/admin/tools/export/give-export-donations-exporter.php:170, includes/admin/tools/export/give-export-donations-functions.php:257
|
11182 |
msgid "Donation Number"
|
11183 |
msgstr ""
|
11184 |
|
11185 |
-
#. undefined
|
11186 |
#: includes/admin/tools/export/give-export-donations-exporter.php:193, includes/admin/tools/export/give-export-donations-functions.php:268
|
11187 |
msgid "Donation Total"
|
11188 |
msgstr ""
|
11189 |
|
11190 |
-
#. undefined
|
11191 |
-
#. undefined
|
11192 |
#: includes/admin/tools/export/give-export-donations-exporter.php:196, includes/admin/tools/export/give-export-donations-functions.php:276, includes/admin/tools/views/html-admin-page-system-info.php:539
|
11193 |
msgid "Currency Code"
|
11194 |
msgstr ""
|
11195 |
|
11196 |
-
#. undefined
|
11197 |
#: includes/admin/tools/export/give-export-donations-exporter.php:199, includes/admin/tools/export/give-export-donations-functions.php:284
|
11198 |
msgid "Currency Symbol"
|
11199 |
msgstr ""
|
11200 |
|
11201 |
-
#. undefined
|
11202 |
#: includes/admin/tools/export/give-export-donations-exporter.php:205, includes/admin/tools/export/give-export-donations-functions.php:316
|
11203 |
msgid "Payment Gateway"
|
11204 |
msgstr ""
|
@@ -11215,12 +10329,10 @@ msgstr ""
|
|
11215 |
msgid "Level Title"
|
11216 |
msgstr ""
|
11217 |
|
11218 |
-
#. undefined
|
11219 |
#: includes/admin/tools/export/give-export-donations-exporter.php:223, includes/admin/tools/export/give-export-donations-functions.php:308
|
11220 |
msgid "Donation Time"
|
11221 |
msgstr ""
|
11222 |
|
11223 |
-
#. undefined
|
11224 |
#: includes/admin/tools/export/give-export-donations-exporter.php:232, includes/admin/tools/export/give-export-donations-functions.php:453
|
11225 |
msgid "Donor IP Address"
|
11226 |
msgstr ""
|
@@ -11295,7 +10407,6 @@ msgstr ""
|
|
11295 |
msgid "%1$s to %2$s"
|
11296 |
msgstr ""
|
11297 |
|
11298 |
-
#. undefined
|
11299 |
#: includes/admin/tools/export/pdf-reports.php:74, includes/admin/tools/export/pdf-reports.php:86
|
11300 |
msgid "Donation report for the current year for all forms"
|
11301 |
msgstr ""
|
@@ -11392,7 +10503,6 @@ msgstr ""
|
|
11392 |
msgid "View Settings"
|
11393 |
msgstr ""
|
11394 |
|
11395 |
-
#. undefined
|
11396 |
#: includes/admin/tools/import/class-give-import-core-settings.php:265, includes/admin/tools/import/class-give-import-donations.php:390
|
11397 |
msgid "Importing"
|
11398 |
msgstr ""
|
@@ -11405,7 +10515,6 @@ msgstr ""
|
|
11405 |
msgid "Upload JSON file"
|
11406 |
msgstr ""
|
11407 |
|
11408 |
-
#. undefined
|
11409 |
#: includes/admin/tools/import/class-give-import-core-settings.php:300, includes/admin/tools/import/class-give-import-donations.php:773
|
11410 |
msgid "Done!"
|
11411 |
msgstr ""
|
@@ -11442,8 +10551,6 @@ msgstr ""
|
|
11442 |
msgid "Replace"
|
11443 |
msgstr ""
|
11444 |
|
11445 |
-
#. undefined
|
11446 |
-
#. undefined
|
11447 |
#: includes/admin/tools/import/class-give-import-core-settings.php:398, includes/admin/tools/import/class-give-import-donations.php:209, includes/admin/tools/views/html-admin-page-data.php:76
|
11448 |
msgid "Submit"
|
11449 |
msgstr ""
|
@@ -11452,22 +10559,18 @@ msgstr ""
|
|
11452 |
msgid "Please upload a valid JSON settings file."
|
11453 |
msgstr ""
|
11454 |
|
11455 |
-
#. undefined
|
11456 |
#: includes/admin/tools/import/class-give-import-donations.php:250, includes/admin/tools/import/class-give-import-donations.php:268
|
11457 |
msgid "%s duplicate %s detected"
|
11458 |
msgstr ""
|
11459 |
|
11460 |
-
#. undefined
|
11461 |
#: includes/admin/tools/import/class-give-import-donations.php:251, includes/admin/tools/import/class-give-import-donations.php:269
|
11462 |
msgid "%s duplicate %s will be detected"
|
11463 |
msgstr ""
|
11464 |
|
11465 |
-
#. undefined
|
11466 |
#: includes/admin/tools/import/class-give-import-donations.php:252, includes/admin/tools/import/class-give-import-donations.php:258
|
11467 |
msgid "donor"
|
11468 |
msgstr ""
|
11469 |
|
11470 |
-
#. undefined
|
11471 |
#: includes/admin/tools/import/class-give-import-donations.php:253, includes/admin/tools/import/class-give-import-donations.php:259
|
11472 |
msgid "donors"
|
11473 |
msgstr ""
|
@@ -11496,12 +10599,10 @@ msgstr ""
|
|
11496 |
msgid "forms"
|
11497 |
msgstr ""
|
11498 |
|
11499 |
-
#. undefined
|
11500 |
#: includes/admin/tools/import/class-give-import-donations.php:270, includes/admin/tools/import/class-give-import-donations.php:276
|
11501 |
msgid "donation"
|
11502 |
msgstr ""
|
11503 |
|
11504 |
-
#. undefined
|
11505 |
#: includes/admin/tools/import/class-give-import-donations.php:271, includes/admin/tools/import/class-give-import-donations.php:277
|
11506 |
msgid "donations"
|
11507 |
msgstr ""
|
@@ -11672,14 +10773,10 @@ msgstr ""
|
|
11672 |
msgid "Determine how many rows you would like to import per cycle."
|
11673 |
msgstr ""
|
11674 |
|
11675 |
-
#. undefined
|
11676 |
#: includes/admin/tools/import/class-give-import-donations.php:1050, includes/admin/tools/import/class-give-import-donations.php:1054
|
11677 |
msgid "Please upload or provide a valid CSV file."
|
11678 |
msgstr ""
|
11679 |
|
11680 |
-
#. undefined
|
11681 |
-
#. undefined
|
11682 |
-
#. undefined
|
11683 |
#: includes/admin/tools/logs/class-api-requests-logs-list-table.php:94, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:135, includes/admin/tools/logs/class-sales-logs-list-table.php:139, includes/admin/tools/logs/class-update-logs-list-table.php:79
|
11684 |
msgid "Log ID"
|
11685 |
msgstr ""
|
@@ -11792,7 +10889,6 @@ msgstr ""
|
|
11792 |
msgid "Recalculates the lifetime value and donation counts for all donors."
|
11793 |
msgstr ""
|
11794 |
|
11795 |
-
#. undefined
|
11796 |
#: includes/admin/tools/views/html-admin-page-data.php:95, includes/admin/tools/views/html-admin-page-data.php:96
|
11797 |
msgid "Deletes"
|
11798 |
msgstr ""
|
@@ -12017,7 +11113,6 @@ msgstr ""
|
|
12017 |
msgid "The page set to display as your front page."
|
12018 |
msgstr ""
|
12019 |
|
12020 |
-
#. undefined
|
12021 |
#: includes/admin/tools/views/html-admin-page-system-info.php:131, includes/admin/tools/views/html-admin-page-system-info.php:136
|
12022 |
msgid "Unset"
|
12023 |
msgstr ""
|
@@ -12279,12 +11374,10 @@ msgstr ""
|
|
12279 |
msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider."
|
12280 |
msgstr ""
|
12281 |
|
12282 |
-
#. undefined
|
12283 |
#: includes/admin/tools/views/html-admin-page-system-info.php:398, includes/admin/tools/views/html-admin-page-system-info.php:416
|
12284 |
msgid "Error: %s"
|
12285 |
msgstr ""
|
12286 |
|
12287 |
-
#. undefined
|
12288 |
#: includes/admin/tools/views/html-admin-page-system-info.php:400, includes/admin/tools/views/html-admin-page-system-info.php:418
|
12289 |
msgid "Status code: %s"
|
12290 |
msgstr ""
|
@@ -12313,18 +11406,15 @@ msgstr ""
|
|
12313 |
msgid "The version of Give installed on your site."
|
12314 |
msgstr ""
|
12315 |
|
12316 |
-
#. undefined
|
12317 |
#: includes/admin/tools/views/html-admin-page-system-info.php:456, includes/admin/tools/views/html-admin-page-system-info.php:497
|
12318 |
msgid "Give Cache"
|
12319 |
msgstr ""
|
12320 |
|
12321 |
-
#. undefined
|
12322 |
#: includes/admin/tools/views/html-admin-page-system-info.php:457, includes/admin/tools/views/html-admin-page-system-info.php:498
|
12323 |
msgid "Whether cache is enabled in Give settings."
|
12324 |
msgstr ""
|
12325 |
|
12326 |
-
|
12327 |
-
#: includes/admin/tools/views/html-admin-page-system-info.php:461, includes/admin/upgrades/views/upgrades.php:39
|
12328 |
msgid "Database Updates"
|
12329 |
msgstr ""
|
12330 |
|
@@ -12524,35 +11614,22 @@ msgstr ""
|
|
12524 |
msgid "Active Give Add-ons"
|
12525 |
msgstr ""
|
12526 |
|
12527 |
-
#. undefined
|
12528 |
-
#. undefined
|
12529 |
-
#. undefined
|
12530 |
-
#. undefined
|
12531 |
#: includes/admin/tools/views/html-admin-page-system-info.php:719, includes/admin/tools/views/html-admin-page-system-info.php:784, includes/admin/tools/views/html-admin-page-system-info.php:831, includes/admin/tools/views/html-admin-page-system-info.php:879, includes/admin/upgrades/views/plugins-update-section.php:22
|
12532 |
msgid "Visit plugin homepage"
|
12533 |
msgstr ""
|
12534 |
|
12535 |
-
#. undefined
|
12536 |
-
#. undefined
|
12537 |
-
#. undefined
|
12538 |
#: includes/admin/tools/views/html-admin-page-system-info.php:729, includes/admin/tools/views/html-admin-page-system-info.php:794, includes/admin/tools/views/html-admin-page-system-info.php:841, includes/admin/upgrades/views/plugins-update-section.php:33
|
12539 |
msgid "Visit author homepage"
|
12540 |
msgstr ""
|
12541 |
|
12542 |
-
#. undefined
|
12543 |
#: includes/admin/tools/views/html-admin-page-system-info.php:740, includes/admin/upgrades/views/plugins-update-section.php:42
|
12544 |
msgid "Licensed"
|
12545 |
msgstr ""
|
12546 |
|
12547 |
-
#. undefined
|
12548 |
#: includes/admin/tools/views/html-admin-page-system-info.php:742, includes/admin/upgrades/views/plugins-update-section.php:42
|
12549 |
msgid "Unlicensed"
|
12550 |
msgstr ""
|
12551 |
|
12552 |
-
#. undefined
|
12553 |
-
#. undefined
|
12554 |
-
#. undefined
|
12555 |
-
#. undefined
|
12556 |
#: includes/admin/tools/views/html-admin-page-system-info.php:746, includes/admin/tools/views/html-admin-page-system-info.php:802, includes/admin/tools/views/html-admin-page-system-info.php:849, includes/admin/tools/views/html-admin-page-system-info.php:898, includes/admin/upgrades/views/plugins-update-section.php:46
|
12557 |
msgctxt "by author"
|
12558 |
msgid "by %s"
|
@@ -12646,7 +11723,7 @@ msgstr ""
|
|
12646 |
msgid "Give - Updates"
|
12647 |
msgstr ""
|
12648 |
|
12649 |
-
#: includes/admin/upgrades/views/upgrades.php:
|
12650 |
msgid "Give regularly receives new features, bug fixes, and enhancements. It is important to always stay up-to-date with latest version of Give core and its add-ons. Please create a backup of your site before updating. To update add-ons be sure your <a href=\"%1$s\">license keys</a> are activated."
|
12651 |
msgstr ""
|
12652 |
|
@@ -12678,11 +11755,11 @@ msgstr ""
|
|
12678 |
msgid "Update %s of %s"
|
12679 |
msgstr ""
|
12680 |
|
12681 |
-
#: includes/admin/upgrades/views/upgrades.php:
|
12682 |
msgid "Add-on Updates"
|
12683 |
msgstr ""
|
12684 |
|
12685 |
-
#: includes/admin/upgrades/views/upgrades.php:
|
12686 |
msgid "There is %1$d Give addon that needs to be updated. <a href=\"%2$s\">Update now</a>"
|
12687 |
msgid_plural "There are %1$d Give addons that need to be updated. <a href=\"%2$s\">Update now</a>"
|
12688 |
msgstr[0] ""
|
@@ -12752,8 +11829,6 @@ msgstr ""
|
|
12752 |
msgid "You are already logged in to the site. <a href=\"%s\">Click here</a> to logout."
|
12753 |
msgstr ""
|
12754 |
|
12755 |
-
#. undefined
|
12756 |
-
#. undefined
|
12757 |
#: templates/shortcode-profile-editor.php:28, templates/shortcode-profile-editor.php:225, templates/shortcode-profile-editor.php:231
|
12758 |
msgid "Success:"
|
12759 |
msgstr ""
|
@@ -12798,7 +11873,6 @@ msgstr ""
|
|
12798 |
msgid "Your profile and password has been updated."
|
12799 |
msgstr ""
|
12800 |
|
12801 |
-
#. undefined
|
12802 |
#: templates/shortcode-profile-editor.php:226, templates/shortcode-profile-editor.php:232
|
12803 |
msgid "Login with your new credentials."
|
12804 |
msgstr ""
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
|
|
|
18 |
#: give.php:370, give.php:383
|
19 |
msgid "Cheatin’ huh?"
|
20 |
msgstr ""
|
51 |
msgid "WordPress user #%d is connected to #%d"
|
52 |
msgstr ""
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
#: includes/ajax-functions.php:216, includes/country-functions.php:474, includes/country-functions.php:522, includes/country-functions.php:770, includes/import-functions.php:441, includes/forms/template.php:929, includes/admin/tools/export/class-batch-export-donors.php:197, includes/admin/tools/export/give-export-donations-exporter.php:188
|
55 |
msgid "State"
|
56 |
msgstr ""
|
59 |
msgid "All Levels"
|
60 |
msgstr ""
|
61 |
|
|
|
|
|
|
|
62 |
#: includes/ajax-functions.php:621, includes/admin/payments/view-payment-details.php:441, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:71, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:73
|
63 |
msgid "n/a"
|
64 |
msgstr ""
|
65 |
|
|
|
66 |
#: includes/ajax-functions.php:685, includes/login-register.php:388
|
67 |
msgid "Unable to send email. Please try again."
|
68 |
msgstr ""
|
69 |
|
|
|
|
|
70 |
#: includes/ajax-functions.php:693, includes/class-give-scripts.php:365, templates/email-login-form.php:23
|
71 |
msgid "Please check your email and click on the link to access your complete donation history."
|
72 |
msgstr ""
|
73 |
|
|
|
|
|
74 |
#: includes/ajax-functions.php:704, templates/email-login-form.php:31, templates/history-donations.php:33
|
75 |
msgid "Too many access email requests detected. Please wait %s before requesting a new donation history access link."
|
76 |
msgstr ""
|
77 |
|
|
|
|
|
78 |
#: includes/ajax-functions.php:705, templates/email-login-form.php:32, templates/history-donations.php:34
|
79 |
msgid "%s minute"
|
80 |
msgid_plural "%s minutes"
|
89 |
msgid "Do not pass empty action to generate cache key."
|
90 |
msgstr ""
|
91 |
|
|
|
|
|
92 |
#: includes/class-give-cache.php:205, includes/class-give-cache.php:246, includes/class-give-cache.php:295
|
93 |
msgid "Cache key format should be give_cache_*"
|
94 |
msgstr ""
|
105 |
msgid "Success Page: "
|
106 |
msgstr ""
|
107 |
|
|
|
|
|
|
|
108 |
#: includes/class-give-cli-commands.php:121, includes/class-give-cli-commands.php:122, includes/class-give-cli-commands.php:123, includes/class-give-cli-commands.php:139
|
109 |
msgid "Not Set"
|
110 |
msgstr ""
|
149 |
msgid "Test Mode: "
|
150 |
msgstr ""
|
151 |
|
|
|
|
|
152 |
#: includes/class-give-cli-commands.php:138, includes/forms/widget.php:181, includes/admin/tools/views/html-admin-page-system-info.php:938
|
153 |
msgid "Yes"
|
154 |
msgstr ""
|
155 |
|
|
|
|
|
156 |
#: includes/class-give-cli-commands.php:138, includes/forms/widget.php:182, includes/admin/tools/views/html-admin-page-system-info.php:938
|
157 |
msgid "No"
|
158 |
msgstr ""
|
169 |
msgid "Not any payment gateways found"
|
170 |
msgstr ""
|
171 |
|
|
|
|
|
|
|
|
|
|
|
172 |
#: includes/class-give-cli-commands.php:216, includes/class-give-html-elements.php:151, includes/post-types.php:63, includes/admin/shortcodes/shortcode-give-form.php:57, includes/admin/shortcodes/shortcode-give-goal.php:58, includes/admin/tools/export/pdf-reports.php:189
|
173 |
msgid "No forms found."
|
174 |
msgstr ""
|
197 |
msgid "%1$d donors created in %2$d seconds"
|
198 |
msgstr ""
|
199 |
|
|
|
|
|
|
|
200 |
#: includes/class-give-cli-commands.php:470, includes/class-give-html-elements.php:213, includes/admin/class-blank-slate.php:293, includes/api/class-give-api.php:985
|
201 |
msgid "No donors found."
|
202 |
msgstr ""
|
205 |
msgid "s_no"
|
206 |
msgstr ""
|
207 |
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
#: includes/class-give-cli-commands.php:618, includes/class-give-html-elements.php:70, includes/post-types.php:118, includes/admin/class-blank-slate.php:273, includes/admin/class-blank-slate.php:277, includes/emails/template.php:172, includes/admin/donors/donors.php:845
|
209 |
msgid "No donations found."
|
210 |
msgstr ""
|
307 |
msgid "Give Donors Gravatars"
|
308 |
msgstr ""
|
309 |
|
|
|
310 |
#: includes/class-give-gravatars.php:544, includes/forms/widget.php:140
|
311 |
msgid "Title:"
|
312 |
msgstr ""
|
315 |
msgid "Select a donation"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: includes/class-give-html-elements.php:112, includes/post-types.php:60, includes/admin/shortcodes/shortcode-give-donation-grid.php:49, includes/admin/tools/export/class-give-export-donations.php:216
|
|
|
|
|
319 |
msgid "All Forms"
|
320 |
msgstr ""
|
321 |
|
|
|
|
|
|
|
|
|
|
|
322 |
#: includes/class-give-html-elements.php:147, includes/forms/widget.php:151, includes/admin/payments/class-payments-table.php:484, includes/admin/reports/class-form-reports-table.php:84, includes/admin/shortcodes/abstract-shortcode-generator.php:300, includes/admin/tools/logs/class-sales-logs-list-table.php:75
|
323 |
msgid "Untitled (#%s)"
|
324 |
msgstr ""
|
327 |
msgid "Select a Donor"
|
328 |
msgstr ""
|
329 |
|
|
|
330 |
#: includes/class-give-html-elements.php:208, includes/admin/tools/logs/class-sales-logs-list-table.php:119
|
331 |
msgid "No donor attached"
|
332 |
msgstr ""
|
333 |
|
|
|
334 |
#: includes/class-give-html-elements.php:274, includes/post-types.php:158
|
335 |
msgid "All Categories"
|
336 |
msgstr ""
|
337 |
|
|
|
338 |
#: includes/class-give-html-elements.php:308, includes/post-types.php:192
|
339 |
msgid "All Tags"
|
340 |
msgstr ""
|
341 |
|
|
|
342 |
#: includes/class-give-html-elements.php:410, includes/admin/payments/class-payments-table.php:289
|
343 |
msgid "All"
|
344 |
msgstr ""
|
345 |
|
|
|
|
|
|
|
346 |
#: includes/class-give-html-elements.php:411, includes/forms/widget.php:196, includes/admin/forms/class-metabox-form-data.php:313, includes/admin/payments/view-payment-details.php:455
|
347 |
msgid "None"
|
348 |
msgstr ""
|
359 |
msgid "Add-on Licenses"
|
360 |
msgstr ""
|
361 |
|
|
|
362 |
#: includes/class-give-license-handler.php:593, includes/class-give-license-handler.php:682
|
363 |
msgid "You have invalid or expired license keys for one or more Give Add-ons. Please go to the <a href=\"%s\">licenses page</a> to correct this issue."
|
364 |
msgstr ""
|
367 |
msgid "Your Give add-on license expired for payment <a href=\"%1$s\" target=\"_blank\">#%2$d</a>. <a href=\"%3$s\" target=\"_blank\">Click to renew an existing license</a> or %4$s."
|
368 |
msgstr ""
|
369 |
|
|
|
370 |
#: includes/class-give-license-handler.php:635, includes/class-give-license-handler.php:654
|
371 |
msgid "Click here if already renewed"
|
372 |
msgstr ""
|
375 |
msgid "Your Give add-on license will expire in %1$s for payment <a href=\"%2$s\" target=\"_blank\">#%3$d</a>. <a href=\"%4$s\" target=\"_blank\">Click to renew an existing license</a> or %5$s."
|
376 |
msgstr ""
|
377 |
|
|
|
|
|
|
|
|
|
|
|
|
|
378 |
#: includes/class-give-license-handler.php:850, includes/api/class-give-api.php:1822, includes/forms/functions.php:319, includes/gateways/manual.php:38, includes/admin/donors/donor-actions.php:436, includes/admin/tools/export/export-actions.php:26, includes/admin/tools/export/pdf-reports.php:35
|
379 |
msgid "Nonce verification failed."
|
380 |
msgstr ""
|
381 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
#: includes/class-give-license-handler.php:850, includes/class-notices.php:576, includes/formatting.php:680, includes/admin/EDD_SL_Plugin_Updater.php:396, includes/api/class-give-api.php:1822, includes/api/class-give-api.php:1828, includes/api/class-give-api.php:1843, includes/api/class-give-api.php:1848, includes/forms/functions.php:319, includes/gateways/manual.php:38, includes/admin/donors/donor-actions.php:31, includes/admin/donors/donor-actions.php:45, includes/admin/donors/donor-actions.php:144, includes/admin/donors/donor-actions.php:158, includes/admin/donors/donor-actions.php:226, includes/admin/donors/donor-actions.php:241, includes/admin/donors/donor-actions.php:325, includes/admin/donors/donor-actions.php:339, includes/admin/donors/donor-actions.php:418, includes/admin/donors/donor-actions.php:514, includes/admin/donors/donor-actions.php:561, includes/admin/donors/donor-actions.php:599, includes/admin/donors/donor-actions.php:615, includes/admin/emails/class-donation-receipt-email.php:300, includes/admin/forms/dashboard-columns.php:255, includes/admin/payments/actions.php:31, includes/admin/payments/actions.php:85, includes/admin/payments/actions.php:98, includes/admin/payments/actions.php:333, includes/admin/payments/actions.php:353, includes/admin/payments/actions.php:386, includes/admin/payments/actions.php:408, includes/admin/payments/view-payment-details.php:19, includes/admin/payments/view-payment-details.php:32, includes/admin/payments/view-payment-details.php:42, includes/admin/reports/reports.php:143, includes/admin/upgrades/upgrade-functions.php:371, includes/admin/tools/data/class-give-tools-delete-import-donors.php:268, includes/admin/tools/data/class-give-tools-delete-test-donors.php:239, includes/admin/tools/data/class-give-tools-delete-test-transactions.php:129, includes/admin/tools/data/class-give-tools-recount-all-stats.php:248, includes/admin/tools/data/class-give-tools-recount-donor-stats.php:204, includes/admin/tools/data/class-give-tools-recount-form-stats.php:204, includes/admin/tools/data/class-give-tools-recount-income.php:178, includes/admin/tools/data/class-give-tools-recount-single-donor-stats.php:160, includes/admin/tools/data/class-give-tools-reset-stats.php:198, includes/admin/tools/export/class-batch-export.php:145, includes/admin/tools/export/class-core-settings-export.php:81, includes/admin/tools/export/class-export.php:185, includes/admin/tools/export/export-actions.php:26, includes/admin/tools/export/pdf-reports.php:31, includes/admin/tools/export/pdf-reports.php:35, includes/admin/tools/export/pdf-reports.php:39, includes/admin/tools/logs/class-api-requests-logs-list-table.php:154, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:136
|
383 |
msgid "Error"
|
384 |
msgstr ""
|
385 |
|
|
|
386 |
#: includes/class-give-logging.php:98, includes/admin/tools/class-settings-logs.php:37
|
387 |
msgid "Logs"
|
388 |
msgstr ""
|
443 |
msgid "Ok"
|
444 |
msgstr ""
|
445 |
|
|
|
|
|
|
|
|
|
|
|
|
|
446 |
#: includes/class-give-scripts.php:187, includes/forms/template.php:1308, includes/admin/donors/class-donor-table.php:469, includes/admin/donors/donors.php:460, includes/admin/donors/donors.php:684, includes/admin/donors/donors.php:1066, includes/admin/payments/view-payment-details.php:633
|
447 |
msgid "Cancel"
|
448 |
msgstr ""
|
449 |
|
|
|
450 |
#: includes/class-give-scripts.php:188, includes/admin/shortcodes/abstract-shortcode-generator.php:91
|
451 |
msgid "Close"
|
452 |
msgstr ""
|
527 |
msgid "Do you want to delete this item?"
|
528 |
msgstr ""
|
529 |
|
|
|
530 |
#: includes/class-give-scripts.php:209, includes/admin/admin-actions.php:299
|
531 |
msgid "You cannot set the success and failed pages to the same page"
|
532 |
msgstr ""
|
679 |
msgid "Please select payment mode."
|
680 |
msgstr ""
|
681 |
|
|
|
|
|
|
|
682 |
#: includes/class-give-scripts.php:357, includes/process-donation.php:504, includes/shortcodes.php:449, includes/admin/admin-actions.php:782
|
683 |
msgid "Please enter your first name."
|
684 |
msgstr ""
|
685 |
|
|
|
686 |
#: includes/class-give-scripts.php:358, includes/process-donation.php:500
|
687 |
msgid "Please enter a valid email address."
|
688 |
msgstr ""
|
689 |
|
|
|
690 |
#: includes/class-give-scripts.php:359, includes/user-functions.php:305
|
691 |
msgid "Invalid username. Only lowercase letters (a-z) and numbers are allowed."
|
692 |
msgstr ""
|
693 |
|
|
|
|
|
694 |
#: includes/class-give-scripts.php:360, includes/process-donation.php:777, includes/user-functions.php:410
|
695 |
msgid "Enter a password."
|
696 |
msgstr ""
|
697 |
|
|
|
698 |
#: includes/class-give-scripts.php:361, includes/user-functions.php:414
|
699 |
msgid "Enter the password confirmation."
|
700 |
msgstr ""
|
701 |
|
|
|
702 |
#: includes/class-give-scripts.php:362, includes/process-donation.php:479
|
703 |
msgid "You must agree to the terms and conditions."
|
704 |
msgstr ""
|
707 |
msgid "Loading"
|
708 |
msgstr ""
|
709 |
|
|
|
710 |
#: includes/class-give-scripts.php:371, includes/admin/tools/views/html-admin-page-data.php:33
|
711 |
msgid "Please select an option"
|
712 |
msgstr ""
|
713 |
|
|
|
714 |
#: includes/class-give-stats.php:96, includes/admin/reports/graphing.php:488
|
715 |
msgid "Today"
|
716 |
msgstr ""
|
717 |
|
|
|
718 |
#: includes/class-give-stats.php:97, includes/admin/reports/graphing.php:489
|
719 |
msgid "Yesterday"
|
720 |
msgstr ""
|
721 |
|
|
|
|
|
|
|
722 |
#: includes/class-give-stats.php:98, includes/admin/dashboard-widgets.php:79, includes/admin/dashboard-widgets.php:89, includes/admin/reports/graphing.php:490
|
723 |
msgid "This Week"
|
724 |
msgstr ""
|
725 |
|
|
|
726 |
#: includes/class-give-stats.php:99, includes/admin/reports/graphing.php:491
|
727 |
msgid "Last Week"
|
728 |
msgstr ""
|
729 |
|
|
|
|
|
|
|
730 |
#: includes/class-give-stats.php:100, includes/admin/dashboard-widgets.php:80, includes/admin/dashboard-widgets.php:94, includes/admin/reports/graphing.php:492
|
731 |
msgid "This Month"
|
732 |
msgstr ""
|
733 |
|
|
|
|
|
734 |
#: includes/class-give-stats.php:101, includes/admin/dashboard-widgets.php:101, includes/admin/reports/graphing.php:493
|
735 |
msgid "Last Month"
|
736 |
msgstr ""
|
737 |
|
|
|
|
|
738 |
#: includes/class-give-stats.php:102, includes/admin/dashboard-widgets.php:106, includes/admin/reports/graphing.php:494
|
739 |
msgid "This Quarter"
|
740 |
msgstr ""
|
741 |
|
|
|
742 |
#: includes/class-give-stats.php:103, includes/admin/reports/graphing.php:495
|
743 |
msgid "Last Quarter"
|
744 |
msgstr ""
|
745 |
|
|
|
746 |
#: includes/class-give-stats.php:104, includes/admin/reports/graphing.php:496
|
747 |
msgid "This Year"
|
748 |
msgstr ""
|
749 |
|
|
|
750 |
#: includes/class-give-stats.php:105, includes/admin/reports/graphing.php:497
|
751 |
msgid "Last Year"
|
752 |
msgstr ""
|
1411 |
msgid "Nicaragua"
|
1412 |
msgstr ""
|
1413 |
|
|
|
1414 |
#: includes/country-functions.php:246, includes/country-functions.php:1170
|
1415 |
msgid "Niger"
|
1416 |
msgstr ""
|
1755 |
msgid "District"
|
1756 |
msgstr ""
|
1757 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1758 |
#: includes/country-functions.php:538, includes/country-functions.php:549, includes/country-functions.php:566, includes/country-functions.php:628, includes/country-functions.php:650, includes/country-functions.php:681, includes/country-functions.php:742, includes/country-functions.php:765, includes/country-functions.php:792, includes/import-functions.php:442
|
1759 |
msgid "Province"
|
1760 |
msgstr ""
|
1763 |
msgid "Canton"
|
1764 |
msgstr ""
|
1765 |
|
|
|
|
|
|
|
1766 |
#: includes/country-functions.php:561, includes/country-functions.php:617, includes/country-functions.php:687, includes/import-functions.php:444
|
1767 |
msgid "Region"
|
1768 |
msgstr ""
|
1769 |
|
|
|
|
|
|
|
1770 |
#: includes/country-functions.php:622, includes/country-functions.php:633, includes/country-functions.php:775, includes/import-functions.php:443
|
1771 |
msgid "County"
|
1772 |
msgstr ""
|
4003 |
msgid "Potosí"
|
4004 |
msgstr ""
|
4005 |
|
|
|
4006 |
#: includes/country-functions.php:1545, includes/country-functions.php:1700
|
4007 |
msgid "Santa Cruz"
|
4008 |
msgstr ""
|
4399 |
msgid "Chubut"
|
4400 |
msgstr ""
|
4401 |
|
|
|
4402 |
#: includes/country-functions.php:1686, includes/country-functions.php:2276
|
4403 |
msgid "Córdoba"
|
4404 |
msgstr ""
|
4423 |
msgid "La Pampa"
|
4424 |
msgstr ""
|
4425 |
|
|
|
4426 |
#: includes/country-functions.php:1692, includes/country-functions.php:2285
|
4427 |
msgid "La Rioja"
|
4428 |
msgstr ""
|
4915 |
msgid "Costa Rican colón (%1$s)"
|
4916 |
msgstr ""
|
4917 |
|
|
|
4918 |
#: includes/currency-functions.php:548, includes/currency-functions.php:558
|
4919 |
msgid "Cuban convertible peso (%1$s)"
|
4920 |
msgstr ""
|
5051 |
msgid "%s million"
|
5052 |
msgstr ""
|
5053 |
|
|
|
5054 |
#: includes/formatting.php:679, includes/formatting.php:718
|
5055 |
msgid "Nonce verification has failed."
|
5056 |
msgstr ""
|
5057 |
|
|
|
5058 |
#: includes/import-functions.php:264, includes/import-functions.php:355
|
5059 |
msgid "This donor was imported by %s"
|
5060 |
msgstr ""
|
5061 |
|
|
|
5062 |
#: includes/import-functions.php:343, includes/post-types.php:59
|
5063 |
msgid "New Form"
|
5064 |
msgstr ""
|
5067 |
msgid "Do not import"
|
5068 |
msgstr ""
|
5069 |
|
|
|
|
|
|
|
|
|
5070 |
#: includes/import-functions.php:406, includes/admin/tools/export/give-export-donations-exporter.php:167, includes/admin/tools/export/give-export-donations-functions.php:246, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:138, templates/shortcode-receipt.php:84
|
5071 |
msgid "Donation ID"
|
5072 |
msgstr ""
|
5073 |
|
|
|
|
|
5074 |
#: includes/import-functions.php:408, includes/admin/tools/import/class-give-import-donations.php:510, includes/admin/tools/logs/class-sales-logs-list-table.php:143
|
5075 |
msgid "Donation Amount"
|
5076 |
msgstr ""
|
5077 |
|
|
|
|
|
|
|
|
|
|
|
5078 |
#: includes/import-functions.php:409, includes/admin/donors/donors.php:799, includes/admin/forms/class-metabox-form-data.php:200, includes/admin/forms/dashboard-columns.php:38, includes/admin/payments/class-payments-table.php:396, templates/history-donations.php:53
|
5079 |
msgid "Amount"
|
5080 |
msgstr ""
|
5087 |
msgid "Currencies"
|
5088 |
msgstr ""
|
5089 |
|
|
|
|
|
5090 |
#: includes/import-functions.php:416, includes/admin/tools/export/give-export-donations-exporter.php:220, includes/admin/tools/export/give-export-donations-functions.php:300
|
5091 |
msgid "Donation Date"
|
5092 |
msgstr ""
|
5093 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5094 |
#: includes/import-functions.php:417, includes/admin/donors/donors.php:800, includes/admin/forms/dashboard-columns.php:43, includes/admin/payments/class-payments-table.php:395, includes/admin/tools/export/class-export-earnings.php:60, includes/admin/tools/export/class-export.php:81, includes/admin/tools/logs/class-api-requests-logs-list-table.php:96, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:139, includes/admin/tools/logs/class-sales-logs-list-table.php:144, includes/admin/tools/logs/class-update-logs-list-table.php:80, templates/history-donations.php:51, templates/shortcode-receipt.php:60
|
5095 |
msgid "Date"
|
5096 |
msgstr ""
|
5099 |
msgid "Donor First Name"
|
5100 |
msgstr ""
|
5101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5102 |
#: includes/import-functions.php:421, includes/misc-functions.php:608, includes/misc-functions.php:610, includes/forms/template.php:644, includes/forms/template.php:654, includes/admin/donors/donors.php:341, includes/admin/tools/export/give-export-donations-exporter.php:173, includes/admin/tools/import/class-give-import-donations.php:500, templates/shortcode-profile-editor.php:60
|
5103 |
msgid "First Name"
|
5104 |
msgstr ""
|
5105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
5106 |
#: includes/import-functions.php:422, includes/admin/donors/class-donor-table.php:192, includes/admin/forms/dashboard-columns.php:35, includes/admin/reports/class-donor-reports-table.php:215, includes/admin/tools/export/class-batch-export-forms.php:46, includes/admin/tools/views/html-admin-page-exports.php:141, includes/admin/tools/views/html-admin-page-system-info.php:920
|
5107 |
msgid "Name"
|
5108 |
msgstr ""
|
5111 |
msgid "Donor Last Name"
|
5112 |
msgstr ""
|
5113 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5114 |
#: includes/import-functions.php:426, includes/misc-functions.php:614, includes/misc-functions.php:616, includes/forms/template.php:663, includes/forms/template.php:675, includes/admin/donors/donors.php:350, includes/admin/tools/export/give-export-donations-exporter.php:176, templates/shortcode-profile-editor.php:68
|
5115 |
msgid "Last Name"
|
5116 |
msgstr ""
|
5117 |
|
|
|
|
|
|
|
|
|
|
|
|
|
5118 |
#: includes/import-functions.php:429, includes/forms/template.php:685, includes/forms/template.php:696, includes/admin/tools/export/give-export-donations-exporter.php:182, includes/admin/tools/export/give-export-donations-functions.php:421, templates/shortcode-profile-editor.php:75, templates/shortcode-receipt.php:54
|
5119 |
msgid "Company Name"
|
5120 |
msgstr ""
|
5131 |
msgid "Company"
|
5132 |
msgstr ""
|
5133 |
|
|
|
|
|
5134 |
#: includes/import-functions.php:435, includes/forms/template.php:967, includes/admin/tools/export/give-export-donations-exporter.php:185
|
5135 |
msgid "Address 1"
|
5136 |
msgstr ""
|
5137 |
|
|
|
|
|
5138 |
#: includes/import-functions.php:436, includes/admin/tools/export/class-batch-export-donors.php:194, includes/admin/tools/views/html-admin-page-exports.php:155
|
5139 |
msgid "Address"
|
5140 |
msgstr ""
|
5141 |
|
|
|
|
|
|
|
5142 |
#: includes/import-functions.php:438, includes/forms/template.php:988, includes/admin/tools/export/class-batch-export-donors.php:195, includes/admin/tools/export/give-export-donations-exporter.php:186
|
5143 |
msgid "Address 2"
|
5144 |
msgstr ""
|
5145 |
|
|
|
|
|
|
|
|
|
5146 |
#: includes/import-functions.php:439, includes/forms/template.php:1008, includes/forms/template.php:1019, includes/admin/tools/export/class-batch-export-donors.php:196, includes/admin/tools/export/give-export-donations-exporter.php:187
|
5147 |
msgid "City"
|
5148 |
msgstr ""
|
5149 |
|
|
|
|
|
|
|
5150 |
#: includes/import-functions.php:446, includes/forms/template.php:943, includes/admin/tools/export/class-batch-export-donors.php:199, includes/admin/tools/export/give-export-donations-exporter.php:190
|
5151 |
msgid "Country"
|
5152 |
msgstr ""
|
5155 |
msgid "Zip Code"
|
5156 |
msgstr ""
|
5157 |
|
|
|
|
|
5158 |
#: includes/import-functions.php:449, includes/admin/tools/export/class-batch-export-donors.php:198, includes/admin/tools/export/give-export-donations-exporter.php:189
|
5159 |
msgid "Zip"
|
5160 |
msgstr ""
|
5175 |
msgid "Donor Email"
|
5176 |
msgstr ""
|
5177 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5178 |
#: includes/import-functions.php:456, includes/admin/donors/class-donor-table.php:193, includes/admin/donors/donors.php:724, includes/admin/emails/class-email-notification-table.php:64, includes/admin/emails/class-email-setting-field.php:306, includes/admin/reports/class-donor-reports-table.php:216, includes/admin/tools/views/html-admin-page-exports.php:148, templates/shortcode-register.php:39
|
5179 |
msgid "Email"
|
5180 |
msgstr ""
|
5181 |
|
|
|
|
|
|
|
5182 |
#: includes/import-functions.php:459, includes/admin/tools/export/give-export-donations-exporter.php:202, includes/admin/tools/export/give-export-donations-functions.php:292, templates/shortcode-receipt.php:78
|
5183 |
msgid "Donation Status"
|
5184 |
msgstr ""
|
5185 |
|
|
|
|
|
|
|
|
|
|
|
5186 |
#: includes/import-functions.php:460, includes/admin/donors/donors.php:801, includes/admin/payments/class-payments-table.php:394, includes/admin/tools/export/class-batch-export-forms.php:51, includes/admin/tools/logs/class-sales-logs-list-table.php:142, templates/history-donations.php:54
|
5187 |
msgid "Status"
|
5188 |
msgstr ""
|
5189 |
|
|
|
|
|
5190 |
#: includes/import-functions.php:463, templates/history-donations.php:55, templates/shortcode-receipt.php:96
|
5191 |
msgid "Payment Method"
|
5192 |
msgstr ""
|
5195 |
msgid "Method"
|
5196 |
msgstr ""
|
5197 |
|
|
|
|
|
5198 |
#: includes/import-functions.php:466, includes/admin/donors/class-donor-table.php:236, includes/admin/donors/donors.php:940
|
5199 |
msgid "Notes"
|
5200 |
msgstr ""
|
5201 |
|
|
|
|
|
|
|
5202 |
#: includes/import-functions.php:468, includes/admin/class-give-settings.php:315, includes/admin/settings/class-settings-gateways.php:169, includes/admin/tools/views/html-admin-page-system-info.php:534
|
5203 |
msgid "Test Mode"
|
5204 |
msgstr ""
|
5207 |
msgid "Mode"
|
5208 |
msgstr ""
|
5209 |
|
|
|
5210 |
#: includes/import-functions.php:471, includes/admin/tools/import/class-give-import-donations.php:567
|
5211 |
msgid "Import as Meta"
|
5212 |
msgstr ""
|
5213 |
|
|
|
|
|
5214 |
#: includes/import-functions.php:489, includes/admin/tools/export/give-export-donations-exporter.php:229, includes/admin/tools/export/give-export-donations-functions.php:445
|
5215 |
msgid "Donor ID"
|
5216 |
msgstr ""
|
5217 |
|
|
|
|
|
|
|
|
|
5218 |
#: includes/import-functions.php:490, includes/admin/tools/export/class-batch-export-donors.php:202, includes/admin/tools/export/give-export-donations-exporter.php:226, includes/admin/tools/export/give-export-donations-functions.php:437, includes/admin/tools/views/html-admin-page-exports.php:162
|
5219 |
msgid "User ID"
|
5220 |
msgstr ""
|
5221 |
|
|
|
5222 |
#: includes/import-functions.php:509, includes/admin/tools/export/give-export-donations-functions.php:353
|
5223 |
msgid "Donation Form Title"
|
5224 |
msgstr ""
|
5225 |
|
|
|
|
|
|
|
|
|
5226 |
#: includes/import-functions.php:510, includes/post-types.php:67, includes/admin/payments/class-payments-table.php:393, includes/admin/shortcodes/shortcode-give-form.php:27, includes/admin/shortcodes/shortcode-give-form.php:28
|
5227 |
msgid "Donation Form"
|
5228 |
msgstr ""
|
5229 |
|
|
|
5230 |
#: includes/import-functions.php:511, includes/admin/tools/export/pdf-reports.php:100
|
5231 |
msgid "Form Name"
|
5232 |
msgstr ""
|
5235 |
msgid "Title"
|
5236 |
msgstr ""
|
5237 |
|
|
|
5238 |
#: includes/import-functions.php:515, includes/admin/tools/export/give-export-donations-functions.php:345
|
5239 |
msgid "Donation Form ID"
|
5240 |
msgstr ""
|
5241 |
|
|
|
5242 |
#: includes/import-functions.php:516, includes/admin/tools/export/give-export-donations-exporter.php:208
|
5243 |
msgid "Form ID"
|
5244 |
msgstr ""
|
5245 |
|
|
|
|
|
5246 |
#: includes/import-functions.php:519, includes/admin/forms/class-metabox-form-data.php:187, includes/admin/forms/class-metabox-form-data.php:214
|
5247 |
msgid "Donation Level"
|
5248 |
msgstr ""
|
5251 |
msgid "Level"
|
5252 |
msgstr ""
|
5253 |
|
|
|
5254 |
#: includes/import-functions.php:522, includes/admin/forms/class-metabox-form-data.php:171
|
5255 |
msgid "Custom Amount Text"
|
5256 |
msgstr ""
|
5259 |
msgid "This donation was imported by %s"
|
5260 |
msgstr ""
|
5261 |
|
|
|
|
|
|
|
|
|
|
|
5262 |
#: includes/install.php:349, includes/forms/template.php:1495, includes/forms/template.php:1500, includes/admin/forms/class-metabox-form-data.php:535, includes/admin/settings/class-settings-display.php:278, tests/unit-tests/tests-install.php:100
|
5263 |
msgid "Agree to Terms?"
|
5264 |
msgstr ""
|
5275 |
msgid "We're sorry, your donation failed to process. Please try again or contact site support."
|
5276 |
msgstr ""
|
5277 |
|
|
|
5278 |
#: includes/install.php:460, includes/admin/shortcodes/shortcode-give-donation-history.php:24
|
5279 |
msgid "Donation History"
|
5280 |
msgstr ""
|
5281 |
|
|
|
5282 |
#: includes/login-register.php:118, includes/process-donation.php:757
|
5283 |
msgid "The password you entered is incorrect."
|
5284 |
msgstr ""
|
5285 |
|
|
|
5286 |
#: includes/login-register.php:121, includes/process-donation.php:781
|
5287 |
msgid "The username you entered does not exist."
|
5288 |
msgstr ""
|
5289 |
|
|
|
|
|
5290 |
#: includes/login-register.php:245, includes/login-register.php:253, includes/user-functions.php:308
|
5291 |
msgid "Invalid username."
|
5292 |
msgstr ""
|
5293 |
|
|
|
5294 |
#: includes/login-register.php:249, includes/user-functions.php:298
|
5295 |
msgid "Username already taken."
|
5296 |
msgstr ""
|
5299 |
msgid "Email address already taken."
|
5300 |
msgstr ""
|
5301 |
|
|
|
|
|
|
|
|
|
5302 |
#: includes/login-register.php:261, includes/process-donation.php:647, includes/process-donation.php:814, includes/user-functions.php:364, includes/admin/donors/donor-actions.php:441
|
5303 |
msgid "Invalid email."
|
5304 |
msgstr ""
|
5359 |
msgid "Thanks for Subscribing!"
|
5360 |
msgstr ""
|
5361 |
|
|
|
5362 |
#: includes/misc-functions.php:601, includes/misc-functions.php:603
|
5363 |
msgid "Email Address (required)"
|
5364 |
msgstr ""
|
5367 |
msgid "Subscribe"
|
5368 |
msgstr ""
|
5369 |
|
|
|
5370 |
#: includes/misc-functions.php:699, includes/post-types.php:54
|
5371 |
msgid "Donation Forms"
|
5372 |
msgstr ""
|
5387 |
msgid "array_column(): The index key should be either a string or an integer."
|
5388 |
msgstr ""
|
5389 |
|
|
|
5390 |
#: includes/misc-functions.php:1630, includes/admin/tools/import/class-give-import-core-settings.php:464
|
5391 |
msgid "Please upload or provide a valid JSON file."
|
5392 |
msgstr ""
|
5395 |
msgid "For security reasons, please confirm your email address (%s) to view your complete donation history."
|
5396 |
msgstr ""
|
5397 |
|
|
|
5398 |
#: includes/misc-functions.php:1671, includes/admin/emails/class-email-access-email.php:222
|
5399 |
msgid "Confirm Email"
|
5400 |
msgstr ""
|
5403 |
msgid "Email Sent!"
|
5404 |
msgstr ""
|
5405 |
|
|
|
|
|
|
|
|
|
|
|
5406 |
#: includes/post-types.php:55, includes/post-types.php:259, includes/admin/donors/donors.php:859, includes/admin/payments/class-payments-table.php:180, includes/admin/reports/class-form-reports-table.php:120, includes/admin/tools/logs/class-sales-logs-list-table.php:141
|
5407 |
msgid "Form"
|
5408 |
msgstr ""
|
5419 |
msgid "Edit Donation Form"
|
5420 |
msgstr ""
|
5421 |
|
|
|
|
|
|
|
|
|
|
|
|
|
5422 |
#: includes/post-types.php:61, includes/post-types.php:418, includes/post-types.php:419, includes/post-types.php:420, includes/post-types.php:421, includes/post-types.php:422, includes/admin/donors/donors.php:878
|
5423 |
msgid "View Form"
|
5424 |
msgstr ""
|
5431 |
msgid "No forms found in Trash."
|
5432 |
msgstr ""
|
5433 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5434 |
#: includes/post-types.php:66, includes/post-types.php:121, includes/deprecated/deprecated-functions.php:68, includes/forms/functions.php:1334, includes/admin/donors/class-donor-table.php:194, includes/admin/forms/dashboard-columns.php:40, includes/admin/reports/class-donor-reports-table.php:217, includes/admin/reports/class-form-reports-table.php:121, includes/admin/reports/graphing.php:180, includes/admin/reports/graphing.php:427, includes/admin/tools/class-settings-logs.php:93, includes/admin/upgrades/class-give-updates.php:225, includes/admin/tools/export/class-batch-export-forms.php:56, includes/admin/tools/export/class-export-earnings.php:61, includes/admin/tools/export/pdf-reports.php:304, includes/admin/tools/import/class-give-import-donations.php:593
|
5435 |
msgid "Donations"
|
5436 |
msgstr ""
|
5457 |
msgid "Edit Donation"
|
5458 |
msgstr ""
|
5459 |
|
|
|
5460 |
#: includes/post-types.php:114, includes/admin/emails/class-new-donation-email.php:44
|
5461 |
msgid "New Donation"
|
5462 |
msgstr ""
|
5465 |
msgid "All Donations"
|
5466 |
msgstr ""
|
5467 |
|
|
|
5468 |
#: includes/post-types.php:116, includes/admin/donors/donors.php:823
|
5469 |
msgid "View Donation"
|
5470 |
msgstr ""
|
5515 |
msgid "New Category Name"
|
5516 |
msgstr ""
|
5517 |
|
|
|
|
|
|
|
5518 |
#: includes/post-types.php:165, includes/admin/forms/dashboard-columns.php:36, includes/admin/tools/export/class-batch-export-forms.php:52, includes/admin/tools/export/pdf-reports.php:105
|
5519 |
msgid "Categories"
|
5520 |
msgstr ""
|
5557 |
msgid "New Tag Name"
|
5558 |
msgstr ""
|
5559 |
|
|
|
|
|
|
|
5560 |
#: includes/post-types.php:199, includes/admin/forms/dashboard-columns.php:37, includes/admin/tools/export/class-batch-export-forms.php:53, includes/admin/tools/export/pdf-reports.php:110
|
5561 |
msgid "Tags"
|
5562 |
msgstr ""
|
5565 |
msgid "Choose from most used tags."
|
5566 |
msgstr ""
|
5567 |
|
|
|
|
|
|
|
|
|
5568 |
#: includes/post-types.php:260, includes/admin/reports/class-forms-report.php:37, includes/admin/reports/class-forms-report.php:75, includes/admin/reports/reports.php:104, includes/admin/tools/import/class-give-import-donations.php:605
|
5569 |
msgid "Forms"
|
5570 |
msgstr ""
|
5571 |
|
|
|
5572 |
#: includes/post-types.php:305, includes/post-types.php:313
|
5573 |
msgid "Enter form title here"
|
5574 |
msgstr ""
|
5575 |
|
|
|
|
|
5576 |
#: includes/post-types.php:330, includes/payments/functions.php:536, includes/admin/payments/class-payments-table.php:305
|
5577 |
msgid "Refunded"
|
5578 |
msgstr ""
|
5583 |
msgstr[0] ""
|
5584 |
msgstr[1] ""
|
5585 |
|
|
|
|
|
5586 |
#: includes/post-types.php:338, includes/payments/functions.php:537, includes/admin/payments/class-payments-table.php:313
|
5587 |
msgid "Failed"
|
5588 |
msgstr ""
|
5593 |
msgstr[0] ""
|
5594 |
msgstr[1] ""
|
5595 |
|
|
|
|
|
5596 |
#: includes/post-types.php:346, includes/payments/functions.php:542, includes/admin/payments/class-payments-table.php:309
|
5597 |
msgid "Revoked"
|
5598 |
msgstr ""
|
5603 |
msgstr[0] ""
|
5604 |
msgstr[1] ""
|
5605 |
|
|
|
|
|
5606 |
#: includes/post-types.php:354, includes/payments/functions.php:538, includes/admin/payments/class-payments-table.php:317
|
5607 |
msgid "Cancelled"
|
5608 |
msgstr ""
|
5613 |
msgstr[0] ""
|
5614 |
msgstr[1] ""
|
5615 |
|
|
|
|
|
5616 |
#: includes/post-types.php:362, includes/payments/functions.php:539, includes/admin/payments/class-payments-table.php:321
|
5617 |
msgid "Abandoned"
|
5618 |
msgstr ""
|
5645 |
msgstr[0] ""
|
5646 |
msgstr[1] ""
|
5647 |
|
|
|
|
|
|
|
5648 |
#: includes/post-types.php:408, includes/post-types.php:409, includes/post-types.php:418, includes/post-types.php:419
|
5649 |
msgid "Form updated."
|
5650 |
msgstr ""
|
5651 |
|
|
|
5652 |
#: includes/post-types.php:410, includes/post-types.php:420
|
5653 |
msgid "Form published."
|
5654 |
msgstr ""
|
5655 |
|
|
|
5656 |
#: includes/post-types.php:411, includes/post-types.php:421
|
5657 |
msgid "Form saved."
|
5658 |
msgstr ""
|
5659 |
|
|
|
5660 |
#: includes/post-types.php:412, includes/post-types.php:422
|
5661 |
msgid "Form submitted."
|
5662 |
msgstr ""
|
5732 |
msgid "The user information is invalid."
|
5733 |
msgstr ""
|
5734 |
|
|
|
5735 |
#: includes/process-donation.php:735, includes/user-functions.php:319
|
5736 |
msgid "You must register or login to complete your donation."
|
5737 |
msgstr ""
|
5738 |
|
|
|
|
|
5739 |
#: includes/process-donation.php:759, includes/forms/template.php:1298, templates/shortcode-login.php:46
|
5740 |
msgid "Reset Password"
|
5741 |
msgstr ""
|
5742 |
|
|
|
5743 |
#: includes/process-donation.php:827, includes/user-functions.php:354
|
5744 |
msgid "Enter an email."
|
5745 |
msgstr ""
|
5796 |
msgid "The email you entered belongs to another donor. Please use another."
|
5797 |
msgstr ""
|
5798 |
|
|
|
5799 |
#: includes/shortcodes.php:583, includes/admin/shortcodes/shortcode-give-totals.php:101
|
5800 |
msgid "Hey! We've raised {total} of the {total_goal} we are trying to raise for this campaign!"
|
5801 |
msgstr ""
|
5802 |
|
|
|
|
|
|
|
|
|
5803 |
#: includes/shortcodes.php:592, includes/forms/template.php:609, includes/forms/template.php:1657, includes/admin/forms/class-metabox-form-data.php:263, includes/admin/forms/class-metabox-form-data.php:273
|
5804 |
msgid "Donate Now"
|
5805 |
msgstr ""
|
5841 |
msgid "Passwords you entered do not match. Please try again."
|
5842 |
msgstr ""
|
5843 |
|
|
|
|
|
5844 |
#: includes/admin/abstract-admin-settings-page.php:185, includes/admin/settings/class-settings-cmb2-backward-compatibility.php:631, includes/admin/views/html-admin-settings.php:119
|
5845 |
msgid "Oops, this settings page does not exist."
|
5846 |
msgstr ""
|
5935 |
msgid "You must confirm to delete the selected donor(s)."
|
5936 |
msgstr ""
|
5937 |
|
|
|
|
|
|
|
5938 |
#: includes/admin/admin-actions.php:361, includes/admin/donors/donor-actions.php:299, includes/admin/donors/donors.php:222, includes/admin/donors/donors.php:236
|
5939 |
msgid "Invalid Donor ID."
|
5940 |
msgstr ""
|
5975 |
msgid "Give Test Mode Active"
|
5976 |
msgstr ""
|
5977 |
|
|
|
|
|
5978 |
#: includes/admin/admin-actions.php:513, includes/admin/tools/views/html-admin-page-import-donations.php:25, includes/admin/tools/views/html-admin-page-imports.php:47
|
5979 |
msgid "Import Donations"
|
5980 |
msgstr ""
|
5987 |
msgid "ERROR"
|
5988 |
msgstr ""
|
5989 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5990 |
#: includes/admin/admin-actions.php:809, includes/admin/donors/class-donor-table.php:65, includes/admin/emails/abstract-email-notification.php:149, includes/admin/emails/class-donation-receipt-email.php:46, includes/admin/emails/class-donor-register-email.php:41, includes/admin/emails/class-email-access-email.php:42, includes/admin/reports/class-donor-reports-table.php:66, templates/history-donations.php:52, templates/shortcode-receipt.php:39
|
5991 |
msgid "Donor"
|
5992 |
msgstr ""
|
6023 |
msgid "Successfully updated a address of donor"
|
6024 |
msgstr ""
|
6025 |
|
|
|
6026 |
#: includes/admin/admin-actions.php:1012, includes/admin/payments/view-payment-details.php:679
|
6027 |
msgid "Billing Address"
|
6028 |
msgstr ""
|
6060 |
msgid "Thanks :)"
|
6061 |
msgstr ""
|
6062 |
|
|
|
|
|
|
|
|
|
|
|
6063 |
#: includes/admin/admin-pages.php:48, includes/admin/admin-pages.php:49, includes/forms/functions.php:1334, includes/admin/donors/class-donor-table.php:66, includes/admin/reports/class-donor-reports-table.php:67, includes/admin/tools/import/class-give-import-donations.php:599
|
6064 |
msgid "Donors"
|
6065 |
msgstr ""
|
6072 |
msgid "Reports"
|
6073 |
msgstr ""
|
6074 |
|
|
|
6075 |
#: includes/admin/admin-pages.php:71, includes/admin/welcome.php:269
|
6076 |
msgid "Give Settings"
|
6077 |
msgstr ""
|
6078 |
|
|
|
6079 |
#: includes/admin/admin-pages.php:72, includes/admin/plugins.php:31
|
6080 |
msgid "Settings"
|
6081 |
msgstr ""
|
6084 |
msgid "Give Tools"
|
6085 |
msgstr ""
|
6086 |
|
|
|
6087 |
#: includes/admin/admin-pages.php:85, includes/admin/tools/class-settings-data.php:65
|
6088 |
msgid "Tools"
|
6089 |
msgstr ""
|
6092 |
msgid "Give Add-ons"
|
6093 |
msgstr ""
|
6094 |
|
|
|
|
|
|
|
|
|
6095 |
#: includes/admin/admin-pages.php:98, includes/admin/class-give-settings.php:100, includes/admin/plugins.php:81, includes/admin/welcome.php:135, includes/admin/settings/class-settings-addon.php:29
|
6096 |
msgid "Add-ons"
|
6097 |
msgstr ""
|
6104 |
msgid "Donation Failed Page"
|
6105 |
msgstr ""
|
6106 |
|
|
|
|
|
|
|
6107 |
#: includes/admin/admin-pages.php:383, includes/admin/class-give-settings.php:230, includes/admin/settings/class-settings-general.php:269, includes/admin/tools/views/html-admin-page-system-info.php:569
|
6108 |
msgid "Donation History Page"
|
6109 |
msgstr ""
|
6146 |
msgid "Remove setting field"
|
6147 |
msgstr ""
|
6148 |
|
|
|
6149 |
#: includes/admin/class-admin-settings.php:672, includes/admin/give-metabox-functions.php:777
|
6150 |
msgid "Add or Upload %s"
|
6151 |
msgstr ""
|
6152 |
|
|
|
6153 |
#: includes/admin/class-admin-settings.php:672, includes/admin/give-metabox-functions.php:777
|
6154 |
msgid "File"
|
6155 |
msgstr ""
|
6156 |
|
|
|
6157 |
#: includes/admin/class-admin-settings.php:672, includes/admin/give-metabox-functions.php:777
|
6158 |
msgid "Image"
|
6159 |
msgstr ""
|
6160 |
|
|
|
6161 |
#: includes/admin/class-admin-settings.php:826, includes/admin/give-metabox-functions.php:869
|
6162 |
msgid "Need Help? See docs on \"%s\""
|
6163 |
msgstr ""
|
6182 |
msgid "Revoke"
|
6183 |
msgstr ""
|
6184 |
|
|
|
|
|
|
|
6185 |
#: includes/admin/class-api-keys-table.php:192, includes/forms/template.php:1270, templates/shortcode-login.php:29, templates/shortcode-register.php:34
|
6186 |
msgid "Username"
|
6187 |
msgstr ""
|
6231 |
msgid "When your first donation arrives, a record of the donation will appear here."
|
6232 |
msgstr ""
|
6233 |
|
|
|
6234 |
#: includes/admin/class-blank-slate.php:279, includes/admin/class-blank-slate.php:295
|
6235 |
msgid "View All Forms"
|
6236 |
msgstr ""
|
6257 |
msgid "Need help? Learn more about %1$sDonors%2$s."
|
6258 |
msgstr ""
|
6259 |
|
|
|
|
|
6260 |
#: includes/admin/class-give-settings.php:94, includes/admin/settings/class-settings-general.php:30, includes/admin/settings/class-settings-general.php:423
|
6261 |
msgid "General"
|
6262 |
msgstr ""
|
6263 |
|
|
|
|
|
6264 |
#: includes/admin/class-give-settings.php:95, includes/admin/class-give-settings.php:305, includes/admin/settings/class-settings-gateways.php:30
|
6265 |
msgid "Payment Gateways"
|
6266 |
msgstr ""
|
6267 |
|
|
|
|
|
|
|
6268 |
#: includes/admin/class-give-settings.php:96, includes/admin/forms/class-metabox-form-data.php:245, includes/admin/settings/class-settings-display.php:30, includes/admin/shortcodes/shortcode-give-form.php:100
|
6269 |
msgid "Display Options"
|
6270 |
msgstr ""
|
6271 |
|
|
|
6272 |
#: includes/admin/class-give-settings.php:97, includes/admin/settings/class-settings-email.php:30
|
6273 |
msgid "Emails"
|
6274 |
msgstr ""
|
6275 |
|
|
|
6276 |
#: includes/admin/class-give-settings.php:104, includes/admin/settings/class-settings-license.php:30
|
6277 |
msgid "Licenses"
|
6278 |
msgstr ""
|
6279 |
|
|
|
6280 |
#: includes/admin/class-give-settings.php:107, includes/admin/settings/class-settings-advanced.php:30
|
6281 |
msgid "Advanced"
|
6282 |
msgstr ""
|
6283 |
|
|
|
|
|
|
|
|
|
6284 |
#: includes/admin/class-give-settings.php:108, includes/admin/class-give-settings.php:727, includes/admin/class-give-settings.php:733, includes/admin/tools/class-settings-api.php:37, includes/admin/tools/class-settings-api.php:58
|
6285 |
msgid "API"
|
6286 |
msgstr ""
|
6287 |
|
|
|
|
|
|
|
6288 |
#: includes/admin/class-give-settings.php:109, includes/admin/class-give-settings.php:742, includes/admin/class-give-settings.php:747, includes/admin/tools/class-settings-system-info.php:37
|
6289 |
msgid "System Info"
|
6290 |
msgstr ""
|
6293 |
msgid "Save Settings"
|
6294 |
msgstr ""
|
6295 |
|
|
|
|
|
6296 |
#: includes/admin/class-give-settings.php:199, includes/admin/class-give-settings.php:203, includes/admin/settings/class-settings-general.php:234
|
6297 |
msgid "General Settings"
|
6298 |
msgstr ""
|
6299 |
|
|
|
|
|
6300 |
#: includes/admin/class-give-settings.php:209, includes/admin/settings/class-settings-general.php:240, includes/admin/tools/views/html-admin-page-system-info.php:559
|
6301 |
msgid "Success Page"
|
6302 |
msgstr ""
|
6307 |
msgid "The page donors are sent to after completing their donations. The %s shortcode should be on this page."
|
6308 |
msgstr ""
|
6309 |
|
|
|
6310 |
#: includes/admin/class-give-settings.php:220, includes/admin/settings/class-settings-general.php:255
|
6311 |
msgid "Failed Donation Page"
|
6312 |
msgstr ""
|
6313 |
|
|
|
6314 |
#: includes/admin/class-give-settings.php:221, includes/admin/settings/class-settings-general.php:256
|
6315 |
msgid "The page donors are sent to if their donation is cancelled or fails."
|
6316 |
msgstr ""
|
6321 |
msgid "The page showing a complete donation history for the current user. The %s shortcode should be on this page."
|
6322 |
msgstr ""
|
6323 |
|
|
|
6324 |
#: includes/admin/class-give-settings.php:241, includes/admin/settings/class-settings-general.php:284
|
6325 |
msgid "Base Country"
|
6326 |
msgstr ""
|
6327 |
|
|
|
6328 |
#: includes/admin/class-give-settings.php:242, includes/admin/settings/class-settings-general.php:285
|
6329 |
msgid "The country your site operates from."
|
6330 |
msgstr ""
|
6331 |
|
|
|
|
|
6332 |
#: includes/admin/class-give-settings.php:248, includes/admin/settings/class-settings-general.php:147, includes/admin/settings/class-settings-general.php:206
|
6333 |
msgid "Currency Settings"
|
6334 |
msgstr ""
|
6335 |
|
|
|
|
|
6336 |
#: includes/admin/class-give-settings.php:254, includes/admin/settings/class-settings-general.php:153, includes/admin/settings/class-settings-general.php:424
|
6337 |
msgid "Currency"
|
6338 |
msgstr ""
|
6339 |
|
|
|
6340 |
#: includes/admin/class-give-settings.php:255, includes/admin/settings/class-settings-general.php:154
|
6341 |
msgid "The donation currency. Note that some payment gateways have currency restrictions."
|
6342 |
msgstr ""
|
6343 |
|
|
|
|
|
6344 |
#: includes/admin/class-give-settings.php:262, includes/admin/settings/class-settings-general.php:162, includes/admin/tools/views/html-admin-page-system-info.php:544
|
6345 |
msgid "Currency Position"
|
6346 |
msgstr ""
|
6347 |
|
|
|
6348 |
#: includes/admin/class-give-settings.php:263, includes/admin/settings/class-settings-general.php:163
|
6349 |
msgid "The position of the currency symbol."
|
6350 |
msgstr ""
|
6351 |
|
6352 |
#. translators: %s: currency symbol
|
|
|
6353 |
#: includes/admin/class-give-settings.php:268, includes/admin/settings/class-settings-general.php:137
|
6354 |
msgid "Before - %s‎10"
|
6355 |
msgstr ""
|
6356 |
|
6357 |
#. translators: %s: currency symbol
|
|
|
6358 |
#: includes/admin/class-give-settings.php:270, includes/admin/settings/class-settings-general.php:138
|
6359 |
msgid "After - 10%s‏"
|
6360 |
msgstr ""
|
6361 |
|
|
|
|
|
6362 |
#: includes/admin/class-give-settings.php:275, includes/admin/settings/class-settings-general.php:179, includes/admin/tools/views/html-admin-page-system-info.php:554
|
6363 |
msgid "Thousands Separator"
|
6364 |
msgstr ""
|
6367 |
msgid "The symbol (usually , or .) to separate thousands."
|
6368 |
msgstr ""
|
6369 |
|
|
|
|
|
6370 |
#: includes/admin/class-give-settings.php:283, includes/admin/settings/class-settings-general.php:187, includes/admin/tools/views/html-admin-page-system-info.php:549
|
6371 |
msgid "Decimal Separator"
|
6372 |
msgstr ""
|
6373 |
|
|
|
6374 |
#: includes/admin/class-give-settings.php:284, includes/admin/settings/class-settings-general.php:188
|
6375 |
msgid "The symbol (usually , or .) to separate decimal points."
|
6376 |
msgstr ""
|
6377 |
|
|
|
6378 |
#: includes/admin/class-give-settings.php:290, includes/admin/settings/class-settings-general.php:195
|
6379 |
msgid "Number of Decimals"
|
6380 |
msgstr ""
|
6381 |
|
|
|
6382 |
#: includes/admin/class-give-settings.php:291, includes/admin/settings/class-settings-general.php:196
|
6383 |
msgid "The number of decimal points displayed in amounts."
|
6384 |
msgstr ""
|
6387 |
msgid "Gateways Settings"
|
6388 |
msgstr ""
|
6389 |
|
|
|
6390 |
#: includes/admin/class-give-settings.php:316, includes/admin/settings/class-settings-gateways.php:170
|
6391 |
msgid "While in test mode no live donations are processed. To fully use test mode, you must have a sandbox (test) account for the payment gateway you are testing."
|
6392 |
msgstr ""
|
6393 |
|
|
|
6394 |
#: includes/admin/class-give-settings.php:321, includes/admin/settings/class-settings-gateways.php:180
|
6395 |
msgid "Enabled Gateways"
|
6396 |
msgstr ""
|
6397 |
|
|
|
6398 |
#: includes/admin/class-give-settings.php:322, includes/admin/settings/class-settings-gateways.php:181
|
6399 |
msgid "Enable your payment gateway. Can be ordered by dragging."
|
6400 |
msgstr ""
|
6401 |
|
|
|
|
|
6402 |
#: includes/admin/class-give-settings.php:327, includes/admin/forms/class-metabox-form-data.php:277, includes/admin/settings/class-settings-gateways.php:206
|
6403 |
msgid "Default Gateway"
|
6404 |
msgstr ""
|
6405 |
|
|
|
6406 |
#: includes/admin/class-give-settings.php:328, includes/admin/settings/class-settings-gateways.php:207
|
6407 |
msgid "The gateway that will be selected by default."
|
6408 |
msgstr ""
|
6409 |
|
|
|
|
|
6410 |
#: includes/admin/class-give-settings.php:333, includes/gateways/functions.php:27, includes/admin/settings/class-settings-gateways.php:255
|
6411 |
msgid "PayPal Standard"
|
6412 |
msgstr ""
|
6413 |
|
|
|
6414 |
#: includes/admin/class-give-settings.php:339, includes/admin/settings/class-settings-gateways.php:61
|
6415 |
msgid "PayPal Email"
|
6416 |
msgstr ""
|
6417 |
|
|
|
6418 |
#: includes/admin/class-give-settings.php:340, includes/admin/settings/class-settings-gateways.php:62
|
6419 |
msgid "Enter your PayPal account's email."
|
6420 |
msgstr ""
|
6421 |
|
|
|
6422 |
#: includes/admin/class-give-settings.php:345, includes/admin/settings/class-settings-gateways.php:67
|
6423 |
msgid "PayPal Page Style"
|
6424 |
msgstr ""
|
6427 |
msgid "Enter the name of the page style to use, or leave blank to use the default."
|
6428 |
msgstr ""
|
6429 |
|
|
|
6430 |
#: includes/admin/class-give-settings.php:351, includes/admin/settings/class-settings-gateways.php:73
|
6431 |
msgid "PayPal Transaction Type"
|
6432 |
msgstr ""
|
6433 |
|
|
|
6434 |
#: includes/admin/class-give-settings.php:352, includes/admin/settings/class-settings-gateways.php:74
|
6435 |
msgid "Nonprofits must verify their status to withdraw donations they receive via PayPal. PayPal users that are not verified nonprofits must demonstrate how their donations will be used, once they raise more than $10,000. By default, Give transactions are sent to PayPal as donations. You may change the transaction type using this option if you feel you may not meet PayPal's donation requirements."
|
6436 |
msgstr ""
|
6437 |
|
|
|
|
|
|
|
|
|
6438 |
#: includes/admin/class-give-settings.php:356, includes/admin/payments/class-payments-table.php:392, includes/admin/settings/class-settings-gateways.php:78, includes/admin/tools/logs/class-sales-logs-list-table.php:140, templates/shortcode-receipt.php:72
|
6439 |
msgid "Donation"
|
6440 |
msgstr ""
|
6441 |
|
|
|
6442 |
#: includes/admin/class-give-settings.php:357, includes/admin/settings/class-settings-gateways.php:79
|
6443 |
msgid "Standard Transaction"
|
6444 |
msgstr ""
|
6447 |
msgid "Disable PayPal IPN Verification"
|
6448 |
msgstr ""
|
6449 |
|
|
|
6450 |
#: includes/admin/class-give-settings.php:363, includes/admin/settings/class-settings-gateways.php:96
|
6451 |
msgid "If donations are not getting marked as complete, use a slightly less secure method of verifying donations."
|
6452 |
msgstr ""
|
6453 |
|
|
|
|
|
|
|
|
|
6454 |
#: includes/admin/class-give-settings.php:368, includes/gateways/offline-donations.php:302, includes/gateways/offline-donations.php:341, includes/admin/forms/class-metabox-form-data.php:1194, includes/admin/settings/class-settings-gateways.php:256
|
6455 |
msgid "Offline Donations"
|
6456 |
msgstr ""
|
6457 |
|
|
|
6458 |
#: includes/admin/class-give-settings.php:374, includes/admin/settings/class-settings-gateways.php:127
|
6459 |
msgid "Collect Billing Details"
|
6460 |
msgstr ""
|
6461 |
|
|
|
6462 |
#: includes/admin/class-give-settings.php:375, includes/admin/settings/class-settings-gateways.php:128
|
6463 |
msgid "Enable to request billing details for offline donations. Will appear above offline donation instructions. Can be enabled/disabled per form."
|
6464 |
msgstr ""
|
6465 |
|
|
|
|
|
|
|
|
|
|
|
6466 |
#: includes/admin/class-give-settings.php:380, includes/gateways/offline-donations.php:183, includes/gateways/offline-donations.php:198, includes/admin/emails/class-offline-donation-instruction-email.php:43, includes/admin/emails/class-offline-donation-instruction-email.php:207, includes/admin/settings/class-settings-gateways.php:138
|
6467 |
msgid "Offline Donation Instructions"
|
6468 |
msgstr ""
|
6469 |
|
|
|
6470 |
#: includes/admin/class-give-settings.php:381, includes/admin/settings/class-settings-gateways.php:139
|
6471 |
msgid "The following content will appear for all forms when the user selects the offline donation payment option. Note: You may customize the content per form as needed."
|
6472 |
msgstr ""
|
6475 |
msgid "Offline Donation Email Instructions Subject"
|
6476 |
msgstr ""
|
6477 |
|
|
|
6478 |
#: includes/admin/class-give-settings.php:391, includes/admin/class-give-settings.php:567
|
6479 |
msgid "Enter the subject line for the donation receipt email."
|
6480 |
msgstr ""
|
6481 |
|
|
|
6482 |
#: includes/admin/class-give-settings.php:393, includes/admin/emails/class-offline-donation-instruction-email.php:51
|
6483 |
msgid "{donation} - Offline Donation Instructions"
|
6484 |
msgstr ""
|
6491 |
msgid "Enter the instructions you want emailed to the donor after they have submitted the donation form. Most likely this would include important information like mailing address and who to make the check out to."
|
6492 |
msgstr ""
|
6493 |
|
|
|
6494 |
#: includes/admin/class-give-settings.php:412, includes/admin/class-give-settings.php:416
|
6495 |
msgid "Display Settings"
|
6496 |
msgstr ""
|
6521 |
msgid "Enable this option if you would like to disable the <a href=\"%s\" target=\"_blank\">Give Welcome screen</a> every time Give is activated and/or updated."
|
6522 |
msgstr ""
|
6523 |
|
|
|
6524 |
#: includes/admin/class-give-settings.php:452, includes/admin/settings/class-settings-display.php:331
|
6525 |
msgid "Post Types"
|
6526 |
msgstr ""
|
6545 |
msgid "Disable Form Excerpts"
|
6546 |
msgstr ""
|
6547 |
|
|
|
6548 |
#: includes/admin/class-give-settings.php:471, includes/admin/settings/class-settings-display.php:161
|
6549 |
msgid "The excerpt is an optional summary or description of a donation form; in short, a summary as to why the user should give."
|
6550 |
msgstr ""
|
6551 |
|
|
|
6552 |
#: includes/admin/class-give-settings.php:476, includes/admin/settings/class-settings-display.php:182
|
6553 |
msgid "Featured Image Size"
|
6554 |
msgstr ""
|
6555 |
|
|
|
6556 |
#: includes/admin/class-give-settings.php:477, includes/admin/settings/class-settings-display.php:183
|
6557 |
msgid "The Featured Image is an image that is chosen as the representative image for a donation form. Some themes may have custom featured image sizes. Please select the size you would like to display for your single donation form's featured image."
|
6558 |
msgstr ""
|
6561 |
msgid "Disable Form Featured Image"
|
6562 |
msgstr ""
|
6563 |
|
|
|
6564 |
#: includes/admin/class-give-settings.php:485, includes/admin/settings/class-settings-display.php:172
|
6565 |
msgid "If you do not wish to use the featured image functionality you can disable it using this option and it will not be displayed for single donation forms."
|
6566 |
msgstr ""
|
6573 |
msgid "The sidebar allows you to add additional widget to the Give single form view. If you don't plan on using the sidebar you may disable it with this option."
|
6574 |
msgstr ""
|
6575 |
|
|
|
6576 |
#: includes/admin/class-give-settings.php:496, includes/admin/settings/class-settings-display.php:332
|
6577 |
msgid "Taxonomies"
|
6578 |
msgstr ""
|
6593 |
msgid "Enables the \"Tag\" taxonomy for all Give forms."
|
6594 |
msgstr ""
|
6595 |
|
|
|
|
|
6596 |
#: includes/admin/class-give-settings.php:522, includes/admin/class-give-settings.php:526, includes/admin/settings/class-settings-email.php:143
|
6597 |
msgid "Email Settings"
|
6598 |
msgstr ""
|
6599 |
|
|
|
|
|
6600 |
#: includes/admin/class-give-settings.php:533, includes/admin/emails/class-email-notifications.php:136, includes/admin/settings/class-settings-email.php:76
|
6601 |
msgid "Email Template"
|
6602 |
msgstr ""
|
6605 |
msgid "Choose a template. Click \"Save Changes\" then \"Preview Donation Receipt\" to see the new template."
|
6606 |
msgstr ""
|
6607 |
|
|
|
|
|
6608 |
#: includes/admin/class-give-settings.php:540, includes/admin/emails/class-email-notifications.php:144, includes/admin/settings/class-settings-email.php:83
|
6609 |
msgid "Logo"
|
6610 |
msgstr ""
|
6611 |
|
|
|
|
|
6612 |
#: includes/admin/class-give-settings.php:541, includes/admin/emails/class-email-notifications.php:145, includes/admin/settings/class-settings-email.php:84
|
6613 |
msgid "Upload or choose a logo to be displayed at the top of the donation receipt emails. Displayed on HTML emails only."
|
6614 |
msgstr ""
|
6615 |
|
|
|
|
|
6616 |
#: includes/admin/class-give-settings.php:546, includes/admin/emails/class-email-notifications.php:150, includes/admin/settings/class-settings-email.php:89
|
6617 |
msgid "From Name"
|
6618 |
msgstr ""
|
6621 |
msgid "The name that appears in the \"From\" field in donation receipt emails."
|
6622 |
msgstr ""
|
6623 |
|
|
|
|
|
6624 |
#: includes/admin/class-give-settings.php:553, includes/admin/emails/class-email-notifications.php:157, includes/admin/settings/class-settings-email.php:96
|
6625 |
msgid "From Email"
|
6626 |
msgstr ""
|
6629 |
msgid "Email to send donation receipts from. This will act as the \"from\" and \"reply-to\" address."
|
6630 |
msgstr ""
|
6631 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6632 |
#: includes/admin/class-give-settings.php:559, includes/admin/class-give-settings.php:568, includes/admin/class-give-settings.php:573, includes/admin/emails/class-donation-receipt-email.php:42, includes/admin/emails/class-donation-receipt-email.php:47, includes/admin/emails/class-donation-receipt-email.php:241, includes/admin/shortcodes/shortcode-give-receipt.php:27, includes/admin/shortcodes/shortcode-give-receipt.php:28, templates/shortcode-receipt.php:248
|
6633 |
msgid "Donation Receipt"
|
6634 |
msgstr ""
|
6654 |
msgid "Enter the subject line for the donation notification email."
|
6655 |
msgstr ""
|
6656 |
|
|
|
6657 |
#: includes/admin/class-give-settings.php:593, includes/admin/emails/class-new-donation-email.php:49
|
6658 |
msgid "New Donation - #{payment_id}"
|
6659 |
msgstr ""
|
6691 |
msgid "Give Licenses"
|
6692 |
msgstr ""
|
6693 |
|
|
|
6694 |
#: includes/admin/class-give-settings.php:641, includes/admin/settings/class-settings-advanced.php:184
|
6695 |
msgid "Advanced Options"
|
6696 |
msgstr ""
|
6697 |
|
|
|
|
|
6698 |
#: includes/admin/class-give-settings.php:645, includes/admin/settings/class-settings-general.php:126, includes/admin/settings/class-settings-general.php:425
|
6699 |
msgid "Access Control"
|
6700 |
msgstr ""
|
6701 |
|
|
|
6702 |
#: includes/admin/class-give-settings.php:652, includes/admin/settings/class-settings-general.php:63
|
6703 |
msgid "Session Lifetime"
|
6704 |
msgstr ""
|
6705 |
|
|
|
6706 |
#: includes/admin/class-give-settings.php:653, includes/admin/settings/class-settings-general.php:64
|
6707 |
msgid "The length of time a user's session is kept alive. Give starts a new session per user upon donation. Sessions allow donors to view their donation receipts without being logged in."
|
6708 |
msgstr ""
|
6709 |
|
|
|
6710 |
#: includes/admin/class-give-settings.php:656, includes/admin/settings/class-settings-general.php:67
|
6711 |
msgid "24 Hours"
|
6712 |
msgstr ""
|
6713 |
|
|
|
6714 |
#: includes/admin/class-give-settings.php:657, includes/admin/settings/class-settings-general.php:68
|
6715 |
msgid "48 Hours"
|
6716 |
msgstr ""
|
6717 |
|
|
|
6718 |
#: includes/admin/class-give-settings.php:658, includes/admin/settings/class-settings-general.php:69
|
6719 |
msgid "72 Hours"
|
6720 |
msgstr ""
|
6721 |
|
|
|
6722 |
#: includes/admin/class-give-settings.php:659, includes/admin/settings/class-settings-general.php:70
|
6723 |
msgid "1 Week"
|
6724 |
msgstr ""
|
6725 |
|
|
|
6726 |
#: includes/admin/class-give-settings.php:663, includes/admin/settings/class-settings-general.php:86
|
6727 |
msgid "Email Access"
|
6728 |
msgstr ""
|
6729 |
|
|
|
6730 |
#: includes/admin/class-give-settings.php:664, includes/admin/settings/class-settings-general.php:87
|
6731 |
msgid "Would you like your donors to be able to access their donation history using only email? Donors whose sessions have expired and do not have an account may still access their donation history via a temporary email access link."
|
6732 |
msgstr ""
|
6733 |
|
|
|
6734 |
#: includes/admin/class-give-settings.php:670, includes/admin/settings/class-settings-general.php:109
|
6735 |
msgid "reCAPTCHA Site Key"
|
6736 |
msgstr ""
|
6740 |
msgid "If you would like to prevent spam on the email access form navigate to <a href=\"%s\" target=\"_blank\">the reCAPTCHA website</a> and sign up for an API key. The reCAPTCHA uses Google's user-friendly single click verification method."
|
6741 |
msgstr ""
|
6742 |
|
|
|
6743 |
#: includes/admin/class-give-settings.php:678, includes/admin/settings/class-settings-general.php:117
|
6744 |
msgid "reCAPTCHA Secret Key"
|
6745 |
msgstr ""
|
6807 |
msgid "Invalid license. Please <a href=\"%s\" target=\"_blank\" title=\"Visit account page\">visit your account page</a> and verify it."
|
6808 |
msgstr ""
|
6809 |
|
|
|
|
|
6810 |
#: includes/admin/class-give-settings.php:1258, includes/admin/class-give-settings.php:1268, includes/admin/class-give-settings.php:1339
|
6811 |
msgid "Your %1$s is not active for this URL. Please <a href=\"%2$s\" target=\"_blank\" title=\"Visit account page\">visit your account page</a> to manage your license key URLs."
|
6812 |
msgstr ""
|
6954 |
msgid "Global Default"
|
6955 |
msgstr ""
|
6956 |
|
|
|
6957 |
#: includes/admin/give-metabox-functions.php:917, includes/emails/template.php:138
|
6958 |
msgid "Send Test Email."
|
6959 |
msgstr ""
|
6960 |
|
|
|
6961 |
#: includes/admin/give-metabox-functions.php:918, includes/emails/template.php:139
|
6962 |
msgid "Send Test Email"
|
6963 |
msgstr ""
|
6966 |
msgid "Group"
|
6967 |
msgstr ""
|
6968 |
|
|
|
|
|
6969 |
#: includes/admin/give-metabox-functions.php:1175, includes/admin/give-metabox-functions.php:1210, includes/admin/give-metabox-functions.php:1245
|
6970 |
msgid "Remove Group"
|
6971 |
msgstr ""
|
6978 |
msgid "Documentation"
|
6979 |
msgstr ""
|
6980 |
|
|
|
6981 |
#: includes/admin/plugins.php:221, includes/admin/welcome.php:179
|
6982 |
msgid "Give"
|
6983 |
msgstr ""
|
6991 |
msgid "Welcome to Give"
|
6992 |
msgstr ""
|
6993 |
|
|
|
6994 |
#: includes/admin/welcome.php:66, includes/admin/welcome.php:67
|
6995 |
msgid "Give Changelog"
|
6996 |
msgstr ""
|
7038 |
msgid "Version %s"
|
7039 |
msgstr ""
|
7040 |
|
|
|
|
|
7041 |
#: includes/admin/welcome.php:184, includes/admin/tools/export/pdf-reports.php:75, includes/admin/tools/export/pdf-reports.php:76
|
7042 |
msgid "Give - Democratizing Generosity"
|
7043 |
msgstr ""
|
7181 |
msgid "Form %s not found."
|
7182 |
msgstr ""
|
7183 |
|
|
|
7184 |
#: includes/api/class-give-api.php:1165, includes/api/class-give-api.php:1280
|
7185 |
msgid "The end date must be later than the start date."
|
7186 |
msgstr ""
|
7187 |
|
|
|
7188 |
#: includes/api/class-give-api.php:1170, includes/api/class-give-api.php:1285
|
7189 |
msgid "Invalid or no date range specified."
|
7190 |
msgstr ""
|
7223 |
msgid "You do not have permission to %s API keys for this user."
|
7224 |
msgstr ""
|
7225 |
|
|
|
7226 |
#: includes/deprecated/deprecated-functions.php:69, includes/admin/tools/class-settings-logs.php:94
|
7227 |
msgid "Payment Errors"
|
7228 |
msgstr ""
|
7229 |
|
|
|
7230 |
#: includes/deprecated/deprecated-functions.php:70, includes/admin/tools/class-settings-logs.php:95
|
7231 |
msgid "API Requests"
|
7232 |
msgstr ""
|
7235 |
msgid "The donation form name, and the donation level (if applicable)."
|
7236 |
msgstr ""
|
7237 |
|
|
|
7238 |
#: includes/emails/class-give-email-tags.php:325, includes/emails/class-give-email-tags.php:331
|
7239 |
msgid "The total donation amount with currency sign."
|
7240 |
msgstr ""
|
7311 |
msgid "View it in your browser »"
|
7312 |
msgstr ""
|
7313 |
|
|
|
7314 |
#: includes/emails/class-give-email-tags.php:1247, includes/admin/emails/abstract-email-notification.php:845
|
7315 |
msgid "View your donation history »"
|
7316 |
msgstr ""
|
7347 |
msgid "This email is to inform you that a new donation has been made on your website:"
|
7348 |
msgstr ""
|
7349 |
|
|
|
|
|
|
|
7350 |
#: includes/emails/functions.php:89, includes/emails/functions.php:112, includes/gateways/offline-donations.php:244, includes/admin/emails/class-new-offline-donation-email.php:112
|
7351 |
msgid "Donor:"
|
7352 |
msgstr ""
|
7353 |
|
|
|
7354 |
#: includes/emails/functions.php:90, includes/emails/functions.php:113
|
7355 |
msgid "Donation:"
|
7356 |
msgstr ""
|
7357 |
|
|
|
|
|
|
|
7358 |
#: includes/emails/functions.php:91, includes/emails/functions.php:115, includes/gateways/offline-donations.php:245, includes/admin/emails/class-new-offline-donation-email.php:113
|
7359 |
msgid "Amount:"
|
7360 |
msgstr ""
|
7361 |
|
|
|
7362 |
#: includes/emails/functions.php:92, includes/emails/functions.php:116
|
7363 |
msgid "Payment Method:"
|
7364 |
msgstr ""
|
7365 |
|
|
|
7366 |
#: includes/emails/functions.php:93, includes/emails/functions.php:256
|
7367 |
msgid "Thank you,"
|
7368 |
msgstr ""
|
7375 |
msgid "Thank you for your donation. Your generosity is appreciated! Here are the details of your donation:"
|
7376 |
msgstr ""
|
7377 |
|
|
|
7378 |
#: includes/emails/functions.php:114, includes/admin/payments/view-payment-details.php:432
|
7379 |
msgid "Donation Date:"
|
7380 |
msgstr ""
|
7387 |
msgid "Receipt ID:"
|
7388 |
msgstr ""
|
7389 |
|
|
|
|
|
7390 |
#: includes/emails/functions.php:121, includes/gateways/offline-donations.php:422, includes/admin/emails/class-email-access-email.php:184
|
7391 |
msgid "Sincerely,"
|
7392 |
msgstr ""
|
7416 |
msgid "User - Donor Profile Disconnection"
|
7417 |
msgstr ""
|
7418 |
|
|
|
7419 |
#: includes/emails/template.php:74, includes/admin/emails/abstract-email-notification.php:797
|
7420 |
msgid "View the receipt in your browser »"
|
7421 |
msgstr ""
|
7422 |
|
|
|
7423 |
#: includes/emails/template.php:88, includes/admin/emails/abstract-email-notification.php:829
|
7424 |
msgid "Sample Donation Form Title"
|
7425 |
msgstr ""
|
7426 |
|
|
|
7427 |
#: includes/emails/template.php:89, includes/admin/emails/abstract-email-notification.php:830
|
7428 |
msgid "Sample Donation Form Title - Sample Donation Level"
|
7429 |
msgstr ""
|
7444 |
msgid "Goal achieved"
|
7445 |
msgstr ""
|
7446 |
|
|
|
7447 |
#: includes/forms/template.php:411, includes/forms/template.php:432
|
7448 |
msgid "Donation Amount:"
|
7449 |
msgstr ""
|
7450 |
|
|
|
7451 |
#: includes/forms/template.php:493, includes/admin/forms/class-metabox-form-data.php:177
|
7452 |
msgid "Give a Custom Amount"
|
7453 |
msgstr ""
|
7472 |
msgid "Donate on behalf of Company"
|
7473 |
msgstr ""
|
7474 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7475 |
#: includes/forms/template.php:715, includes/forms/template.php:726, includes/admin/donors/donors.php:767, includes/admin/tools/export/class-batch-export-donors.php:191, includes/admin/tools/export/give-export-donations-exporter.php:179, includes/admin/tools/import/class-give-import-donations.php:490, templates/email-login-form.php:59, templates/shortcode-profile-editor.php:126
|
7476 |
msgid "Email Address"
|
7477 |
msgstr ""
|
7536 |
msgid "MM / YY"
|
7537 |
msgstr ""
|
7538 |
|
|
|
7539 |
#: includes/forms/template.php:897, includes/admin/settings/class-settings-gateways.php:84
|
7540 |
msgid "Billing Details"
|
7541 |
msgstr ""
|
7568 |
msgid "The state, province, or county for your billing address."
|
7569 |
msgstr ""
|
7570 |
|
|
|
7571 |
#: includes/forms/template.php:1058, includes/forms/template.php:1071
|
7572 |
msgid "Zip / Postal Code"
|
7573 |
msgstr ""
|
7592 |
msgid "Already have an account?"
|
7593 |
msgstr ""
|
7594 |
|
|
|
|
|
|
|
|
|
7595 |
#: includes/forms/template.php:1169, includes/forms/template.php:1304, includes/admin/forms/class-metabox-form-data.php:315, includes/admin/shortcodes/shortcode-give-login.php:24, includes/admin/shortcodes/shortcode-give-login.php:25
|
7596 |
msgid "Login"
|
7597 |
msgstr ""
|
7620 |
msgid "Your username"
|
7621 |
msgstr ""
|
7622 |
|
|
|
|
|
7623 |
#: includes/forms/template.php:1284, templates/shortcode-login.php:34, templates/shortcode-register.php:44
|
7624 |
msgid "Password"
|
7625 |
msgstr ""
|
7680 |
msgid "Give Form:"
|
7681 |
msgstr ""
|
7682 |
|
|
|
7683 |
#: includes/forms/widget.php:149, includes/admin/shortcodes/abstract-shortcode-generator.php:257
|
7684 |
msgid "- Select -"
|
7685 |
msgstr ""
|
7688 |
msgid "Select a Give Form to embed in this widget."
|
7689 |
msgstr ""
|
7690 |
|
|
|
7691 |
#: includes/forms/widget.php:160, includes/admin/shortcodes/shortcode-give-donation-grid.php:97
|
7692 |
msgid "Display Style:"
|
7693 |
msgstr ""
|
7694 |
|
|
|
|
|
7695 |
#: includes/forms/widget.php:161, includes/admin/forms/class-metabox-form-data.php:250, includes/admin/shortcodes/shortcode-give-form.php:103
|
7696 |
msgid "All Fields"
|
7697 |
msgstr ""
|
7698 |
|
|
|
|
|
7699 |
#: includes/forms/widget.php:162, includes/admin/forms/class-metabox-form-data.php:252, includes/admin/shortcodes/shortcode-give-form.php:105
|
7700 |
msgid "Reveal"
|
7701 |
msgstr ""
|
7702 |
|
|
|
|
|
|
|
7703 |
#: includes/forms/widget.php:163, includes/admin/forms/class-metabox-form-data.php:251, includes/admin/shortcodes/shortcode-give-donation-grid.php:101, includes/admin/shortcodes/shortcode-give-form.php:104
|
7704 |
msgid "Modal"
|
7705 |
msgstr ""
|
7706 |
|
|
|
|
|
7707 |
#: includes/forms/widget.php:164, includes/admin/forms/class-metabox-form-data.php:253, includes/admin/shortcodes/shortcode-give-form.php:106
|
7708 |
msgid "Button"
|
7709 |
msgstr ""
|
7716 |
msgid "Button Text:"
|
7717 |
msgstr ""
|
7718 |
|
|
|
|
|
7719 |
#: includes/forms/widget.php:174, includes/admin/forms/class-metabox-form-data.php:260, includes/admin/shortcodes/shortcode-give-form.php:114
|
7720 |
msgid "The button label for displaying the additional payment fields."
|
7721 |
msgstr ""
|
7724 |
msgid "Floating Labels (optional):"
|
7725 |
msgstr ""
|
7726 |
|
|
|
|
|
|
|
|
|
7727 |
#: includes/forms/widget.php:180, includes/gateways/offline-donations.php:308, includes/admin/forms/class-metabox-form-data.php:289, includes/admin/forms/class-metabox-form-data.php:327, includes/admin/forms/class-metabox-form-data.php:521
|
7728 |
msgid "Global Option"
|
7729 |
msgstr ""
|
7753 |
msgid "You must enable a payment gateway to use Give."
|
7754 |
msgstr ""
|
7755 |
|
|
|
7756 |
#: includes/gateways/functions.php:28, includes/admin/emails/abstract-email-notification.php:823
|
7757 |
msgid "PayPal"
|
7758 |
msgstr ""
|
7759 |
|
|
|
|
|
|
|
|
|
|
|
7760 |
#: includes/gateways/functions.php:31, includes/gateways/functions.php:32, includes/gateways/functions.php:130, includes/gateways/functions.php:150, includes/admin/payments/view-payment-details.php:74, includes/admin/tools/views/html-admin-page-system-info.php:589
|
7761 |
msgid "Test Donation"
|
7762 |
msgstr ""
|
7763 |
|
|
|
7764 |
#. translators: %s: payment data
|
7765 |
#: includes/gateways/functions.php:274, includes/gateways/manual.php:62, includes/gateways/paypal-standard.php:58
|
7766 |
msgid "Payment Error"
|
7771 |
msgid "The payment creation failed while processing a manual (free or test) donation. Payment data: %s"
|
7772 |
msgstr ""
|
7773 |
|
|
|
7774 |
#: includes/gateways/offline-donations.php:24, includes/gateways/offline-donations.php:25
|
7775 |
msgid "Offline Donation"
|
7776 |
msgstr ""
|
7777 |
|
|
|
7778 |
#: includes/gateways/offline-donations.php:237, includes/admin/emails/class-new-offline-donation-email.php:83
|
7779 |
msgid "New Pending Donation"
|
7780 |
msgstr ""
|
7781 |
|
|
|
7782 |
#: includes/gateways/offline-donations.php:239, includes/admin/emails/class-new-offline-donation-email.php:108
|
7783 |
msgid "Dear Admin,"
|
7784 |
msgstr ""
|
7795 |
msgid "View Donation Details »"
|
7796 |
msgstr ""
|
7797 |
|
|
|
7798 |
#: includes/gateways/offline-donations.php:261, includes/admin/emails/class-new-offline-donation-email.php:43
|
7799 |
msgid "New Offline Donation"
|
7800 |
msgstr ""
|
7803 |
msgid "Do you want to customize the donation instructions for this form?"
|
7804 |
msgstr ""
|
7805 |
|
|
|
|
|
|
|
7806 |
#: includes/gateways/offline-donations.php:309, includes/admin/emails/class-email-notifications.php:131, includes/admin/emails/class-email-setting-field.php:175, includes/admin/forms/class-metabox-form-data.php:522
|
7807 |
msgid "Customize"
|
7808 |
msgstr ""
|
7809 |
|
|
|
7810 |
#: includes/gateways/offline-donations.php:310, includes/admin/forms/class-metabox-form-data.php:523
|
7811 |
msgid "Disable"
|
7812 |
msgstr ""
|
7819 |
msgid "This option will enable the billing details section for this form's offline donation payment gateway. The fieldset will appear above the offline donation instructions."
|
7820 |
msgstr ""
|
7821 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7822 |
#: includes/gateways/offline-donations.php:322, includes/admin/emails/class-email-setting-field.php:165, includes/admin/forms/class-metabox-form-data.php:149, includes/admin/forms/class-metabox-form-data.php:303, includes/admin/forms/class-metabox-form-data.php:328, includes/admin/forms/class-metabox-form-data.php:361, includes/admin/forms/class-metabox-form-data.php:428, includes/admin/forms/class-metabox-form-data.php:468, includes/admin/settings/class-settings-advanced.php:87, includes/admin/settings/class-settings-advanced.php:109, includes/admin/settings/class-settings-advanced.php:149, includes/admin/settings/class-settings-display.php:62, includes/admin/settings/class-settings-display.php:79, includes/admin/settings/class-settings-display.php:96, includes/admin/settings/class-settings-display.php:139, includes/admin/settings/class-settings-display.php:155, includes/admin/settings/class-settings-display.php:166, includes/admin/settings/class-settings-display.php:177, includes/admin/settings/class-settings-display.php:196, includes/admin/settings/class-settings-display.php:227, includes/admin/settings/class-settings-display.php:238, includes/admin/settings/class-settings-display.php:269, includes/admin/settings/class-settings-gateways.php:90, includes/admin/settings/class-settings-gateways.php:101, includes/admin/settings/class-settings-gateways.php:133, includes/admin/settings/class-settings-gateways.php:175, includes/admin/settings/class-settings-gateways.php:294, includes/admin/settings/class-settings-general.php:92, includes/admin/settings/class-settings-general.php:103, includes/admin/settings/class-settings-general.php:333, includes/admin/tools/import/class-give-import-donations.php:939, includes/admin/tools/import/class-give-import-donations.php:950, includes/admin/tools/import/class-give-import-donations.php:961, includes/admin/tools/views/html-admin-page-system-info.php:458, includes/admin/tools/views/html-admin-page-system-info.php:499, includes/admin/tools/views/html-admin-page-system-info.php:536, includes/admin/tools/views/html-admin-page-system-info.php:614, includes/admin/tools/views/html-admin-page-system-info.php:646, includes/admin/tools/views/html-admin-page-system-info.php:661, includes/admin/tools/views/html-admin-page-system-info.php:666, includes/admin/tools/views/html-admin-page-system-info.php:687, includes/admin/tools/views/html-admin-page-system-info.php:692
|
7823 |
msgid "Enabled"
|
7824 |
msgstr ""
|
7825 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7826 |
#: includes/gateways/offline-donations.php:323, includes/admin/emails/class-email-setting-field.php:166, includes/admin/emails/class-email-setting-field.php:176, includes/admin/forms/class-metabox-form-data.php:150, includes/admin/forms/class-metabox-form-data.php:292, includes/admin/forms/class-metabox-form-data.php:304, includes/admin/forms/class-metabox-form-data.php:329, includes/admin/forms/class-metabox-form-data.php:362, includes/admin/forms/class-metabox-form-data.php:429, includes/admin/forms/class-metabox-form-data.php:469, includes/admin/settings/class-settings-advanced.php:88, includes/admin/settings/class-settings-advanced.php:110, includes/admin/settings/class-settings-advanced.php:150, includes/admin/settings/class-settings-display.php:63, includes/admin/settings/class-settings-display.php:80, includes/admin/settings/class-settings-display.php:97, includes/admin/settings/class-settings-display.php:107, includes/admin/settings/class-settings-display.php:140, includes/admin/settings/class-settings-display.php:156, includes/admin/settings/class-settings-display.php:167, includes/admin/settings/class-settings-display.php:178, includes/admin/settings/class-settings-display.php:197, includes/admin/settings/class-settings-display.php:228, includes/admin/settings/class-settings-display.php:239, includes/admin/settings/class-settings-display.php:270, includes/admin/settings/class-settings-gateways.php:91, includes/admin/settings/class-settings-gateways.php:102, includes/admin/settings/class-settings-gateways.php:134, includes/admin/settings/class-settings-gateways.php:176, includes/admin/settings/class-settings-general.php:93, includes/admin/settings/class-settings-general.php:104, includes/admin/settings/class-settings-general.php:334, includes/admin/tools/import/class-give-import-donations.php:940, includes/admin/tools/import/class-give-import-donations.php:951, includes/admin/tools/import/class-give-import-donations.php:962, includes/admin/tools/views/html-admin-page-system-info.php:458, includes/admin/tools/views/html-admin-page-system-info.php:499, includes/admin/tools/views/html-admin-page-system-info.php:536, includes/admin/tools/views/html-admin-page-system-info.php:614, includes/admin/tools/views/html-admin-page-system-info.php:646, includes/admin/tools/views/html-admin-page-system-info.php:661, includes/admin/tools/views/html-admin-page-system-info.php:666, includes/admin/tools/views/html-admin-page-system-info.php:687, includes/admin/tools/views/html-admin-page-system-info.php:692
|
7827 |
msgid "Disabled"
|
7828 |
msgstr ""
|
7851 |
msgid "On the memo line of the check, please indicate that the donation is for \"%s\""
|
7852 |
msgstr ""
|
7853 |
|
|
|
7854 |
#: includes/gateways/offline-donations.php:378, includes/gateways/offline-donations.php:416
|
7855 |
msgid "Please mail your check to:"
|
7856 |
msgstr ""
|
7889 |
msgid "IPN Error"
|
7890 |
msgstr ""
|
7891 |
|
|
|
7892 |
#: includes/gateways/paypal-standard.php:180, includes/gateways/paypal-standard.php:187
|
7893 |
msgid "Invalid IPN verification response. IPN data: %s"
|
7894 |
msgstr ""
|
7923 |
|
7924 |
#. translators: %s: Paypal transaction ID
|
7925 |
#. translators: %s: Paypal transaction id
|
|
|
7926 |
#. translators: %s: Paypal transaction id
|
7927 |
#: includes/gateways/paypal-standard.php:340, tests/unit-tests/tests-payment-class.php:28, tests/unit-tests/tests-payments.php:48, tests/framework/helpers/class-helper-payment.php:203
|
7928 |
msgid "PayPal Transaction ID: %s"
|
7988 |
msgid "This custom meta key deprecated. We are not using this meta key for storing payment meta but your custom meta data will be store because we added backward compatibility. Please change your logic because in future we can remove it."
|
7989 |
msgstr ""
|
7990 |
|
|
|
7991 |
#: includes/payments/functions.php:534, includes/admin/payments/class-payments-table.php:297
|
7992 |
msgid "Pending"
|
7993 |
msgstr ""
|
8000 |
msgid "Pre-Approved"
|
8001 |
msgstr ""
|
8002 |
|
|
|
8003 |
#: includes/payments/functions.php:541, includes/admin/payments/class-payments-table.php:301
|
8004 |
msgid "Processing"
|
8005 |
msgstr ""
|
8006 |
|
|
|
|
|
|
|
8007 |
#: includes/payments/functions.php:1504, includes/admin/donors/donor-actions.php:469, includes/admin/donors/donor-actions.php:523, includes/admin/donors/donor-actions.php:571
|
8008 |
msgid "System"
|
8009 |
msgstr ""
|
8012 |
msgid "Delete this donation note."
|
8013 |
msgstr ""
|
8014 |
|
|
|
|
|
|
|
|
|
|
|
8015 |
#: includes/payments/functions.php:1523, includes/admin/donors/class-donor-table.php:237, includes/admin/donors/class-donor-table.php:278, includes/admin/donors/class-donor-table.php:470, includes/admin/payments/class-payments-table.php:606, includes/admin/payments/class-payments-table.php:730
|
8016 |
msgid "Delete"
|
8017 |
msgstr ""
|
8018 |
|
|
|
8019 |
#: includes/payments/functions.php:1747, includes/admin/forms/class-metabox-form-data.php:143
|
8020 |
msgid "Custom Amount"
|
8021 |
msgstr ""
|
8025 |
msgid "Custom"
|
8026 |
msgstr ""
|
8027 |
|
|
|
8028 |
#: includes/admin/donors/class-donor-table.php:174, includes/admin/reports/class-donor-reports-table.php:181
|
8029 |
msgid "Unnamed Donor"
|
8030 |
msgstr ""
|
8031 |
|
|
|
|
|
|
|
8032 |
#: includes/admin/donors/class-donor-table.php:195, includes/admin/reports/class-donor-reports-table.php:218, includes/admin/reports/class-gateways-reports-table.php:139, includes/admin/tools/views/html-admin-page-exports.php:183
|
8033 |
msgid "Total Donated"
|
8034 |
msgstr ""
|
8035 |
|
|
|
8036 |
#: includes/admin/donors/class-donor-table.php:196, includes/admin/tools/export/class-batch-export-forms.php:47
|
8037 |
msgid "Date Created"
|
8038 |
msgstr ""
|
8061 |
msgid "Are you sure you want to delete the selected donor(s)?"
|
8062 |
msgstr ""
|
8063 |
|
|
|
8064 |
#: includes/admin/donors/class-donor-table.php:459, includes/admin/donors/donors.php:1041
|
8065 |
msgid "Delete all associated donations and records?"
|
8066 |
msgstr ""
|
8067 |
|
|
|
|
|
|
|
8068 |
#: includes/admin/donors/donor-actions.php:31, includes/admin/donors/donor-actions.php:144, includes/admin/donors/donor-actions.php:325, includes/admin/donors/donor-actions.php:418
|
8069 |
msgid "You do not have permission to edit this donor."
|
8070 |
msgstr ""
|
8071 |
|
|
|
|
|
|
|
|
|
8072 |
#: includes/admin/donors/donor-actions.php:45, includes/admin/donors/donor-actions.php:158, includes/admin/donors/donor-actions.php:241, includes/admin/donors/donor-actions.php:339, includes/admin/donors/donor-actions.php:615
|
8073 |
msgid "Cheatin’ uh?"
|
8074 |
msgstr ""
|
8085 |
msgid "A note is required."
|
8086 |
msgstr ""
|
8087 |
|
|
|
8088 |
#: includes/admin/donors/donor-actions.php:226, includes/admin/donors/donor-actions.php:599
|
8089 |
msgid "You do not have permission to delete donors."
|
8090 |
msgstr ""
|
8129 |
msgid "Email address %1$s added by %2$s"
|
8130 |
msgstr ""
|
8131 |
|
|
|
8132 |
#: includes/admin/donors/donor-actions.php:474, includes/admin/donors/donor-actions.php:572
|
8133 |
msgid "Email address %1$s set as primary by %2$s"
|
8134 |
msgstr ""
|
8135 |
|
|
|
8136 |
#: includes/admin/donors/donor-actions.php:514, includes/admin/donors/donor-actions.php:561
|
8137 |
msgid "Nonce verification failed"
|
8138 |
msgstr ""
|
8149 |
msgid "Donor Notes"
|
8150 |
msgstr ""
|
8151 |
|
|
|
8152 |
#: includes/admin/donors/donor-functions.php:80, includes/admin/donors/donors.php:1063
|
8153 |
msgid "Delete Donor"
|
8154 |
msgstr ""
|
8155 |
|
|
|
|
|
8156 |
#: includes/admin/donors/donors.php:74, includes/admin/emails/class-email-notification-table.php:191, includes/admin/emails/class-email-notification-table.php:224
|
8157 |
msgid "Edit"
|
8158 |
msgstr ""
|
8159 |
|
|
|
8160 |
#: includes/admin/donors/donors.php:75, includes/admin/donors/donors.php:755
|
8161 |
msgid "Remove"
|
8162 |
msgstr ""
|
8163 |
|
|
|
8164 |
#: includes/admin/donors/donors.php:177, includes/admin/reports/class-donor-reports-table.php:145
|
8165 |
msgid "Search Donors"
|
8166 |
msgstr ""
|
8182 |
msgid "Edit Donor"
|
8183 |
msgstr ""
|
8184 |
|
|
|
8185 |
#: includes/admin/donors/donors.php:376, includes/admin/payments/view-payment-details.php:550
|
8186 |
msgid "Donor ID:"
|
8187 |
msgstr ""
|
8210 |
msgid "View User Profile"
|
8211 |
msgstr ""
|
8212 |
|
|
|
8213 |
#: includes/admin/donors/donors.php:440, includes/admin/payments/view-payment-details.php:602
|
8214 |
msgid "Company Name:"
|
8215 |
msgstr ""
|
8240 |
msgid "Add Address"
|
8241 |
msgstr ""
|
8242 |
|
|
|
8243 |
#: includes/admin/donors/donors.php:583, includes/admin/payments/view-payment-details.php:699
|
8244 |
msgid "Country:"
|
8245 |
msgstr ""
|
8246 |
|
|
|
8247 |
#: includes/admin/donors/donors.php:594, includes/admin/payments/view-payment-details.php:709
|
8248 |
msgid "Select a country"
|
8249 |
msgstr ""
|
8250 |
|
|
|
8251 |
#: includes/admin/donors/donors.php:602, includes/admin/payments/view-payment-details.php:719
|
8252 |
msgid "Address 1:"
|
8253 |
msgstr ""
|
8254 |
|
|
|
8255 |
#: includes/admin/donors/donors.php:610, includes/admin/payments/view-payment-details.php:726
|
8256 |
msgid "Address 2:"
|
8257 |
msgstr ""
|
8258 |
|
|
|
8259 |
#: includes/admin/donors/donors.php:619, includes/admin/payments/view-payment-details.php:733
|
8260 |
msgid "City:"
|
8261 |
msgstr ""
|
8262 |
|
|
|
8263 |
#: includes/admin/donors/donors.php:632, includes/admin/payments/view-payment-details.php:744
|
8264 |
msgid "State / Province / County:"
|
8265 |
msgstr ""
|
8266 |
|
|
|
8267 |
#: includes/admin/donors/donors.php:658, includes/admin/payments/view-payment-details.php:756
|
8268 |
msgid "Select a state"
|
8269 |
msgstr ""
|
8270 |
|
|
|
8271 |
#: includes/admin/donors/donors.php:671, includes/admin/payments/view-payment-details.php:771
|
8272 |
msgid "Zip / Postal Code:"
|
8273 |
msgstr ""
|
8280 |
msgid "Donor Emails"
|
8281 |
msgstr ""
|
8282 |
|
|
|
|
|
8283 |
#: includes/admin/donors/donors.php:725, includes/admin/donors/donors.php:802, includes/admin/donors/donors.php:860
|
8284 |
msgid "Actions"
|
8285 |
msgstr ""
|
8286 |
|
|
|
8287 |
#: includes/admin/donors/donors.php:753, includes/admin/donors/donors.php:770
|
8288 |
msgid "Make Primary"
|
8289 |
msgstr ""
|
8290 |
|
|
|
8291 |
#: includes/admin/donors/donors.php:772, includes/admin/emails/class-email-setting-field.php:315
|
8292 |
msgid "Add Email"
|
8293 |
msgstr ""
|
8300 |
msgid "Recent Donations"
|
8301 |
msgstr ""
|
8302 |
|
|
|
|
|
|
|
|
|
8303 |
#: includes/admin/donors/donors.php:798, includes/admin/forms/class-metabox-form-data.php:195, includes/admin/tools/export/class-batch-export-forms.php:44, includes/admin/tools/export/class-export.php:80, templates/history-donations.php:50
|
8304 |
msgid "ID"
|
8305 |
msgstr ""
|
8359 |
msgid "[%s] Your username and password"
|
8360 |
msgstr ""
|
8361 |
|
|
|
8362 |
#: includes/admin/emails/class-donor-register-email.php:76, includes/admin/emails/class-new-donor-register-email.php:77
|
8363 |
msgid "Username: {username}"
|
8364 |
msgstr ""
|
8375 |
msgid "Click Here to Login »"
|
8376 |
msgstr ""
|
8377 |
|
|
|
|
|
8378 |
#: includes/admin/emails/class-donor-register-email.php:101, includes/admin/emails/class-new-donor-register-email.php:36, includes/admin/emails/class-new-donor-register-email.php:98
|
8379 |
msgid "New User Registration"
|
8380 |
msgstr ""
|
8381 |
|
|
|
8382 |
#: includes/admin/emails/class-donor-register-email.php:150, includes/admin/emails/class-new-donor-register-email.php:147
|
8383 |
msgid "No donor(s) found."
|
8384 |
msgstr ""
|
8385 |
|
|
|
8386 |
#: includes/admin/emails/class-donor-register-email.php:154, includes/admin/emails/class-new-donor-register-email.php:151
|
8387 |
msgid "- Select a donor -"
|
8388 |
msgstr ""
|
8389 |
|
|
|
8390 |
#: includes/admin/emails/class-donor-register-email.php:188, includes/admin/emails/class-new-donor-register-email.php:201
|
8391 |
msgid "Preview email with a donor:"
|
8392 |
msgstr ""
|
8407 |
msgid "This notification is automatically toggled based on whether the email access is enabled or not."
|
8408 |
msgstr ""
|
8409 |
|
|
|
|
|
8410 |
#: includes/admin/emails/class-email-access-email.php:50, includes/admin/emails/class-new-offline-donation-email.php:58, includes/admin/emails/class-offline-donation-instruction-email.php:58
|
8411 |
msgid "Edit Setting"
|
8412 |
msgstr ""
|
8459 |
msgid "Email Options"
|
8460 |
msgstr ""
|
8461 |
|
|
|
8462 |
#: includes/admin/emails/class-email-notifications.php:137, includes/admin/settings/class-settings-email.php:77
|
8463 |
msgid "Choose your template from the available registered template types."
|
8464 |
msgstr ""
|
8465 |
|
|
|
8466 |
#: includes/admin/emails/class-email-notifications.php:151, includes/admin/settings/class-settings-email.php:90
|
8467 |
msgid "The name which appears in the \"From\" field in all Give donation emails."
|
8468 |
msgstr ""
|
8469 |
|
|
|
8470 |
#: includes/admin/emails/class-email-notifications.php:158, includes/admin/settings/class-settings-email.php:97
|
8471 |
msgid "Email address from which all Give emails are sent from. This will act as the \"from\" and \"reply-to\" email address."
|
8472 |
msgstr ""
|
8588 |
msgid "Sent to designated recipient(s) for a new (pending) offline donation."
|
8589 |
msgstr ""
|
8590 |
|
|
|
8591 |
#: includes/admin/emails/class-new-offline-donation-email.php:49, includes/admin/emails/class-offline-donation-instruction-email.php:49
|
8592 |
msgid "Offline"
|
8593 |
msgstr ""
|
8594 |
|
|
|
8595 |
#: includes/admin/emails/class-new-offline-donation-email.php:56, includes/admin/emails/class-offline-donation-instruction-email.php:56
|
8596 |
msgid "This notification is automatically toggled based on whether the gateway is enabled or not."
|
8597 |
msgstr ""
|
8624 |
msgid "Donation Form Options"
|
8625 |
msgstr ""
|
8626 |
|
|
|
8627 |
#: includes/admin/forms/class-metabox-form-data.php:101, includes/admin/forms/class-metabox-form-data.php:229
|
8628 |
msgid "Donation Options"
|
8629 |
msgstr ""
|
8640 |
msgid "Multi-level Donation"
|
8641 |
msgstr ""
|
8642 |
|
|
|
8643 |
#: includes/admin/forms/class-metabox-form-data.php:113, includes/admin/forms/class-metabox-form-data.php:117
|
8644 |
msgid "Set Donation"
|
8645 |
msgstr ""
|
8696 |
msgid "Text"
|
8697 |
msgstr ""
|
8698 |
|
|
|
|
|
8699 |
#: includes/admin/forms/class-metabox-form-data.php:219, includes/admin/settings/class-settings-gateways.php:293, includes/admin/tools/views/html-admin-page-system-info.php:116
|
8700 |
msgid "Default"
|
8701 |
msgstr ""
|
8702 |
|
|
|
8703 |
#: includes/admin/forms/class-metabox-form-data.php:241, includes/admin/forms/class-metabox-form-data.php:337
|
8704 |
msgid "Form Display"
|
8705 |
msgstr ""
|
8724 |
msgid "By default, the gateway for this form will inherit the global default gateway (set under Give > Settings > Payment Gateways). This option allows you to customize the default gateway for this form only."
|
8725 |
msgstr ""
|
8726 |
|
|
|
8727 |
#: includes/admin/forms/class-metabox-form-data.php:283, includes/admin/settings/class-settings-display.php:101
|
8728 |
msgid "Company Donations"
|
8729 |
msgstr ""
|
8730 |
|
|
|
8731 |
#: includes/admin/forms/class-metabox-form-data.php:284, includes/admin/settings/class-settings-display.php:102
|
8732 |
msgid "Do you want a Company field to appear after First Name and Last Name?"
|
8733 |
msgstr ""
|
8734 |
|
|
|
8735 |
#: includes/admin/forms/class-metabox-form-data.php:290, includes/admin/settings/class-settings-display.php:108
|
8736 |
msgid "Required"
|
8737 |
msgstr ""
|
8738 |
|
|
|
8739 |
#: includes/admin/forms/class-metabox-form-data.php:291, includes/admin/settings/class-settings-display.php:109
|
8740 |
msgid "Optional"
|
8741 |
msgstr ""
|
8748 |
msgid "Do you want to allow non-logged-in users to make donations?"
|
8749 |
msgstr ""
|
8750 |
|
|
|
8751 |
#: includes/admin/forms/class-metabox-form-data.php:308, includes/admin/forms/class-metabox-form-data.php:314
|
8752 |
msgid "Registration"
|
8753 |
msgstr ""
|
8760 |
msgid "Registration + Login"
|
8761 |
msgstr ""
|
8762 |
|
|
|
8763 |
#: includes/admin/forms/class-metabox-form-data.php:321, includes/admin/settings/class-settings-display.php:67
|
8764 |
msgid "Floating Labels"
|
8765 |
msgstr ""
|
8769 |
msgid "Select the <a href=\"%s\" target=\"_blank\">floating labels</a> setting for this Give form. Be aware that if you have the \"Disable CSS\" option enabled, you will need to style the floating labels yourself."
|
8770 |
msgstr ""
|
8771 |
|
|
|
|
|
|
|
8772 |
#: includes/admin/forms/class-metabox-form-data.php:350, includes/admin/forms/class-metabox-form-data.php:355, includes/admin/forms/class-metabox-form-data.php:394, includes/admin/forms/class-metabox-form-data.php:445
|
8773 |
msgid "Donation Goal"
|
8774 |
msgstr ""
|
8793 |
msgid "Percentage Raised"
|
8794 |
msgstr ""
|
8795 |
|
|
|
|
|
|
|
8796 |
#: includes/admin/forms/class-metabox-form-data.php:375, includes/admin/tools/export/class-batch-export-donors.php:208, includes/admin/tools/export/pdf-reports.php:113, includes/admin/tools/views/html-admin-page-exports.php:176
|
8797 |
msgid "Number of Donations"
|
8798 |
msgstr ""
|
8849 |
msgid "Thank you to all our donors, we have met our fundraising goal."
|
8850 |
msgstr ""
|
8851 |
|
|
|
8852 |
#: includes/admin/forms/class-metabox-form-data.php:457, includes/admin/forms/class-metabox-form-data.php:499
|
8853 |
msgid "Form Content"
|
8854 |
msgstr ""
|
8855 |
|
|
|
8856 |
#: includes/admin/forms/class-metabox-form-data.php:463, includes/admin/shortcodes/shortcode-give-form.php:88
|
8857 |
msgid "Display Content"
|
8858 |
msgstr ""
|
8889 |
msgid "Terms & Conditions"
|
8890 |
msgstr ""
|
8891 |
|
|
|
|
|
|
|
8892 |
#: includes/admin/forms/class-metabox-form-data.php:516, includes/admin/forms/class-metabox-form-data.php:551, includes/admin/settings/class-settings-display.php:263, includes/admin/settings/class-settings-display.php:333
|
8893 |
msgid "Terms and Conditions"
|
8894 |
msgstr ""
|
8905 |
msgid "The label shown next to the agree to terms check box. Add your own to customize or leave blank to use the default text placeholder."
|
8906 |
msgstr ""
|
8907 |
|
|
|
8908 |
#: includes/admin/forms/class-metabox-form-data.php:541, includes/admin/settings/class-settings-display.php:283
|
8909 |
msgid "Agreement Text"
|
8910 |
msgstr ""
|
8921 |
msgid "Goal"
|
8922 |
msgstr ""
|
8923 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8924 |
#: includes/admin/forms/dashboard-columns.php:41, includes/admin/reports/class-earnings-report.php:38, includes/admin/reports/class-earnings-report.php:76, includes/admin/reports/class-form-reports-table.php:122, includes/admin/reports/graphing.php:179, includes/admin/reports/graphing.php:426, includes/admin/reports/reports.php:103, includes/admin/tools/export/class-batch-export-forms.php:57, includes/admin/tools/export/pdf-reports.php:274
|
8925 |
msgid "Income"
|
8926 |
msgstr ""
|
8941 |
msgid "Give Form Shortcode:"
|
8942 |
msgstr ""
|
8943 |
|
|
|
|
|
|
|
|
|
8944 |
#: includes/admin/payments/actions.php:31, includes/admin/payments/actions.php:333, includes/admin/payments/actions.php:353, includes/admin/payments/actions.php:386, includes/admin/payments/actions.php:408
|
8945 |
msgid "You do not have permission to edit payments."
|
8946 |
msgstr ""
|
8957 |
msgid "Error creating new donor."
|
8958 |
msgstr ""
|
8959 |
|
|
|
8960 |
#: includes/admin/payments/class-payments-table.php:164, includes/admin/tools/logs/logs.php:195
|
8961 |
msgid "Search"
|
8962 |
msgstr ""
|
8969 |
msgid "End Date"
|
8970 |
msgstr ""
|
8971 |
|
|
|
8972 |
#: includes/admin/payments/class-payments-table.php:215, includes/admin/tools/logs/logs.php:243
|
8973 |
msgid "Apply"
|
8974 |
msgstr ""
|
8985 |
msgid "Preapproval Pending"
|
8986 |
msgstr ""
|
8987 |
|
|
|
|
|
8988 |
#: includes/admin/payments/class-payments-table.php:400, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:140, templates/history-donations.php:56
|
8989 |
msgid "Details"
|
8990 |
msgstr ""
|
8991 |
|
|
|
8992 |
#: includes/admin/payments/class-payments-table.php:460, includes/admin/tools/logs/class-sales-logs-list-table.php:103
|
8993 |
msgid "View Donation %s"
|
8994 |
msgstr ""
|
8995 |
|
|
|
|
|
8996 |
#: includes/admin/payments/class-payments-table.php:470, includes/admin/tools/logs/class-sales-logs-list-table.php:111, includes/admin/tools/logs/class-sales-logs-list-table.php:118
|
8997 |
msgid "by"
|
8998 |
msgstr ""
|
8999 |
|
|
|
9000 |
#: includes/admin/payments/class-payments-table.php:480, includes/admin/tools/logs/class-sales-logs-list-table.php:80
|
9001 |
msgid "via"
|
9002 |
msgstr ""
|
9017 |
msgid "Resend Donation %s Receipt"
|
9018 |
msgstr ""
|
9019 |
|
|
|
9020 |
#: includes/admin/payments/class-payments-table.php:591, includes/admin/payments/view-payment-details.php:259
|
9021 |
msgid "Resend Receipt"
|
9022 |
msgstr ""
|
9023 |
|
|
|
9024 |
#: includes/admin/payments/class-payments-table.php:606, includes/admin/payments/view-payment-details.php:144
|
9025 |
msgid "Delete Donation %s"
|
9026 |
msgstr ""
|
9027 |
|
|
|
|
|
9028 |
#: includes/admin/payments/class-payments-table.php:633, includes/admin/payments/view-payment-details.php:73, includes/admin/tools/logs/class-sales-logs-list-table.php:90
|
9029 |
msgid "This donation was made in test mode."
|
9030 |
msgstr ""
|
9031 |
|
|
|
9032 |
#: includes/admin/payments/class-payments-table.php:634, includes/admin/tools/logs/class-sales-logs-list-table.php:91
|
9033 |
msgid "Test"
|
9034 |
msgstr ""
|
9037 |
msgid "This donation was imported."
|
9038 |
msgstr ""
|
9039 |
|
|
|
|
|
|
|
|
|
9040 |
#: includes/admin/payments/class-payments-table.php:647, includes/admin/tools/class-settings-import.php:48, includes/admin/tools/class-settings-import.php:92, includes/admin/tools/import/class-give-import-core-settings.php:297, includes/admin/tools/import/class-give-import-donations.php:770
|
9041 |
msgid "Import"
|
9042 |
msgstr ""
|
9128 |
msgid "Time:"
|
9129 |
msgstr ""
|
9130 |
|
|
|
9131 |
#: includes/admin/payments/view-payment-details.php:206, includes/admin/payments/view-payment-details.php:468
|
9132 |
msgid "Total Donation:"
|
9133 |
msgstr ""
|
9256 |
msgid "Donation Forms Report"
|
9257 |
msgstr ""
|
9258 |
|
|
|
9259 |
#: includes/admin/reports/class-gateways-report.php:37, includes/admin/reports/reports.php:105
|
9260 |
msgid "Donation Methods"
|
9261 |
msgstr ""
|
9262 |
|
|
|
9263 |
#: includes/admin/reports/class-gateways-report.php:87, includes/admin/settings/class-settings-gateways.php:254
|
9264 |
msgid "Gateways"
|
9265 |
msgstr ""
|
9266 |
|
|
|
|
|
9267 |
#: includes/admin/reports/class-gateways-reports-table.php:135, includes/admin/settings/class-settings-gateways.php:291, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:137
|
9268 |
msgid "Gateway"
|
9269 |
msgstr ""
|
9284 |
msgid "Donation Methods Report"
|
9285 |
msgstr ""
|
9286 |
|
|
|
9287 |
#: includes/admin/reports/graphing.php:207, includes/admin/reports/graphing.php:455
|
9288 |
msgid "Total income for period:"
|
9289 |
msgstr ""
|
9290 |
|
|
|
9291 |
#: includes/admin/reports/graphing.php:211, includes/admin/reports/graphing.php:459
|
9292 |
msgid "Total donations for period:"
|
9293 |
msgstr ""
|
9337 |
msgid "Refresh Report Data"
|
9338 |
msgstr ""
|
9339 |
|
|
|
|
|
9340 |
#: includes/admin/reports/reports.php:51, includes/admin/tools/class-settings-export.php:37, includes/admin/tools/class-settings-export.php:76
|
9341 |
msgid "Export"
|
9342 |
msgstr ""
|
9349 |
msgid "Report Type"
|
9350 |
msgstr ""
|
9351 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9352 |
#: includes/admin/reports/reports.php:200, includes/admin/shortcodes/shortcode-give-donation-grid.php:70, includes/admin/shortcodes/shortcode-give-donation-grid.php:80, includes/admin/shortcodes/shortcode-give-donation-grid.php:90, includes/admin/shortcodes/shortcode-give-form.php:70, includes/admin/shortcodes/shortcode-give-form.php:80, includes/admin/shortcodes/shortcode-give-goal.php:71, includes/admin/shortcodes/shortcode-give-goal.php:81, includes/admin/shortcodes/shortcode-give-receipt.php:50, includes/admin/shortcodes/shortcode-give-receipt.php:59, includes/admin/shortcodes/shortcode-give-receipt.php:68, includes/admin/shortcodes/shortcode-give-receipt.php:77, includes/admin/shortcodes/shortcode-give-receipt.php:86, includes/admin/shortcodes/shortcode-give-receipt.php:95, includes/admin/shortcodes/shortcode-give-totals.php:125
|
9353 |
msgid "Show"
|
9354 |
msgstr ""
|
9584 |
msgid "This option will enable the billing details section for PayPal Standard which requires the donor's address to complete the donation. These fields are not required by PayPal to process the transaction, but you may have a need to collect the data."
|
9585 |
msgstr ""
|
9586 |
|
|
|
9587 |
#: includes/admin/settings/class-settings-gateways.php:95, includes/admin/tools/views/html-admin-page-system-info.php:612
|
9588 |
msgid "PayPal IPN Verification"
|
9589 |
msgstr ""
|
9673 |
msgid "General Options"
|
9674 |
msgstr ""
|
9675 |
|
|
|
|
|
9676 |
#: includes/admin/settings/class-settings-general.php:327, includes/admin/settings/class-settings-general.php:386, includes/admin/settings/class-settings-general.php:426
|
9677 |
msgid "Sequential Ordering"
|
9678 |
msgstr ""
|
9733 |
msgid "Unlock all settings"
|
9734 |
msgstr ""
|
9735 |
|
|
|
9736 |
#: includes/admin/shortcodes/abstract-shortcode-generator.php:92, includes/admin/shortcodes/abstract-shortcode-generator.php:97
|
9737 |
msgid "Insert Shortcode"
|
9738 |
msgstr ""
|
9739 |
|
9740 |
+
#: includes/admin/shortcodes/abstract-shortcode-generator.php:394
|
9741 |
msgid "Some of the shortcode options are required."
|
9742 |
msgstr ""
|
9743 |
|
9744 |
#. translators: %s: option label
|
9745 |
+
#: includes/admin/shortcodes/abstract-shortcode-generator.php:404
|
9746 |
msgid "The \"%s\" option is required."
|
9747 |
msgstr ""
|
9748 |
|
9758 |
msgid "Okay"
|
9759 |
msgstr ""
|
9760 |
|
|
|
9761 |
#: includes/admin/shortcodes/shortcode-give-donation-grid.php:26, includes/admin/shortcodes/shortcode-give-donation-grid.php:27
|
9762 |
msgid "Donation Form Grid"
|
9763 |
msgstr ""
|
9764 |
|
|
|
|
|
|
|
9765 |
#: includes/admin/shortcodes/shortcode-give-donation-grid.php:42, includes/admin/shortcodes/shortcode-give-form.php:62, includes/admin/shortcodes/shortcode-give-goal.php:63, includes/admin/shortcodes/shortcode-give-receipt.php:43
|
9766 |
msgid "Optional settings"
|
9767 |
msgstr ""
|
9771 |
msgstr ""
|
9772 |
|
9773 |
#: includes/admin/shortcodes/shortcode-give-donation-grid.php:48
|
9774 |
+
msgid "Enter a comma-separated list of form IDs. If empty, all published forms are displayed."
|
9775 |
msgstr ""
|
9776 |
|
9777 |
#: includes/admin/shortcodes/shortcode-give-donation-grid.php:54
|
9806 |
msgid "Show Goal:"
|
9807 |
msgstr ""
|
9808 |
|
|
|
9809 |
#: includes/admin/shortcodes/shortcode-give-donation-grid.php:68, includes/admin/shortcodes/shortcode-give-goal.php:79
|
9810 |
msgid "Do you want to display the goal's progress bar?"
|
9811 |
msgstr ""
|
9812 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9813 |
#: includes/admin/shortcodes/shortcode-give-donation-grid.php:71, includes/admin/shortcodes/shortcode-give-donation-grid.php:81, includes/admin/shortcodes/shortcode-give-donation-grid.php:91, includes/admin/shortcodes/shortcode-give-form.php:71, includes/admin/shortcodes/shortcode-give-form.php:81, includes/admin/shortcodes/shortcode-give-goal.php:72, includes/admin/shortcodes/shortcode-give-goal.php:82, includes/admin/shortcodes/shortcode-give-receipt.php:51, includes/admin/shortcodes/shortcode-give-receipt.php:60, includes/admin/shortcodes/shortcode-give-receipt.php:69, includes/admin/shortcodes/shortcode-give-receipt.php:78, includes/admin/shortcodes/shortcode-give-receipt.php:87, includes/admin/shortcodes/shortcode-give-receipt.php:96, includes/admin/shortcodes/shortcode-give-totals.php:126
|
9814 |
msgid "Hide"
|
9815 |
msgstr ""
|
9852 |
msgid "<a href=\"%s\">Create</a> a new Donation Form."
|
9853 |
msgstr ""
|
9854 |
|
|
|
|
|
|
|
9855 |
#: includes/admin/shortcodes/shortcode-give-form.php:53, includes/admin/shortcodes/shortcode-give-form.php:54, includes/admin/shortcodes/shortcode-give-goal.php:54, includes/admin/shortcodes/shortcode-give-goal.php:55
|
9856 |
msgid "Select a Donation Form"
|
9857 |
msgstr ""
|
9858 |
|
|
|
9859 |
#: includes/admin/shortcodes/shortcode-give-form.php:56, includes/admin/shortcodes/shortcode-give-goal.php:57
|
9860 |
msgid "You must first select a Form!"
|
9861 |
msgstr ""
|
9900 |
msgid "Button Text"
|
9901 |
msgstr ""
|
9902 |
|
|
|
9903 |
#: includes/admin/shortcodes/shortcode-give-goal.php:26, includes/admin/shortcodes/shortcode-give-goal.php:27
|
9904 |
msgid "Donation Form Goal"
|
9905 |
msgstr ""
|
9912 |
msgid "This text displays the amount of income raised compared to the goal."
|
9913 |
msgstr ""
|
9914 |
|
|
|
9915 |
#: includes/admin/shortcodes/shortcode-give-goal.php:78, includes/admin/shortcodes/shortcode-give-totals.php:122
|
9916 |
msgid "Show Progress Bar:"
|
9917 |
msgstr ""
|
9960 |
msgid "Show Payment ID:"
|
9961 |
msgstr ""
|
9962 |
|
|
|
|
|
9963 |
#: includes/admin/shortcodes/shortcode-give-register.php:24, includes/admin/shortcodes/shortcode-give-register.php:25, templates/shortcode-register.php:71
|
9964 |
msgid "Register"
|
9965 |
msgstr ""
|
9972 |
msgid "Enter an URL here to redirect to after registering."
|
9973 |
msgstr ""
|
9974 |
|
|
|
9975 |
#: includes/admin/shortcodes/shortcode-give-totals.php:26, includes/admin/shortcodes/shortcode-give-totals.php:27
|
9976 |
msgid "Give Totals"
|
9977 |
msgstr ""
|
10064 |
msgid "Log"
|
10065 |
msgstr ""
|
10066 |
|
10067 |
+
#: includes/admin/tools/class-settings-logs.php:96, includes/admin/upgrades/class-give-updates.php:254, includes/admin/upgrades/class-give-updates.php:272
|
|
|
|
|
10068 |
msgid "Updates"
|
10069 |
msgstr ""
|
10070 |
|
10071 |
+
#: includes/admin/upgrades/class-give-updates.php:253
|
10072 |
msgid "Give Updates Complete"
|
10073 |
msgstr ""
|
10074 |
|
10075 |
+
#: includes/admin/upgrades/class-give-updates.php:269
|
10076 |
msgid "Give Updates"
|
10077 |
msgstr ""
|
10078 |
|
10079 |
+
#: includes/admin/upgrades/class-give-updates.php:611, includes/admin/upgrades/class-give-updates.php:619, includes/admin/upgrades/class-give-updates.php:670
|
|
|
|
|
10080 |
msgid "Database Update"
|
10081 |
msgstr ""
|
10082 |
|
10083 |
+
#: includes/admin/upgrades/class-give-updates.php:612
|
10084 |
msgid "GiveWP needs to update your database to the latest version. The following process will make updates to your site's database. Please create a backup before proceeding."
|
10085 |
msgstr ""
|
10086 |
|
10087 |
+
#: includes/admin/upgrades/class-give-updates.php:616
|
10088 |
msgid "Restart the updater"
|
10089 |
msgstr ""
|
10090 |
|
10091 |
+
#: includes/admin/upgrades/class-give-updates.php:620, includes/admin/upgrades/class-give-updates.php:811, includes/admin/upgrades/views/upgrades.php:57
|
|
|
|
|
10092 |
msgid "An unexpected issue occurred during the database update which caused it to stop automatically. Please contact support for assistance."
|
10093 |
msgstr ""
|
10094 |
|
10095 |
+
#: includes/admin/upgrades/class-give-updates.php:644
|
10096 |
msgid "Give needs to upgrade the database but cannot because AJAX does not appear accessible. This could be because your website is password protected, in maintenance mode, or has a specific hosting configuration or plugin active that is preventing access."
|
10097 |
msgstr ""
|
10098 |
|
10099 |
+
#: includes/admin/upgrades/class-give-updates.php:644
|
10100 |
msgid "Read More"
|
10101 |
msgstr ""
|
10102 |
|
10103 |
+
#: includes/admin/upgrades/class-give-updates.php:657, includes/admin/upgrades/class-give-updates.php:818, includes/admin/upgrades/views/db-upgrades-complete-metabox.php:11
|
|
|
10104 |
msgid "Give database updates completed successfully. Thank you for updating to the latest version!"
|
10105 |
msgstr ""
|
10106 |
|
10107 |
+
#: includes/admin/upgrades/class-give-updates.php:671
|
10108 |
msgid "GiveWP needs to update your database to the latest version. The following process will make updates to your site's database. Please create a complete backup before proceeding."
|
10109 |
msgstr ""
|
10110 |
|
10111 |
+
#: includes/admin/upgrades/class-give-updates.php:675
|
10112 |
msgid "Run the updater"
|
10113 |
msgstr ""
|
10114 |
|
10115 |
+
#: includes/admin/upgrades/class-give-updates.php:805, includes/admin/upgrades/views/upgrades.php:59
|
|
|
10116 |
msgid "The updates have been paused."
|
10117 |
msgstr ""
|
10118 |
|
10119 |
+
#: includes/admin/upgrades/class-give-updates.php:819, includes/admin/upgrades/views/db-upgrades-complete-metabox.php:7
|
10120 |
msgid "Updates Completed."
|
10121 |
msgstr ""
|
10122 |
|
10140 |
msgid "Imported donor and transactions successfully deleted."
|
10141 |
msgstr ""
|
10142 |
|
|
|
10143 |
#: includes/admin/tools/data/class-give-tools-delete-test-donors.php:238, includes/admin/tools/data/class-give-tools-delete-test-transactions.php:129
|
10144 |
msgid "You do not have permission to delete test transactions."
|
10145 |
msgstr ""
|
10152 |
msgid "Test transactions successfully deleted."
|
10153 |
msgstr ""
|
10154 |
|
|
|
|
|
|
|
|
|
10155 |
#: includes/admin/tools/data/class-give-tools-recount-all-stats.php:248, includes/admin/tools/data/class-give-tools-recount-donor-stats.php:204, includes/admin/tools/data/class-give-tools-recount-form-stats.php:204, includes/admin/tools/data/class-give-tools-recount-income.php:178, includes/admin/tools/data/class-give-tools-recount-single-donor-stats.php:160
|
10156 |
msgid "You do not have permission to recount stats."
|
10157 |
msgstr ""
|
10160 |
msgid "Donation form income amounts and donation counts stats successfully recounted."
|
10161 |
msgstr ""
|
10162 |
|
|
|
10163 |
#: includes/admin/tools/data/class-give-tools-recount-donor-stats.php:217, includes/admin/tools/data/class-give-tools-recount-single-donor-stats.php:205
|
10164 |
msgid "Donor stats have been successfully recounted."
|
10165 |
msgstr ""
|
10184 |
msgid "Full Name"
|
10185 |
msgstr ""
|
10186 |
|
|
|
10187 |
#: includes/admin/tools/export/class-batch-export-donors.php:205, includes/admin/tools/views/html-admin-page-exports.php:169
|
10188 |
msgid "Donor Created Date"
|
10189 |
msgstr ""
|
10208 |
msgid "Excerpt"
|
10209 |
msgstr ""
|
10210 |
|
|
|
10211 |
#: includes/admin/tools/export/class-batch-export-forms.php:54, includes/admin/tools/export/pdf-reports.php:101
|
10212 |
msgid "Price"
|
10213 |
msgstr ""
|
10216 |
msgid "Featured Image"
|
10217 |
msgstr ""
|
10218 |
|
|
|
|
|
10219 |
#: includes/admin/tools/export/class-batch-export.php:145, includes/admin/tools/export/class-core-settings-export.php:80, includes/admin/tools/export/class-export.php:185
|
10220 |
msgid "You do not have permission to export data."
|
10221 |
msgstr ""
|
10261 |
msgid "Filter by Date:"
|
10262 |
msgstr ""
|
10263 |
|
|
|
10264 |
#: includes/admin/tools/export/class-give-export-donations.php:237, includes/admin/tools/views/html-admin-page-exports.php:113
|
10265 |
msgid "Start date"
|
10266 |
msgstr ""
|
10267 |
|
|
|
10268 |
#: includes/admin/tools/export/class-give-export-donations.php:244, includes/admin/tools/views/html-admin-page-exports.php:120
|
10269 |
msgid "End date"
|
10270 |
msgstr ""
|
10277 |
msgid "All Statuses"
|
10278 |
msgstr ""
|
10279 |
|
|
|
|
|
|
|
10280 |
#: includes/admin/tools/export/class-give-export-donations.php:286, includes/admin/tools/views/html-admin-page-exports.php:54, includes/admin/tools/views/html-admin-page-exports.php:93, includes/admin/tools/views/html-admin-page-exports.php:130
|
10281 |
msgid "Generate CSV"
|
10282 |
msgstr ""
|
10297 |
msgid "Batch Processing Complete"
|
10298 |
msgstr ""
|
10299 |
|
|
|
10300 |
#: includes/admin/tools/export/give-export-donations-exporter.php:170, includes/admin/tools/export/give-export-donations-functions.php:257
|
10301 |
msgid "Donation Number"
|
10302 |
msgstr ""
|
10303 |
|
|
|
10304 |
#: includes/admin/tools/export/give-export-donations-exporter.php:193, includes/admin/tools/export/give-export-donations-functions.php:268
|
10305 |
msgid "Donation Total"
|
10306 |
msgstr ""
|
10307 |
|
|
|
|
|
10308 |
#: includes/admin/tools/export/give-export-donations-exporter.php:196, includes/admin/tools/export/give-export-donations-functions.php:276, includes/admin/tools/views/html-admin-page-system-info.php:539
|
10309 |
msgid "Currency Code"
|
10310 |
msgstr ""
|
10311 |
|
|
|
10312 |
#: includes/admin/tools/export/give-export-donations-exporter.php:199, includes/admin/tools/export/give-export-donations-functions.php:284
|
10313 |
msgid "Currency Symbol"
|
10314 |
msgstr ""
|
10315 |
|
|
|
10316 |
#: includes/admin/tools/export/give-export-donations-exporter.php:205, includes/admin/tools/export/give-export-donations-functions.php:316
|
10317 |
msgid "Payment Gateway"
|
10318 |
msgstr ""
|
10329 |
msgid "Level Title"
|
10330 |
msgstr ""
|
10331 |
|
|
|
10332 |
#: includes/admin/tools/export/give-export-donations-exporter.php:223, includes/admin/tools/export/give-export-donations-functions.php:308
|
10333 |
msgid "Donation Time"
|
10334 |
msgstr ""
|
10335 |
|
|
|
10336 |
#: includes/admin/tools/export/give-export-donations-exporter.php:232, includes/admin/tools/export/give-export-donations-functions.php:453
|
10337 |
msgid "Donor IP Address"
|
10338 |
msgstr ""
|
10407 |
msgid "%1$s to %2$s"
|
10408 |
msgstr ""
|
10409 |
|
|
|
10410 |
#: includes/admin/tools/export/pdf-reports.php:74, includes/admin/tools/export/pdf-reports.php:86
|
10411 |
msgid "Donation report for the current year for all forms"
|
10412 |
msgstr ""
|
10503 |
msgid "View Settings"
|
10504 |
msgstr ""
|
10505 |
|
|
|
10506 |
#: includes/admin/tools/import/class-give-import-core-settings.php:265, includes/admin/tools/import/class-give-import-donations.php:390
|
10507 |
msgid "Importing"
|
10508 |
msgstr ""
|
10515 |
msgid "Upload JSON file"
|
10516 |
msgstr ""
|
10517 |
|
|
|
10518 |
#: includes/admin/tools/import/class-give-import-core-settings.php:300, includes/admin/tools/import/class-give-import-donations.php:773
|
10519 |
msgid "Done!"
|
10520 |
msgstr ""
|
10551 |
msgid "Replace"
|
10552 |
msgstr ""
|
10553 |
|
|
|
|
|
10554 |
#: includes/admin/tools/import/class-give-import-core-settings.php:398, includes/admin/tools/import/class-give-import-donations.php:209, includes/admin/tools/views/html-admin-page-data.php:76
|
10555 |
msgid "Submit"
|
10556 |
msgstr ""
|
10559 |
msgid "Please upload a valid JSON settings file."
|
10560 |
msgstr ""
|
10561 |
|
|
|
10562 |
#: includes/admin/tools/import/class-give-import-donations.php:250, includes/admin/tools/import/class-give-import-donations.php:268
|
10563 |
msgid "%s duplicate %s detected"
|
10564 |
msgstr ""
|
10565 |
|
|
|
10566 |
#: includes/admin/tools/import/class-give-import-donations.php:251, includes/admin/tools/import/class-give-import-donations.php:269
|
10567 |
msgid "%s duplicate %s will be detected"
|
10568 |
msgstr ""
|
10569 |
|
|
|
10570 |
#: includes/admin/tools/import/class-give-import-donations.php:252, includes/admin/tools/import/class-give-import-donations.php:258
|
10571 |
msgid "donor"
|
10572 |
msgstr ""
|
10573 |
|
|
|
10574 |
#: includes/admin/tools/import/class-give-import-donations.php:253, includes/admin/tools/import/class-give-import-donations.php:259
|
10575 |
msgid "donors"
|
10576 |
msgstr ""
|
10599 |
msgid "forms"
|
10600 |
msgstr ""
|
10601 |
|
|
|
10602 |
#: includes/admin/tools/import/class-give-import-donations.php:270, includes/admin/tools/import/class-give-import-donations.php:276
|
10603 |
msgid "donation"
|
10604 |
msgstr ""
|
10605 |
|
|
|
10606 |
#: includes/admin/tools/import/class-give-import-donations.php:271, includes/admin/tools/import/class-give-import-donations.php:277
|
10607 |
msgid "donations"
|
10608 |
msgstr ""
|
10773 |
msgid "Determine how many rows you would like to import per cycle."
|
10774 |
msgstr ""
|
10775 |
|
|
|
10776 |
#: includes/admin/tools/import/class-give-import-donations.php:1050, includes/admin/tools/import/class-give-import-donations.php:1054
|
10777 |
msgid "Please upload or provide a valid CSV file."
|
10778 |
msgstr ""
|
10779 |
|
|
|
|
|
|
|
10780 |
#: includes/admin/tools/logs/class-api-requests-logs-list-table.php:94, includes/admin/tools/logs/class-gateway-error-logs-list-table.php:135, includes/admin/tools/logs/class-sales-logs-list-table.php:139, includes/admin/tools/logs/class-update-logs-list-table.php:79
|
10781 |
msgid "Log ID"
|
10782 |
msgstr ""
|
10889 |
msgid "Recalculates the lifetime value and donation counts for all donors."
|
10890 |
msgstr ""
|
10891 |
|
|
|
10892 |
#: includes/admin/tools/views/html-admin-page-data.php:95, includes/admin/tools/views/html-admin-page-data.php:96
|
10893 |
msgid "Deletes"
|
10894 |
msgstr ""
|
11113 |
msgid "The page set to display as your front page."
|
11114 |
msgstr ""
|
11115 |
|
|
|
11116 |
#: includes/admin/tools/views/html-admin-page-system-info.php:131, includes/admin/tools/views/html-admin-page-system-info.php:136
|
11117 |
msgid "Unset"
|
11118 |
msgstr ""
|
11374 |
msgid "wp_remote_post() failed. PayPal IPN won't work with your server. Contact your hosting provider."
|
11375 |
msgstr ""
|
11376 |
|
|
|
11377 |
#: includes/admin/tools/views/html-admin-page-system-info.php:398, includes/admin/tools/views/html-admin-page-system-info.php:416
|
11378 |
msgid "Error: %s"
|
11379 |
msgstr ""
|
11380 |
|
|
|
11381 |
#: includes/admin/tools/views/html-admin-page-system-info.php:400, includes/admin/tools/views/html-admin-page-system-info.php:418
|
11382 |
msgid "Status code: %s"
|
11383 |
msgstr ""
|
11406 |
msgid "The version of Give installed on your site."
|
11407 |
msgstr ""
|
11408 |
|
|
|
11409 |
#: includes/admin/tools/views/html-admin-page-system-info.php:456, includes/admin/tools/views/html-admin-page-system-info.php:497
|
11410 |
msgid "Give Cache"
|
11411 |
msgstr ""
|
11412 |
|
|
|
11413 |
#: includes/admin/tools/views/html-admin-page-system-info.php:457, includes/admin/tools/views/html-admin-page-system-info.php:498
|
11414 |
msgid "Whether cache is enabled in Give settings."
|
11415 |
msgstr ""
|
11416 |
|
11417 |
+
#: includes/admin/tools/views/html-admin-page-system-info.php:461, includes/admin/upgrades/views/db-upgrades-complete-metabox.php:4, includes/admin/upgrades/views/upgrades.php:39
|
|
|
11418 |
msgid "Database Updates"
|
11419 |
msgstr ""
|
11420 |
|
11614 |
msgid "Active Give Add-ons"
|
11615 |
msgstr ""
|
11616 |
|
|
|
|
|
|
|
|
|
11617 |
#: includes/admin/tools/views/html-admin-page-system-info.php:719, includes/admin/tools/views/html-admin-page-system-info.php:784, includes/admin/tools/views/html-admin-page-system-info.php:831, includes/admin/tools/views/html-admin-page-system-info.php:879, includes/admin/upgrades/views/plugins-update-section.php:22
|
11618 |
msgid "Visit plugin homepage"
|
11619 |
msgstr ""
|
11620 |
|
|
|
|
|
|
|
11621 |
#: includes/admin/tools/views/html-admin-page-system-info.php:729, includes/admin/tools/views/html-admin-page-system-info.php:794, includes/admin/tools/views/html-admin-page-system-info.php:841, includes/admin/upgrades/views/plugins-update-section.php:33
|
11622 |
msgid "Visit author homepage"
|
11623 |
msgstr ""
|
11624 |
|
|
|
11625 |
#: includes/admin/tools/views/html-admin-page-system-info.php:740, includes/admin/upgrades/views/plugins-update-section.php:42
|
11626 |
msgid "Licensed"
|
11627 |
msgstr ""
|
11628 |
|
|
|
11629 |
#: includes/admin/tools/views/html-admin-page-system-info.php:742, includes/admin/upgrades/views/plugins-update-section.php:42
|
11630 |
msgid "Unlicensed"
|
11631 |
msgstr ""
|
11632 |
|
|
|
|
|
|
|
|
|
11633 |
#: includes/admin/tools/views/html-admin-page-system-info.php:746, includes/admin/tools/views/html-admin-page-system-info.php:802, includes/admin/tools/views/html-admin-page-system-info.php:849, includes/admin/tools/views/html-admin-page-system-info.php:898, includes/admin/upgrades/views/plugins-update-section.php:46
|
11634 |
msgctxt "by author"
|
11635 |
msgid "by %s"
|
11723 |
msgid "Give - Updates"
|
11724 |
msgstr ""
|
11725 |
|
11726 |
+
#: includes/admin/upgrades/views/upgrades.php:33
|
11727 |
msgid "Give regularly receives new features, bug fixes, and enhancements. It is important to always stay up-to-date with latest version of Give core and its add-ons. Please create a backup of your site before updating. To update add-ons be sure your <a href=\"%1$s\">license keys</a> are activated."
|
11728 |
msgstr ""
|
11729 |
|
11755 |
msgid "Update %s of %s"
|
11756 |
msgstr ""
|
11757 |
|
11758 |
+
#: includes/admin/upgrades/views/upgrades.php:122
|
11759 |
msgid "Add-on Updates"
|
11760 |
msgstr ""
|
11761 |
|
11762 |
+
#: includes/admin/upgrades/views/upgrades.php:128
|
11763 |
msgid "There is %1$d Give addon that needs to be updated. <a href=\"%2$s\">Update now</a>"
|
11764 |
msgid_plural "There are %1$d Give addons that need to be updated. <a href=\"%2$s\">Update now</a>"
|
11765 |
msgstr[0] ""
|
11829 |
msgid "You are already logged in to the site. <a href=\"%s\">Click here</a> to logout."
|
11830 |
msgstr ""
|
11831 |
|
|
|
|
|
11832 |
#: templates/shortcode-profile-editor.php:28, templates/shortcode-profile-editor.php:225, templates/shortcode-profile-editor.php:231
|
11833 |
msgid "Success:"
|
11834 |
msgstr ""
|
11873 |
msgid "Your profile and password has been updated."
|
11874 |
msgstr ""
|
11875 |
|
|
|
11876 |
#: templates/shortcode-profile-editor.php:226, templates/shortcode-profile-editor.php:232
|
11877 |
msgid "Login with your new credentials."
|
11878 |
msgstr ""
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: donation, donations, donation plugin, wordpress donation plugin, givewp, g
|
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 4.9
|
7 |
Requires PHP: 5.3
|
8 |
-
Stable tag: 2.1.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -208,7 +208,16 @@ Use Give for donations, and let WooCommerce or WP eCommerce or the like handle y
|
|
208 |
|
209 |
== Changelog ==
|
210 |
|
211 |
-
= 2.1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
* New: Sequential ordering is here! You can now configure donation payments with a prefix, suffix, number padding and more. [#2912](https://github.com/WordImpress/Give/issues/2912)
|
213 |
* New: Now you can export your donations with much more flexibility via the new advanced donation exporter. [#2875](https://github.com/WordImpress/Give/issues/2875), [#2996](https://github.com/WordImpress/Give/issues/2996)
|
214 |
* New: Query performance improvements for sites with a large database of donations. [#2987](https://github.com/WordImpress/Give/issues/2987), [#3069](https://github.com/WordImpress/Give/issues/3069)
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 4.9
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 2.1.1
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
208 |
|
209 |
== Changelog ==
|
210 |
|
211 |
+
= 2.1.1: May 3rd, 2018 =
|
212 |
+
* Fix: Conflict with the new "maximum" donation amount field and existing forms using custom fields preventing donations if the form is not re-saved. [#3159](https://github.com/wordimpress/give/issues/3159)
|
213 |
+
* Fix: Added clarification to the Donation Form Grid shortcode so admins know which options are optional and have a better description of what it does. [#3166](https://github.com/wordimpress/give/issues/3166)
|
214 |
+
* Fix: Prevent a setting from appearing above Give's new modal window. [#3164](https://github.com/wordimpress/give/issues/3164)
|
215 |
+
* Fix: Display a progress indicator for updates in 2.1+ and prevent an issue with receiving a blank screen if clicking on "Updates" while an update is running. [#3163](https://github.com/wordimpress/give/issues/3163)
|
216 |
+
* Fix: Resolved JS error when editing a price type setting field in wp-admin. [#3161](https://github.com/wordimpress/give/issues/3161)
|
217 |
+
* Fix: Correct the weekly donation total in the dashboard stats widget. [#3156](https://github.com/wordimpress/give/issues/3156)
|
218 |
+
* Fix: Prevent the update notice from appearing while actively updating plugins. [#3155](https://github.com/wordimpress/give/issues/3155)
|
219 |
+
|
220 |
+
= 2.1.0: May 2nd, 2018 =
|
221 |
* New: Sequential ordering is here! You can now configure donation payments with a prefix, suffix, number padding and more. [#2912](https://github.com/WordImpress/Give/issues/2912)
|
222 |
* New: Now you can export your donations with much more flexibility via the new advanced donation exporter. [#2875](https://github.com/WordImpress/Give/issues/2875), [#2996](https://github.com/WordImpress/Give/issues/2996)
|
223 |
* New: Query performance improvements for sites with a large database of donations. [#2987](https://github.com/WordImpress/Give/issues/2987), [#3069](https://github.com/WordImpress/Give/issues/3069)
|