Version Description
Bug fixes and improvements.
=
Download this release
Release Info
Developer | designbymerovingi |
Plugin | myCRED |
Version | 1.7.4 |
Comparing to | |
See all releases |
Code changes from version 1.7.3 to 1.7.4
- abstracts/mycred-abstract-module.php +4 -4
- addons/badges/myCRED-addon-badges.php +2 -2
- addons/buy-creds/gateways/zombaio.php +55 -17
- addons/buy-creds/modules/buycred-module-core.php +8 -10
- addons/buy-creds/modules/buycred-module-pending.php +30 -7
- addons/coupons/includes/mycred-coupon-functions.php +7 -6
- addons/coupons/includes/mycred-coupon-shortcodes.php +3 -3
- addons/coupons/myCRED-addon-coupons.php +5 -5
- addons/email-notices/myCRED-addon-email-notices.php +20 -22
- addons/notifications/myCRED-addon-notifications.php +2 -2
- addons/ranks/includes/mycred-rank-functions.php +30 -8
- addons/ranks/includes/mycred-rank-shortcodes.php +27 -30
- addons/ranks/myCRED-addon-ranks.php +10 -10
- addons/sell-content/includes/mycred-sell-functions.php +6 -5
- addons/sell-content/includes/mycred-sell-shortcodes.php +2 -2
- addons/sell-content/myCRED-addon-sell-content.php +2 -2
- addons/stats/myCRED-addon-stats.php +20 -12
- addons/transfer/includes/mycred-transfer-shortcodes.php +4 -4
- addons/transfer/includes/mycred-transfer-widgets.php +13 -18
- addons/transfer/myCRED-addon-transfer.php +2 -3
- assets/images/badges-addon.png +0 -0
- assets/screenshot-1.png +0 -0
- assets/screenshot-2.png +0 -0
- assets/screenshot-3.png +0 -0
- assets/screenshot-4.png +0 -0
- assets/screenshot-5.png +0 -0
- includes/classes/class.query-log.php +9 -6
- includes/mycred-functions.php +106 -50
- includes/mycred-widgets.php +119 -132
- includes/shortcodes/mycred_history.php +12 -6
- includes/shortcodes/mycred_leaderboard.php +11 -5
- lang/mycred-en_US.mo +0 -0
- lang/mycred-en_US.po +6287 -6961
- lang/mycred-es_ES.mo +0 -0
- lang/mycred-es_ES.po +6517 -7224
- lang/mycred-es_VE.mo +0 -0
- lang/mycred-es_VE.po +0 -3687
abstracts/mycred-abstract-module.php
CHANGED
@@ -222,7 +222,7 @@ if ( ! class_exists( 'myCRED_Module' ) ) :
|
|
222 |
/**
|
223 |
* Load
|
224 |
* @since 0.1
|
225 |
-
* @version 1.0
|
226 |
*/
|
227 |
function load() {
|
228 |
|
@@ -232,7 +232,7 @@ if ( ! class_exists( 'myCRED_Module' ) ) :
|
|
232 |
}
|
233 |
|
234 |
if ( $this->register === true && ! empty( $this->option_id ) )
|
235 |
-
add_action( 'mycred_admin_init', array( $this, 'register_settings' ) );
|
236 |
|
237 |
if ( $this->add_to_core === true ) {
|
238 |
add_action( 'mycred_after_core_prefs', array( $this, 'after_general_settings' ) );
|
@@ -241,9 +241,9 @@ if ( ! class_exists( 'myCRED_Module' ) ) :
|
|
241 |
|
242 |
add_action( 'mycred_pre_init', array( $this, 'module_pre_init' ) );
|
243 |
add_action( 'mycred_init', array( $this, 'module_init' ) );
|
244 |
-
add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ) );
|
245 |
add_action( 'mycred_widgets_init', array( $this, 'module_widgets_init' ) );
|
246 |
-
add_action( 'mycred_admin_enqueue', array( $this, 'scripts_and_styles' ) );
|
247 |
|
248 |
}
|
249 |
|
222 |
/**
|
223 |
* Load
|
224 |
* @since 0.1
|
225 |
+
* @version 1.0.1
|
226 |
*/
|
227 |
function load() {
|
228 |
|
232 |
}
|
233 |
|
234 |
if ( $this->register === true && ! empty( $this->option_id ) )
|
235 |
+
add_action( 'mycred_admin_init', array( $this, 'register_settings' ), $this->menu_pos );
|
236 |
|
237 |
if ( $this->add_to_core === true ) {
|
238 |
add_action( 'mycred_after_core_prefs', array( $this, 'after_general_settings' ) );
|
241 |
|
242 |
add_action( 'mycred_pre_init', array( $this, 'module_pre_init' ) );
|
243 |
add_action( 'mycred_init', array( $this, 'module_init' ) );
|
244 |
+
add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ), $this->menu_pos+1 );
|
245 |
add_action( 'mycred_widgets_init', array( $this, 'module_widgets_init' ) );
|
246 |
+
add_action( 'mycred_admin_enqueue', array( $this, 'scripts_and_styles' ), $this->menu_pos );
|
247 |
|
248 |
}
|
249 |
|
addons/badges/myCRED-addon-badges.php
CHANGED
@@ -106,13 +106,13 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) :
|
|
106 |
/**
|
107 |
* Module Admin Init
|
108 |
* @since 1.0
|
109 |
-
* @version 1.0
|
110 |
*/
|
111 |
public function module_admin_init() {
|
112 |
|
113 |
add_filter( 'parent_file', array( $this, 'parent_file' ) );
|
114 |
add_filter( 'submenu_file', array( $this, 'subparent_file' ), 10, 2 );
|
115 |
-
add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ) );
|
116 |
|
117 |
add_filter( 'manage_mycred_badge_posts_columns', array( $this, 'adjust_column_headers' ) );
|
118 |
add_action( 'manage_mycred_badge_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
|
106 |
/**
|
107 |
* Module Admin Init
|
108 |
* @since 1.0
|
109 |
+
* @version 1.0.1
|
110 |
*/
|
111 |
public function module_admin_init() {
|
112 |
|
113 |
add_filter( 'parent_file', array( $this, 'parent_file' ) );
|
114 |
add_filter( 'submenu_file', array( $this, 'subparent_file' ), 10, 2 );
|
115 |
+
add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ), $this->menu_pos );
|
116 |
|
117 |
add_filter( 'manage_mycred_badge_posts_columns', array( $this, 'adjust_column_headers' ) );
|
118 |
add_action( 'manage_mycred_badge_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
|
addons/buy-creds/gateways/zombaio.php
CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
|
|
5 |
* myCRED_Zombaio class
|
6 |
* Zombaio Payment Gateway
|
7 |
* @since 1.1
|
8 |
-
* @version 1.1.
|
9 |
*/
|
10 |
if ( ! class_exists( 'myCRED_Zombaio' ) ) :
|
11 |
class myCRED_Zombaio extends myCRED_Payment_Gateway {
|
@@ -40,18 +40,22 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) :
|
|
40 |
public function process() {
|
41 |
|
42 |
if ( isset( $_GET['wp_zombaio_ips'] ) && $_GET['wp_zombaio_ips'] == 1 ) {
|
43 |
-
|
44 |
if ( isset( $_GET['csv'] ) && $_GET['csv'] == 1 ) {
|
45 |
-
echo '<textarea style="width: 270px;" rows="10" readonly="readonly">' . implode( ',', $
|
46 |
exit;
|
47 |
}
|
|
|
48 |
echo '<ul>';
|
49 |
foreach ( $ips as $ip ) {
|
50 |
echo '<li><input type="text" readonly="readonly" value="' . $ip . '" size="15" /></li>';
|
51 |
}
|
52 |
echo '</ul>';
|
|
|
53 |
exit;
|
|
|
54 |
}
|
|
|
55 |
$this->handle_call();
|
56 |
|
57 |
}
|
@@ -59,25 +63,34 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) :
|
|
59 |
/**
|
60 |
* First Comment
|
61 |
* @since 1.7.3
|
62 |
-
* @version 1.0
|
63 |
*/
|
64 |
public function first_comment( $comment ) {
|
65 |
|
66 |
-
return 'New Zombaio purchase
|
67 |
|
68 |
}
|
69 |
|
70 |
/**
|
71 |
* Verify IPN IP
|
72 |
* @since 1.1
|
73 |
-
* @version 1.
|
74 |
*/
|
75 |
-
public function
|
76 |
|
77 |
if ( $this->prefs['bypass_ipn'] ) return true;
|
78 |
|
79 |
-
$
|
80 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
|
82 |
return false;
|
83 |
|
@@ -86,14 +99,23 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) :
|
|
86 |
/**
|
87 |
* Load IPN IP List
|
88 |
* @since 1.1
|
89 |
-
* @version 1.
|
90 |
*/
|
91 |
-
public function
|
92 |
|
93 |
$request = new WP_Http();
|
94 |
-
$data
|
95 |
-
$data
|
96 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
|
98 |
}
|
99 |
|
@@ -112,11 +134,27 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) :
|
|
112 |
$result = false;
|
113 |
|
114 |
// Check IPN
|
115 |
-
if ( $result === true &&
|
116 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
|
118 |
// Check Site ID
|
119 |
-
if ( $_GET['SiteID'] != $this->prefs['site_id'] )
|
120 |
$result = false;
|
121 |
|
122 |
return $result;
|
5 |
* myCRED_Zombaio class
|
6 |
* Zombaio Payment Gateway
|
7 |
* @since 1.1
|
8 |
+
* @version 1.1.3
|
9 |
*/
|
10 |
if ( ! class_exists( 'myCRED_Zombaio' ) ) :
|
11 |
class myCRED_Zombaio extends myCRED_Payment_Gateway {
|
40 |
public function process() {
|
41 |
|
42 |
if ( isset( $_GET['wp_zombaio_ips'] ) && $_GET['wp_zombaio_ips'] == 1 ) {
|
43 |
+
|
44 |
if ( isset( $_GET['csv'] ) && $_GET['csv'] == 1 ) {
|
45 |
+
echo '<textarea style="width: 270px;" rows="10" readonly="readonly">' . implode( ',', $this->get_zombaio_ips() ) . '</textarea>';
|
46 |
exit;
|
47 |
}
|
48 |
+
|
49 |
echo '<ul>';
|
50 |
foreach ( $ips as $ip ) {
|
51 |
echo '<li><input type="text" readonly="readonly" value="' . $ip . '" size="15" /></li>';
|
52 |
}
|
53 |
echo '</ul>';
|
54 |
+
|
55 |
exit;
|
56 |
+
|
57 |
}
|
58 |
+
|
59 |
$this->handle_call();
|
60 |
|
61 |
}
|
63 |
/**
|
64 |
* First Comment
|
65 |
* @since 1.7.3
|
66 |
+
* @version 1.0.1
|
67 |
*/
|
68 |
public function first_comment( $comment ) {
|
69 |
|
70 |
+
return 'New Zombaio purchase confirmation.';
|
71 |
|
72 |
}
|
73 |
|
74 |
/**
|
75 |
* Verify IPN IP
|
76 |
* @since 1.1
|
77 |
+
* @version 1.1
|
78 |
*/
|
79 |
+
public function verify_zombaio_call() {
|
80 |
|
81 |
if ( $this->prefs['bypass_ipn'] ) return true;
|
82 |
|
83 |
+
$zombaio_ips = $this->get_zombaio_ips();
|
84 |
+
if ( empty( $zombaio_ips ) ) return true;
|
85 |
+
|
86 |
+
if ( $_SERVER['REMOTE_ADDR'] != '' ) {
|
87 |
+
|
88 |
+
$remote_addr = explode( '.', $_SERVER['REMOTE_ADDR'] );
|
89 |
+
$remote_addr = $remote_addr[0] . '.' . $remote_addr[1] . '.' . $remote_addr[2] . '.';
|
90 |
+
|
91 |
+
if ( in_array( $remote_addr, $zombaio_ips ) ) return true;
|
92 |
+
|
93 |
+
}
|
94 |
|
95 |
return false;
|
96 |
|
99 |
/**
|
100 |
* Load IPN IP List
|
101 |
* @since 1.1
|
102 |
+
* @version 1.1
|
103 |
*/
|
104 |
+
public function get_zombaio_ips() {
|
105 |
|
106 |
$request = new WP_Http();
|
107 |
+
$data = $request->request( 'http://www.zombaio.com/ip_list.txt' );
|
108 |
+
$data = explode( '|', $data['body'] );
|
109 |
+
|
110 |
+
$zombaio_ips = array();
|
111 |
+
if ( ! empty( $data ) ) {
|
112 |
+
foreach ( $data as $ip_range ) {
|
113 |
+
if ( $ip_range != '' )
|
114 |
+
$zombaio_ips[] = $ip_range;
|
115 |
+
}
|
116 |
+
}
|
117 |
+
|
118 |
+
return $zombaio_ips;
|
119 |
|
120 |
}
|
121 |
|
134 |
$result = false;
|
135 |
|
136 |
// Check IPN
|
137 |
+
if ( $result === true && $this->prefs['bypass_ipn'] == 0 ) {
|
138 |
+
|
139 |
+
$zombaio_ips = $this->get_zombaio_ips();
|
140 |
+
if ( ! empty( $zombaio_ips ) ) {
|
141 |
+
|
142 |
+
if ( $_SERVER['REMOTE_ADDR'] != '' ) {
|
143 |
+
|
144 |
+
$remote_addr = explode( '.', $_SERVER['REMOTE_ADDR'] );
|
145 |
+
$remote_addr = $remote_addr[0] . '.' . $remote_addr[1] . '.' . $remote_addr[2] . '.';
|
146 |
+
|
147 |
+
if ( ! in_array( $remote_addr, $zombaio_ips ) )
|
148 |
+
$result = false;
|
149 |
+
|
150 |
+
}
|
151 |
+
|
152 |
+
}
|
153 |
+
|
154 |
+
}
|
155 |
|
156 |
// Check Site ID
|
157 |
+
if ( $result === true && $_GET['SiteID'] != $this->prefs['site_id'] )
|
158 |
$result = false;
|
159 |
|
160 |
return $result;
|
addons/buy-creds/modules/buycred-module-core.php
CHANGED
@@ -44,17 +44,17 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
|
|
44 |
|
45 |
/**
|
46 |
* Load
|
47 |
-
* @version 1.0.
|
48 |
*/
|
49 |
public function load() {
|
50 |
|
51 |
add_filter( 'mycred_parse_log_entry', array( $this, 'render_gift_tags' ), 10, 2 );
|
52 |
|
53 |
-
add_action( 'mycred_init', array( $this, 'module_init' ) );
|
54 |
add_action( 'wp_loaded', array( $this, 'module_run' ) );
|
55 |
-
add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ) );
|
56 |
|
57 |
-
add_action( 'mycred_admin_init', array( $this, 'register_settings' ) );
|
58 |
add_action( 'mycred_add_menu', array( $this, 'add_menu' ), $this->menu_pos );
|
59 |
add_action( 'mycred_add_menu', array( $this, 'add_to_menu' ), $this->menu_pos+1 );
|
60 |
add_action( 'mycred_after_core_prefs', array( $this, 'after_general_settings' ) );
|
@@ -486,15 +486,12 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
|
|
486 |
/**
|
487 |
* Add Admin Menu Item
|
488 |
* @since 0.1
|
489 |
-
* @version 1.1
|
490 |
*/
|
491 |
public function add_to_menu() {
|
492 |
|
493 |
if ( isset( $this->core->buy_creds['custom_log'] ) && $this->core->buy_creds['custom_log'] ) {
|
494 |
|
495 |
-
// Menu Slug
|
496 |
-
$menu_slug = 'mycred';
|
497 |
-
|
498 |
$types = array( MYCRED_DEFAULT_TYPE_KEY );
|
499 |
if ( isset( $this->core->buy_creds['types'] ) )
|
500 |
$types = $this->core->buy_creds['types'];
|
@@ -502,10 +499,11 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
|
|
502 |
$pages = array();
|
503 |
foreach ( $types as $type ) {
|
504 |
|
505 |
-
$mycred
|
|
|
506 |
|
507 |
if ( $type != MYCRED_DEFAULT_TYPE_KEY )
|
508 |
-
$menu_slug
|
509 |
|
510 |
$pages[] = add_submenu_page(
|
511 |
$menu_slug,
|
44 |
|
45 |
/**
|
46 |
* Load
|
47 |
+
* @version 1.0.2
|
48 |
*/
|
49 |
public function load() {
|
50 |
|
51 |
add_filter( 'mycred_parse_log_entry', array( $this, 'render_gift_tags' ), 10, 2 );
|
52 |
|
53 |
+
add_action( 'mycred_init', array( $this, 'module_init' ), $this->menu_pos );
|
54 |
add_action( 'wp_loaded', array( $this, 'module_run' ) );
|
55 |
+
add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ), $this->menu_pos );
|
56 |
|
57 |
+
add_action( 'mycred_admin_init', array( $this, 'register_settings' ), $this->menu_pos+1 );
|
58 |
add_action( 'mycred_add_menu', array( $this, 'add_menu' ), $this->menu_pos );
|
59 |
add_action( 'mycred_add_menu', array( $this, 'add_to_menu' ), $this->menu_pos+1 );
|
60 |
add_action( 'mycred_after_core_prefs', array( $this, 'after_general_settings' ) );
|
486 |
/**
|
487 |
* Add Admin Menu Item
|
488 |
* @since 0.1
|
489 |
+
* @version 1.1.1
|
490 |
*/
|
491 |
public function add_to_menu() {
|
492 |
|
493 |
if ( isset( $this->core->buy_creds['custom_log'] ) && $this->core->buy_creds['custom_log'] ) {
|
494 |
|
|
|
|
|
|
|
495 |
$types = array( MYCRED_DEFAULT_TYPE_KEY );
|
496 |
if ( isset( $this->core->buy_creds['types'] ) )
|
497 |
$types = $this->core->buy_creds['types'];
|
499 |
$pages = array();
|
500 |
foreach ( $types as $type ) {
|
501 |
|
502 |
+
$mycred = mycred( $type );
|
503 |
+
$menu_slug = MYCRED_SLUG;
|
504 |
|
505 |
if ( $type != MYCRED_DEFAULT_TYPE_KEY )
|
506 |
+
$menu_slug = MYCRED_SLUG . '_' . trim( $type );
|
507 |
|
508 |
$pages[] = add_submenu_page(
|
509 |
$menu_slug,
|
addons/buy-creds/modules/buycred-module-pending.php
CHANGED
@@ -4,7 +4,7 @@ if ( ! defined( 'MYCRED_PURCHASE' ) ) exit;
|
|
4 |
/**
|
5 |
* buyCRED_Pending_Payments class
|
6 |
* @since 1.7
|
7 |
-
* @version 1.0
|
8 |
*/
|
9 |
if ( ! class_exists( 'buyCRED_Pending_Payments' ) ) :
|
10 |
class buyCRED_Pending_Payments extends myCRED_Module {
|
@@ -28,19 +28,19 @@ if ( ! class_exists( 'buyCRED_Pending_Payments' ) ) :
|
|
28 |
|
29 |
/**
|
30 |
* Load
|
31 |
-
* @version 1.0
|
32 |
*/
|
33 |
public function load() {
|
34 |
|
35 |
-
add_action( 'mycred_init',
|
36 |
-
add_action( 'mycred_admin_init',
|
37 |
|
38 |
}
|
39 |
|
40 |
/**
|
41 |
* Module Init
|
42 |
* @since 1.7
|
43 |
-
* @version 1.0
|
44 |
*/
|
45 |
public function module_init() {
|
46 |
|
@@ -48,8 +48,31 @@ if ( ! class_exists( 'buyCRED_Pending_Payments' ) ) :
|
|
48 |
|
49 |
add_shortcode( 'mycred_buy_pending', array( $this, 'render_shortcode_pending' ) );
|
50 |
|
51 |
-
add_action( 'mycred_add_menu',
|
52 |
-
add_action( 'template_redirect',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
|
54 |
}
|
55 |
|
4 |
/**
|
5 |
* buyCRED_Pending_Payments class
|
6 |
* @since 1.7
|
7 |
+
* @version 1.0.1
|
8 |
*/
|
9 |
if ( ! class_exists( 'buyCRED_Pending_Payments' ) ) :
|
10 |
class buyCRED_Pending_Payments extends myCRED_Module {
|
28 |
|
29 |
/**
|
30 |
* Load
|
31 |
+
* @version 1.0.1
|
32 |
*/
|
33 |
public function load() {
|
34 |
|
35 |
+
add_action( 'mycred_init', array( $this, 'module_init' ), $this->menu_pos );
|
36 |
+
add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ), $this->menu_pos );
|
37 |
|
38 |
}
|
39 |
|
40 |
/**
|
41 |
* Module Init
|
42 |
* @since 1.7
|
43 |
+
* @version 1.0.1
|
44 |
*/
|
45 |
public function module_init() {
|
46 |
|
48 |
|
49 |
add_shortcode( 'mycred_buy_pending', array( $this, 'render_shortcode_pending' ) );
|
50 |
|
51 |
+
add_action( 'mycred_add_menu', array( $this, 'add_to_menu' ), $this->menu_pos );
|
52 |
+
add_action( 'template_redirect', array( $this, 'intercept_cancellations' ) );
|
53 |
+
add_action( 'parse_comment_query', array( $this, 'remove_frontend_updates' ), 90 );
|
54 |
+
|
55 |
+
}
|
56 |
+
|
57 |
+
/**
|
58 |
+
* Remove Front End Updates
|
59 |
+
* Make sure comments are not shown on the front end when it comes to buyCRED.
|
60 |
+
* @since 1.7.4
|
61 |
+
* @version 1.0
|
62 |
+
*/
|
63 |
+
public function remove_frontend_updates( $query ) {
|
64 |
+
|
65 |
+
$show_updates = true;
|
66 |
+
if ( ! function_exists( 'is_admin' ) || ! is_admin() )
|
67 |
+
$show_updates = false;
|
68 |
+
|
69 |
+
if ( apply_filters( 'mycred_buycred_show_updates', $show_updates, $this ) === true ) return;
|
70 |
+
|
71 |
+
if ( ! empty( $query->query_vars['author__not_in'] ) )
|
72 |
+
$query->query_vars['author__not_in'][] = 'buycred';
|
73 |
+
|
74 |
+
elseif ( empty( $query->query_vars['author__not_in'] ) )
|
75 |
+
$query->query_vars['author__not_in'] = array( 'buycred' );
|
76 |
|
77 |
}
|
78 |
|
addons/coupons/includes/mycred-coupon-functions.php
CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
|
|
5 |
* Get Coupon
|
6 |
* Returns a coupon object based on the post ID.
|
7 |
* @since 1.7
|
8 |
-
* @version 1.0
|
9 |
*/
|
10 |
if ( ! function_exists( 'mycred_get_coupon' ) ) :
|
11 |
function mycred_get_coupon( $coupon_post_id = NULL ) {
|
@@ -20,9 +20,9 @@ if ( ! function_exists( 'mycred_get_coupon' ) ) :
|
|
20 |
$coupon->max_global = mycred_get_coupon_global_max( $coupon_post_id );
|
21 |
$coupon->max_user = mycred_get_coupon_user_max( $coupon_post_id );
|
22 |
$coupon->requires_min = mycred_get_coupon_min_balance( $coupon_post_id );
|
23 |
-
$coupon->requires_min_type =
|
24 |
$coupon->requires_max = mycred_get_coupon_max_balance( $coupon_post_id );
|
25 |
-
$coupon->requires_max_type =
|
26 |
$coupon->expires = mycred_get_coupon_expire_date( $coupon_post_id );
|
27 |
$coupon->used = mycred_get_global_coupon_count( $coupon_post_id );
|
28 |
|
@@ -110,7 +110,7 @@ endif;
|
|
110 |
* @returns false if data is missing, post ID on success or wp_error / 0 if
|
111 |
* post creation failed.
|
112 |
* @since 1.4
|
113 |
-
* @version 1.1
|
114 |
*/
|
115 |
if ( ! function_exists( 'mycred_create_new_coupon' ) ) :
|
116 |
function mycred_create_new_coupon( $data = array() ) {
|
@@ -145,12 +145,13 @@ if ( ! function_exists( 'mycred_create_new_coupon' ) ) :
|
|
145 |
if ( $post_id !== 0 && ! is_wp_error( $post_id ) ) {
|
146 |
|
147 |
// Save Coupon Details
|
|
|
148 |
add_post_meta( $post_id, 'value', $value, true );
|
149 |
add_post_meta( $post_id, 'global', $global_max, true );
|
150 |
add_post_meta( $post_id, 'user', $user_max, true );
|
151 |
-
add_post_meta( $post_id, '
|
152 |
add_post_meta( $post_id, 'min_balance_type', $min_balance_type, true );
|
153 |
-
add_post_meta( $post_id, '
|
154 |
add_post_meta( $post_id, 'max_balance_type', $max_balance_type, true );
|
155 |
|
156 |
if ( ! empty( $expires ) )
|
5 |
* Get Coupon
|
6 |
* Returns a coupon object based on the post ID.
|
7 |
* @since 1.7
|
8 |
+
* @version 1.0.1
|
9 |
*/
|
10 |
if ( ! function_exists( 'mycred_get_coupon' ) ) :
|
11 |
function mycred_get_coupon( $coupon_post_id = NULL ) {
|
20 |
$coupon->max_global = mycred_get_coupon_global_max( $coupon_post_id );
|
21 |
$coupon->max_user = mycred_get_coupon_user_max( $coupon_post_id );
|
22 |
$coupon->requires_min = mycred_get_coupon_min_balance( $coupon_post_id );
|
23 |
+
$coupon->requires_min_type = $coupon->requires_min['type'];
|
24 |
$coupon->requires_max = mycred_get_coupon_max_balance( $coupon_post_id );
|
25 |
+
$coupon->requires_max_type = $coupon->requires_max['type'];
|
26 |
$coupon->expires = mycred_get_coupon_expire_date( $coupon_post_id );
|
27 |
$coupon->used = mycred_get_global_coupon_count( $coupon_post_id );
|
28 |
|
110 |
* @returns false if data is missing, post ID on success or wp_error / 0 if
|
111 |
* post creation failed.
|
112 |
* @since 1.4
|
113 |
+
* @version 1.1.1
|
114 |
*/
|
115 |
if ( ! function_exists( 'mycred_create_new_coupon' ) ) :
|
116 |
function mycred_create_new_coupon( $data = array() ) {
|
145 |
if ( $post_id !== 0 && ! is_wp_error( $post_id ) ) {
|
146 |
|
147 |
// Save Coupon Details
|
148 |
+
add_post_meta( $post_id, 'type', $type, true );
|
149 |
add_post_meta( $post_id, 'value', $value, true );
|
150 |
add_post_meta( $post_id, 'global', $global_max, true );
|
151 |
add_post_meta( $post_id, 'user', $user_max, true );
|
152 |
+
add_post_meta( $post_id, 'min_balance', $min_balance, true );
|
153 |
add_post_meta( $post_id, 'min_balance_type', $min_balance_type, true );
|
154 |
+
add_post_meta( $post_id, 'max_balance', $max_balance, true );
|
155 |
add_post_meta( $post_id, 'max_balance_type', $max_balance_type, true );
|
156 |
|
157 |
if ( ! empty( $expires ) )
|
addons/coupons/includes/mycred-coupon-shortcodes.php
CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
|
|
6 |
* @filter mycred_get_coupon_by_code
|
7 |
* @filter mycred_load_coupon
|
8 |
* @since 1.4
|
9 |
-
* @version 1.1
|
10 |
*/
|
11 |
if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
|
12 |
function mycred_render_shortcode_load_coupon( $atts, $content = NULL ) {
|
@@ -52,14 +52,14 @@ if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
|
|
52 |
|
53 |
// Failed minimum balance requirement
|
54 |
elseif ( $load === 'min_balance' ) {
|
55 |
-
$min = get_post_meta( $coupon->ID, '
|
56 |
$template = str_replace( '%min%', $min, $mycred->coupons['min'] );
|
57 |
$output .= '<div class="alert alert-danger">' . $template . '</div>';
|
58 |
}
|
59 |
|
60 |
// Failed maximum balance requirement
|
61 |
elseif ( $load === 'max_balance' ) {
|
62 |
-
$max = get_post_meta( $coupon->ID, '
|
63 |
$template = str_replace( '%max%', $max, $mycred->coupons['max'] );
|
64 |
$output .= '<div class="alert alert-danger">' . $template . '</div>';
|
65 |
}
|
6 |
* @filter mycred_get_coupon_by_code
|
7 |
* @filter mycred_load_coupon
|
8 |
* @since 1.4
|
9 |
+
* @version 1.1.1
|
10 |
*/
|
11 |
if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
|
12 |
function mycred_render_shortcode_load_coupon( $atts, $content = NULL ) {
|
52 |
|
53 |
// Failed minimum balance requirement
|
54 |
elseif ( $load === 'min_balance' ) {
|
55 |
+
$min = get_post_meta( $coupon->ID, 'min_balance', true );
|
56 |
$template = str_replace( '%min%', $min, $mycred->coupons['min'] );
|
57 |
$output .= '<div class="alert alert-danger">' . $template . '</div>';
|
58 |
}
|
59 |
|
60 |
// Failed maximum balance requirement
|
61 |
elseif ( $load === 'max_balance' ) {
|
62 |
+
$max = get_post_meta( $coupon->ID, 'max_balance', true );
|
63 |
$template = str_replace( '%max%', $max, $mycred->coupons['max'] );
|
64 |
$output .= '<div class="alert alert-danger">' . $template . '</div>';
|
65 |
}
|
addons/coupons/myCRED-addon-coupons.php
CHANGED
@@ -159,12 +159,12 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
|
|
159 |
/**
|
160 |
* Add Admin Menu Item
|
161 |
* @since 1.7
|
162 |
-
* @version 1.0
|
163 |
*/
|
164 |
public function add_to_menu() {
|
165 |
|
166 |
add_submenu_page(
|
167 |
-
|
168 |
__( 'Coupons', 'mycred' ),
|
169 |
__( 'Coupons', 'mycred' ),
|
170 |
$this->core->edit_creds_cap(),
|
@@ -552,7 +552,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
|
|
552 |
/**
|
553 |
* Metabox: Coupon Requirements
|
554 |
* @since 1.4
|
555 |
-
* @version 1.1
|
556 |
*/
|
557 |
public function mycred_coupon_requirements( $post ) {
|
558 |
|
@@ -573,7 +573,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
|
|
573 |
<div class="form-group">
|
574 |
<label for="mycred-coupon-min_balance"><?php _e( 'Minimum Balance', 'mycred' ); ?></label>
|
575 |
<div>
|
576 |
-
<input type="text" name="mycred_coupon[min_balance]" <?php if ( count( $this->point_types ) > 1 ) echo 'size="8"'; else echo ' style="width: 99%;"'; ?> id="mycred-coupon-min_balance" value="<?php echo $mycred->number( $coupon->requires_min ); ?>" />
|
577 |
<?php echo $min_balance_type; ?>
|
578 |
</div>
|
579 |
<span class="description"><?php _e( 'Optional minimum balance a user must have in order to use this coupon. Use zero to disable.', 'mycred' ); ?></span>
|
@@ -585,7 +585,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
|
|
585 |
<div class="form-group">
|
586 |
<label for="mycred-coupon-max_balance"><?php _e( 'Maximum Balance', 'mycred' ); ?></label>
|
587 |
<div>
|
588 |
-
<input type="text" name="mycred_coupon[max_balance]" <?php if ( count( $this->point_types ) > 1 ) echo 'size="8"'; else echo ' style="width: 99%;"'; ?> id="mycred-coupon-max_balance" value="<?php echo $mycred->number( $coupon->requires_max ); ?>" />
|
589 |
<?php echo $max_balance_type; ?>
|
590 |
</div>
|
591 |
<span class="description"><?php _e( 'Optional maximum balance a user can have in order to use this coupon. Use zero to disable.', 'mycred' ); ?></span>
|
159 |
/**
|
160 |
* Add Admin Menu Item
|
161 |
* @since 1.7
|
162 |
+
* @version 1.0.1
|
163 |
*/
|
164 |
public function add_to_menu() {
|
165 |
|
166 |
add_submenu_page(
|
167 |
+
MYCRED_SLUG,
|
168 |
__( 'Coupons', 'mycred' ),
|
169 |
__( 'Coupons', 'mycred' ),
|
170 |
$this->core->edit_creds_cap(),
|
552 |
/**
|
553 |
* Metabox: Coupon Requirements
|
554 |
* @since 1.4
|
555 |
+
* @version 1.1.1
|
556 |
*/
|
557 |
public function mycred_coupon_requirements( $post ) {
|
558 |
|
573 |
<div class="form-group">
|
574 |
<label for="mycred-coupon-min_balance"><?php _e( 'Minimum Balance', 'mycred' ); ?></label>
|
575 |
<div>
|
576 |
+
<input type="text" name="mycred_coupon[min_balance]" <?php if ( count( $this->point_types ) > 1 ) echo 'size="8"'; else echo ' style="width: 99%;"'; ?> id="mycred-coupon-min_balance" value="<?php echo $mycred->number( $coupon->requires_min['value'] ); ?>" />
|
577 |
<?php echo $min_balance_type; ?>
|
578 |
</div>
|
579 |
<span class="description"><?php _e( 'Optional minimum balance a user must have in order to use this coupon. Use zero to disable.', 'mycred' ); ?></span>
|
585 |
<div class="form-group">
|
586 |
<label for="mycred-coupon-max_balance"><?php _e( 'Maximum Balance', 'mycred' ); ?></label>
|
587 |
<div>
|
588 |
+
<input type="text" name="mycred_coupon[max_balance]" <?php if ( count( $this->point_types ) > 1 ) echo 'size="8"'; else echo ' style="width: 99%;"'; ?> id="mycred-coupon-max_balance" value="<?php echo $mycred->number( $coupon->requires_max['value'] ); ?>" />
|
589 |
<?php echo $max_balance_type; ?>
|
590 |
</div>
|
591 |
<span class="description"><?php _e( 'Optional maximum balance a user can have in order to use this coupon. Use zero to disable.', 'mycred' ); ?></span>
|
addons/email-notices/myCRED-addon-email-notices.php
CHANGED
@@ -53,14 +53,14 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
|
|
53 |
/**
|
54 |
* Hook into Init
|
55 |
* @since 1.1
|
56 |
-
* @version 1.2.
|
57 |
*/
|
58 |
public function module_init() {
|
59 |
|
60 |
$this->register_email_notices();
|
61 |
$this->setup_instances();
|
62 |
|
63 |
-
add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' )
|
64 |
add_filter( 'mycred_add_finished', array( $this, 'email_check' ), 80, 3 );
|
65 |
add_action( 'mycred_badge_level_reached', array( $this, 'badge_check' ), 10, 3 );
|
66 |
add_action( 'mycred_send_email_notices', 'mycred_email_notice_cron_job' );
|
@@ -183,12 +183,12 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
|
|
183 |
/**
|
184 |
* Add Admin Menu Item
|
185 |
* @since 1.7
|
186 |
-
* @version 1.0
|
187 |
*/
|
188 |
public function add_to_menu() {
|
189 |
|
190 |
add_submenu_page(
|
191 |
-
|
192 |
__( 'Email Notifications', 'mycred' ),
|
193 |
__( 'Email Notifications', 'mycred' ),
|
194 |
$this->core->edit_creds_cap(),
|
@@ -444,13 +444,13 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
|
|
444 |
/**
|
445 |
* Disable WYSIWYG Editor
|
446 |
* @since 1.1
|
447 |
-
* @version 1.0
|
448 |
*/
|
449 |
public function disable_richedit( $default ) {
|
450 |
|
451 |
global $post;
|
452 |
|
453 |
-
if ( $post->post_type == 'mycred_email_notice' )
|
454 |
return false;
|
455 |
|
456 |
return $default;
|
@@ -1022,7 +1022,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
|
|
1022 |
/**
|
1023 |
* Badge Check
|
1024 |
* @since 1.7
|
1025 |
-
* @version 1.0
|
1026 |
*/
|
1027 |
public function badge_check( $user_id, $badge_id, $level_reached ) {
|
1028 |
|
@@ -1030,10 +1030,11 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
|
|
1030 |
|
1031 |
$events = array( 'badges|positive' );
|
1032 |
$request = array(
|
|
|
1033 |
'user_id' => $user_id,
|
1034 |
-
'
|
1035 |
'entry' => 'New Badge',
|
1036 |
-
'
|
1037 |
'time' => current_time( 'timestamp' ),
|
1038 |
'ref_id' => $badge_id,
|
1039 |
'data' => array( 'ref_type' => 'post' )
|
@@ -1174,7 +1175,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
|
|
1174 |
/**
|
1175 |
* WP Mail
|
1176 |
* @since 1.1
|
1177 |
-
* @version 1.3.
|
1178 |
*/
|
1179 |
public function wp_mail( $to, $subject, $message, $headers, $attachments, $request, $email_id ) {
|
1180 |
|
@@ -1199,7 +1200,9 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
|
|
1199 |
$message = $mycred->parse_template_tags( $message, $entry );
|
1200 |
|
1201 |
if ( $this->emailnotices['use_html'] === true )
|
1202 |
-
$message =
|
|
|
|
|
1203 |
|
1204 |
$subject = apply_filters( 'mycred_email_subject_body', $subject, $filtered, $this );
|
1205 |
$message = apply_filters( 'mycred_email_message_body', $message, $filtered, $this );
|
@@ -1337,12 +1340,10 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
|
|
1337 |
<label class="subheader" for="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>"><?php _e( 'Email Format', 'mycred' ); ?></label>
|
1338 |
<ol id="myCRED-email-notice-use-html">
|
1339 |
<li>
|
1340 |
-
<input type="radio" name="<?php echo $this->field_name( 'use_html' ); ?>" id="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>" <?php checked( $this->emailnotices['use_html'], 0 ); ?> value="0" />
|
1341 |
-
<label for="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>"><?php _e( 'Plain text emails only.', 'mycred' ); ?></label>
|
1342 |
</li>
|
1343 |
<li>
|
1344 |
-
<input type="radio" name="<?php echo $this->field_name( 'use_html' ); ?>" id="<?php echo $this->field_id( array( 'use_html' => 'yes' ) ); ?>" <?php checked( $this->emailnotices['use_html'], 1 ); ?> value="1" />
|
1345 |
-
<label for="<?php echo $this->field_id( array( 'use_html' => 'yes' ) ); ?>"><?php _e( 'HTML or Plain text emails.', 'mycred' ); ?></label>
|
1346 |
</li>
|
1347 |
</ol>
|
1348 |
<label class="subheader" for="<?php echo $this->field_id( array( 'filter' => 'subject' ) ); ?>"><?php _e( 'Filters', 'mycred' ); ?></label>
|
@@ -1437,13 +1438,10 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
|
|
1437 |
*/
|
1438 |
public function sanitize_extra_settings( $new_data, $data, $core ) {
|
1439 |
|
1440 |
-
|
1441 |
-
$data['emailnotices']['use_html'] = 0;
|
1442 |
-
|
1443 |
-
$new_data['emailnotices']['use_html'] = ( $data['emailnotices']['use_html'] == 1 ) ? true : false;
|
1444 |
|
1445 |
-
$new_data['emailnotices']['filter']['subject'] = ( isset( $data['emailnotices']['filter']['subject'] ) ) ?
|
1446 |
-
$new_data['emailnotices']['filter']['content'] = ( isset( $data['emailnotices']['filter']['content'] ) ) ?
|
1447 |
|
1448 |
$new_data['emailnotices']['from']['name'] = sanitize_text_field( $data['emailnotices']['from']['name'] );
|
1449 |
$new_data['emailnotices']['from']['email'] = sanitize_text_field( $data['emailnotices']['from']['email'] );
|
@@ -1457,7 +1455,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
|
|
1457 |
if ( ! isset( $data['emailnotices']['override'] ) )
|
1458 |
$data['emailnotices']['override'] = 0;
|
1459 |
|
1460 |
-
$new_data['emailnotices']['override'] = ( $data['emailnotices']['override'] == 1 ) ?
|
1461 |
|
1462 |
return $new_data;
|
1463 |
|
53 |
/**
|
54 |
* Hook into Init
|
55 |
* @since 1.1
|
56 |
+
* @version 1.2.2
|
57 |
*/
|
58 |
public function module_init() {
|
59 |
|
60 |
$this->register_email_notices();
|
61 |
$this->setup_instances();
|
62 |
|
63 |
+
add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ), $this->menu_pos );
|
64 |
add_filter( 'mycred_add_finished', array( $this, 'email_check' ), 80, 3 );
|
65 |
add_action( 'mycred_badge_level_reached', array( $this, 'badge_check' ), 10, 3 );
|
66 |
add_action( 'mycred_send_email_notices', 'mycred_email_notice_cron_job' );
|
183 |
/**
|
184 |
* Add Admin Menu Item
|
185 |
* @since 1.7
|
186 |
+
* @version 1.0.1
|
187 |
*/
|
188 |
public function add_to_menu() {
|
189 |
|
190 |
add_submenu_page(
|
191 |
+
MYCRED_SLUG,
|
192 |
__( 'Email Notifications', 'mycred' ),
|
193 |
__( 'Email Notifications', 'mycred' ),
|
194 |
$this->core->edit_creds_cap(),
|
444 |
/**
|
445 |
* Disable WYSIWYG Editor
|
446 |
* @since 1.1
|
447 |
+
* @version 1.0.1
|
448 |
*/
|
449 |
public function disable_richedit( $default ) {
|
450 |
|
451 |
global $post;
|
452 |
|
453 |
+
if ( isset( $post->post_type ) && $post->post_type == 'mycred_email_notice' )
|
454 |
return false;
|
455 |
|
456 |
return $default;
|
1022 |
/**
|
1023 |
* Badge Check
|
1024 |
* @since 1.7
|
1025 |
+
* @version 1.0.1
|
1026 |
*/
|
1027 |
public function badge_check( $user_id, $badge_id, $level_reached ) {
|
1028 |
|
1030 |
|
1031 |
$events = array( 'badges|positive' );
|
1032 |
$request = array(
|
1033 |
+
'ref' => 'badge',
|
1034 |
'user_id' => $user_id,
|
1035 |
+
'amount' => 0,
|
1036 |
'entry' => 'New Badge',
|
1037 |
+
'type' => MYCRED_DEFAULT_TYPE_KEY,
|
1038 |
'time' => current_time( 'timestamp' ),
|
1039 |
'ref_id' => $badge_id,
|
1040 |
'data' => array( 'ref_type' => 'post' )
|
1175 |
/**
|
1176 |
* WP Mail
|
1177 |
* @since 1.1
|
1178 |
+
* @version 1.3.4
|
1179 |
*/
|
1180 |
public function wp_mail( $to, $subject, $message, $headers, $attachments, $request, $email_id ) {
|
1181 |
|
1200 |
$message = $mycred->parse_template_tags( $message, $entry );
|
1201 |
|
1202 |
if ( $this->emailnotices['use_html'] === true )
|
1203 |
+
$message = wpautop( $message );
|
1204 |
+
|
1205 |
+
$message = wptexturize( $message );
|
1206 |
|
1207 |
$subject = apply_filters( 'mycred_email_subject_body', $subject, $filtered, $this );
|
1208 |
$message = apply_filters( 'mycred_email_message_body', $message, $filtered, $this );
|
1340 |
<label class="subheader" for="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>"><?php _e( 'Email Format', 'mycred' ); ?></label>
|
1341 |
<ol id="myCRED-email-notice-use-html">
|
1342 |
<li>
|
1343 |
+
<label for="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>"><input type="radio" name="<?php echo $this->field_name( 'use_html' ); ?>" id="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>" <?php checked( $this->emailnotices['use_html'], 0 ); ?> value="0" /> <?php _e( 'Plain text emails only.', 'mycred' ); ?></label>
|
|
|
1344 |
</li>
|
1345 |
<li>
|
1346 |
+
<label for="<?php echo $this->field_id( array( 'use_html' => 'yes' ) ); ?>"><input type="radio" name="<?php echo $this->field_name( 'use_html' ); ?>" id="<?php echo $this->field_id( array( 'use_html' => 'yes' ) ); ?>" <?php checked( $this->emailnotices['use_html'], 1 ); ?> value="1" /> <?php _e( 'HTML or Plain text emails.', 'mycred' ); ?></label>
|
|
|
1347 |
</li>
|
1348 |
</ol>
|
1349 |
<label class="subheader" for="<?php echo $this->field_id( array( 'filter' => 'subject' ) ); ?>"><?php _e( 'Filters', 'mycred' ); ?></label>
|
1438 |
*/
|
1439 |
public function sanitize_extra_settings( $new_data, $data, $core ) {
|
1440 |
|
1441 |
+
$new_data['emailnotices']['use_html'] = ( isset( $data['emailnotices']['use_html'] ) ) ? absint( $data['emailnotices']['use_html'] ) : 0;
|
|
|
|
|
|
|
1442 |
|
1443 |
+
$new_data['emailnotices']['filter']['subject'] = ( isset( $data['emailnotices']['filter']['subject'] ) ) ? 1 : 0;
|
1444 |
+
$new_data['emailnotices']['filter']['content'] = ( isset( $data['emailnotices']['filter']['content'] ) ) ? 1 : 0;
|
1445 |
|
1446 |
$new_data['emailnotices']['from']['name'] = sanitize_text_field( $data['emailnotices']['from']['name'] );
|
1447 |
$new_data['emailnotices']['from']['email'] = sanitize_text_field( $data['emailnotices']['from']['email'] );
|
1455 |
if ( ! isset( $data['emailnotices']['override'] ) )
|
1456 |
$data['emailnotices']['override'] = 0;
|
1457 |
|
1458 |
+
$new_data['emailnotices']['override'] = ( $data['emailnotices']['override'] == 1 ) ? 1 : 0;
|
1459 |
|
1460 |
return $new_data;
|
1461 |
|
addons/notifications/myCRED-addon-notifications.php
CHANGED
@@ -41,13 +41,13 @@ if ( ! class_exists( 'myCRED_Notifications_Module' ) ) :
|
|
41 |
/**
|
42 |
* Module Init
|
43 |
* @since 1.2.3
|
44 |
-
* @version 1.0
|
45 |
*/
|
46 |
public function module_init() {
|
47 |
|
48 |
if ( ! is_user_logged_in() ) return;
|
49 |
|
50 |
-
add_action( 'mycred_front_enqueue', array( $this, 'register_assets' ) );
|
51 |
add_action( 'wp_footer', array( $this, 'get_notices' ), 1 );
|
52 |
add_action( 'wp_footer', array( $this, 'wp_footer' ), 999 );
|
53 |
|
41 |
/**
|
42 |
* Module Init
|
43 |
* @since 1.2.3
|
44 |
+
* @version 1.0.1
|
45 |
*/
|
46 |
public function module_init() {
|
47 |
|
48 |
if ( ! is_user_logged_in() ) return;
|
49 |
|
50 |
+
add_action( 'mycred_front_enqueue', array( $this, 'register_assets' ), 20 );
|
51 |
add_action( 'wp_footer', array( $this, 'get_notices' ), 1 );
|
52 |
add_action( 'wp_footer', array( $this, 'wp_footer' ), 999 );
|
53 |
|
addons/ranks/includes/mycred-rank-functions.php
CHANGED
@@ -268,23 +268,23 @@ endif;
|
|
268 |
* Get Users Rank ID
|
269 |
* Returns the rank post ID for the given point type.
|
270 |
* @since 1.6
|
271 |
-
* @version 1.0
|
272 |
*/
|
273 |
if ( ! function_exists( 'mycred_get_users_rank_id' ) ) :
|
274 |
-
function mycred_get_users_rank_id( $user_id = NULL, $
|
275 |
|
276 |
$end = '';
|
277 |
-
if ( $
|
278 |
-
$end = $
|
279 |
|
280 |
$rank_id = mycred_get_user_meta( $user_id, 'mycred_rank', $end, true );
|
281 |
if ( $rank_id == '' ) {
|
282 |
|
283 |
-
$rank = mycred_find_users_rank( $user_id, $
|
284 |
|
285 |
// Found a rank, save it
|
286 |
if ( $rank !== false ) {
|
287 |
-
|
288 |
$rank_id = $rank->rank_id;
|
289 |
}
|
290 |
|
@@ -295,6 +295,28 @@ if ( ! function_exists( 'mycred_get_users_rank_id' ) ) :
|
|
295 |
}
|
296 |
endif;
|
297 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
/**
|
299 |
* Get My Rank
|
300 |
* Returns the current users rank
|
@@ -316,7 +338,7 @@ endif;
|
|
316 |
* Retreaves the users current saved rank or if rank is missing
|
317 |
* finds the appropriate rank and saves it.
|
318 |
* @since 1.1
|
319 |
-
* @version 1.5
|
320 |
*/
|
321 |
if ( ! function_exists( 'mycred_get_users_rank' ) ) :
|
322 |
function mycred_get_users_rank( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
|
@@ -338,7 +360,7 @@ if ( ! function_exists( 'mycred_get_users_rank' ) ) :
|
|
338 |
|
339 |
// Found a rank, save it
|
340 |
if ( $rank !== false ) {
|
341 |
-
|
342 |
$rank_id = $rank->rank_id;
|
343 |
}
|
344 |
|
268 |
* Get Users Rank ID
|
269 |
* Returns the rank post ID for the given point type.
|
270 |
* @since 1.6
|
271 |
+
* @version 1.0.1
|
272 |
*/
|
273 |
if ( ! function_exists( 'mycred_get_users_rank_id' ) ) :
|
274 |
+
function mycred_get_users_rank_id( $user_id = NULL, $point_type = MYCRED_DEFAULT_TYPE_KEY ) {
|
275 |
|
276 |
$end = '';
|
277 |
+
if ( $point_type != MYCRED_DEFAULT_TYPE_KEY )
|
278 |
+
$end = $point_type;
|
279 |
|
280 |
$rank_id = mycred_get_user_meta( $user_id, 'mycred_rank', $end, true );
|
281 |
if ( $rank_id == '' ) {
|
282 |
|
283 |
+
$rank = mycred_find_users_rank( $user_id, $point_type );
|
284 |
|
285 |
// Found a rank, save it
|
286 |
if ( $rank !== false ) {
|
287 |
+
mycred_save_users_rank( $user_id, $rank->rank_id, $point_type );
|
288 |
$rank_id = $rank->rank_id;
|
289 |
}
|
290 |
|
295 |
}
|
296 |
endif;
|
297 |
|
298 |
+
/**
|
299 |
+
* Save Users Rank
|
300 |
+
* Saves a given rank for a user.
|
301 |
+
* @since 1.7.4
|
302 |
+
* @version 1.0
|
303 |
+
*/
|
304 |
+
if ( ! function_exists( 'mycred_save_users_rank' ) ) :
|
305 |
+
function mycred_save_users_rank( $user_id = NULL, $rank_id = NULL, $point_type = MYCRED_DEFAULT_TYPE_KEY ) {
|
306 |
+
|
307 |
+
if ( $user_id === NULL || $rank_id === NULL ) return false;
|
308 |
+
|
309 |
+
$end = '';
|
310 |
+
if ( $point_type != MYCRED_DEFAULT_TYPE_KEY )
|
311 |
+
$end = $point_type;
|
312 |
+
|
313 |
+
mycred_update_user_meta( $user_id, 'mycred_rank', $end, $rank_id );
|
314 |
+
|
315 |
+
return true;
|
316 |
+
|
317 |
+
}
|
318 |
+
endif;
|
319 |
+
|
320 |
/**
|
321 |
* Get My Rank
|
322 |
* Returns the current users rank
|
338 |
* Retreaves the users current saved rank or if rank is missing
|
339 |
* finds the appropriate rank and saves it.
|
340 |
* @since 1.1
|
341 |
+
* @version 1.5.1
|
342 |
*/
|
343 |
if ( ! function_exists( 'mycred_get_users_rank' ) ) :
|
344 |
function mycred_get_users_rank( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
|
360 |
|
361 |
// Found a rank, save it
|
362 |
if ( $rank !== false ) {
|
363 |
+
mycred_save_users_rank( $user_id, $rank->rank_id, $type );
|
364 |
$rank_id = $rank->rank_id;
|
365 |
}
|
366 |
|
addons/ranks/includes/mycred-rank-shortcodes.php
CHANGED
@@ -196,7 +196,7 @@ endif;
|
|
196 |
* Returns all users fore every registered rank in order.
|
197 |
* @see http://mycred.me/shortcodes/mycred_users_of_all_ranks/
|
198 |
* @since 1.1
|
199 |
-
* @version 1.2
|
200 |
*/
|
201 |
if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
|
202 |
function mycred_render_users_of_all_ranks( $atts, $row_template = NULL ) {
|
@@ -218,13 +218,6 @@ if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
|
|
218 |
if ( ! is_user_logged_in() && $login != '' )
|
219 |
return $mycred->template_tags_general( $login );
|
220 |
|
221 |
-
// Default template
|
222 |
-
if ( $row_template === NULL || empty( $row_template ) )
|
223 |
-
$row_template = '<p class="mycred-rank-user-row">%user_profile_link% with %balance% %_plural%</p>';
|
224 |
-
|
225 |
-
// Let others play
|
226 |
-
$row_template = apply_filters( 'mycred_users_of_all_ranks', $row_template, $atts, $mycred );
|
227 |
-
|
228 |
$output = '';
|
229 |
$all_ranks = mycred_get_ranks( 'publish', '-1', 'DESC', $ctype );
|
230 |
// If we have ranks
|
@@ -236,7 +229,7 @@ if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
|
|
236 |
foreach ( $all_ranks as $rank ) {
|
237 |
|
238 |
// Prep Slug
|
239 |
-
$slug
|
240 |
|
241 |
// Rank wrapper
|
242 |
$output .= '<div class="mycred-rank rank-' . $slug . ' rank-' . $rank->post_id . '"><h2>';
|
@@ -248,7 +241,7 @@ if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
|
|
248 |
// Rank title
|
249 |
$output .= $rank->title . '</h2>' . "\n";
|
250 |
|
251 |
-
$attr
|
252 |
'rank_id' => $rank->post_id,
|
253 |
'number' => $number,
|
254 |
'nothing' => $nothing,
|
@@ -275,45 +268,49 @@ endif;
|
|
275 |
* Returns a list of ranks with minimum and maximum point requirements.
|
276 |
* @see http://mycred.me/shortcodes/mycred_list_ranks/
|
277 |
* @since 1.1.1
|
278 |
-
* @version 1.
|
279 |
*/
|
280 |
if ( ! function_exists( 'mycred_render_rank_list' ) ) :
|
281 |
-
function mycred_render_rank_list( $atts, $
|
282 |
|
283 |
-
|
284 |
-
'order'
|
285 |
-
'ctype'
|
286 |
-
'wrap'
|
287 |
-
), $atts )
|
288 |
|
289 |
-
|
290 |
-
$content = '<p>%rank% <span class="min">%min%</span> - <span class="max">%max%</span></p>';
|
291 |
|
292 |
$output = '';
|
293 |
$all_ranks = mycred_get_ranks( 'publish', '-1', $order, $ctype );
|
294 |
|
295 |
if ( ! empty( $all_ranks ) ) {
|
296 |
|
297 |
-
|
298 |
-
|
|
|
|
|
|
|
299 |
|
300 |
foreach ( $all_ranks as $rank ) {
|
301 |
|
302 |
-
$mycred
|
|
|
303 |
|
304 |
-
$row
|
305 |
-
$row
|
306 |
-
$row
|
307 |
-
$row
|
308 |
-
$row
|
309 |
|
310 |
-
$row
|
311 |
|
312 |
-
$output .= $row
|
313 |
|
314 |
}
|
315 |
|
316 |
-
|
|
|
317 |
|
318 |
}
|
319 |
|
196 |
* Returns all users fore every registered rank in order.
|
197 |
* @see http://mycred.me/shortcodes/mycred_users_of_all_ranks/
|
198 |
* @since 1.1
|
199 |
+
* @version 1.2.1
|
200 |
*/
|
201 |
if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
|
202 |
function mycred_render_users_of_all_ranks( $atts, $row_template = NULL ) {
|
218 |
if ( ! is_user_logged_in() && $login != '' )
|
219 |
return $mycred->template_tags_general( $login );
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
$output = '';
|
222 |
$all_ranks = mycred_get_ranks( 'publish', '-1', 'DESC', $ctype );
|
223 |
// If we have ranks
|
229 |
foreach ( $all_ranks as $rank ) {
|
230 |
|
231 |
// Prep Slug
|
232 |
+
$slug = str_replace( ' ', '-', strtolower( $rank->title ) );
|
233 |
|
234 |
// Rank wrapper
|
235 |
$output .= '<div class="mycred-rank rank-' . $slug . ' rank-' . $rank->post_id . '"><h2>';
|
241 |
// Rank title
|
242 |
$output .= $rank->title . '</h2>' . "\n";
|
243 |
|
244 |
+
$attr = array(
|
245 |
'rank_id' => $rank->post_id,
|
246 |
'number' => $number,
|
247 |
'nothing' => $nothing,
|
268 |
* Returns a list of ranks with minimum and maximum point requirements.
|
269 |
* @see http://mycred.me/shortcodes/mycred_list_ranks/
|
270 |
* @since 1.1.1
|
271 |
+
* @version 1.3
|
272 |
*/
|
273 |
if ( ! function_exists( 'mycred_render_rank_list' ) ) :
|
274 |
+
function mycred_render_rank_list( $atts, $row_template = NULL ) {
|
275 |
|
276 |
+
$atts = shortcode_atts( array(
|
277 |
+
'order' => 'DESC',
|
278 |
+
'ctype' => MYCRED_DEFAULT_TYPE_KEY,
|
279 |
+
'wrap' => 'div'
|
280 |
+
), $atts );
|
281 |
|
282 |
+
extract( $atts );
|
|
|
283 |
|
284 |
$output = '';
|
285 |
$all_ranks = mycred_get_ranks( 'publish', '-1', $order, $ctype );
|
286 |
|
287 |
if ( ! empty( $all_ranks ) ) {
|
288 |
|
289 |
+
if ( $wrap != '' )
|
290 |
+
$output .= '<' . $wrap . ' class="mycred-rank-list">';
|
291 |
+
|
292 |
+
if ( $row_template === NULL || empty( $row_template ) )
|
293 |
+
$row_template = '<p>%rank% <span class="min">%min%</span> - <span class="max">%max%</span></p>';
|
294 |
|
295 |
foreach ( $all_ranks as $rank ) {
|
296 |
|
297 |
+
$mycred = mycred( $rank->point_type );
|
298 |
+
$row = apply_filters( 'mycred_rank_list', $row_template, $atts, $mycred );
|
299 |
|
300 |
+
$row = str_replace( '%rank%', $rank->title, $row );
|
301 |
+
$row = str_replace( '%rank_logo%', mycred_get_rank_logo( $rank->post_id ), $row );
|
302 |
+
$row = str_replace( '%min%', $mycred->format_creds( $rank->minimum ), $row );
|
303 |
+
$row = str_replace( '%max%', $mycred->format_creds( $rank->maximum ), $row );
|
304 |
+
$row = str_replace( '%count%', $rank->count, $row );
|
305 |
|
306 |
+
$row = $mycred->template_tags_general( $row );
|
307 |
|
308 |
+
$output .= $row;
|
309 |
|
310 |
}
|
311 |
|
312 |
+
if ( $wrap != '' )
|
313 |
+
$output .= '</' . $wrap . '>';
|
314 |
|
315 |
}
|
316 |
|
addons/ranks/myCRED-addon-ranks.php
CHANGED
@@ -86,7 +86,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
|
|
86 |
|
87 |
add_action( 'mycred_pre_init', array( $this, 'module_pre_init' ) );
|
88 |
add_action( 'mycred_init', array( $this, 'module_init' ) );
|
89 |
-
add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ) );
|
90 |
|
91 |
}
|
92 |
|
@@ -117,7 +117,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
|
|
117 |
$this->add_multiple_point_types_support();
|
118 |
|
119 |
add_action( 'pre_get_posts', array( $this, 'adjust_wp_query' ), 20 );
|
120 |
-
add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ) );
|
121 |
|
122 |
// Instances to update ranks
|
123 |
add_action( 'transition_post_status', array( $this, 'post_status_change' ), 99, 3 );
|
@@ -322,7 +322,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
|
|
322 |
/**
|
323 |
* Add Admin Menu Item
|
324 |
* @since 1.6
|
325 |
-
* @version 1.0
|
326 |
*/
|
327 |
public function add_menus() {
|
328 |
|
@@ -330,8 +330,12 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
|
|
330 |
|
331 |
foreach ( $this->point_types as $type_id => $label ) {
|
332 |
|
|
|
|
|
|
|
|
|
333 |
add_submenu_page(
|
334 |
-
|
335 |
__( 'Ranks', 'mycred' ),
|
336 |
__( 'Ranks', 'mycred' ),
|
337 |
$cap,
|
@@ -482,7 +486,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
|
|
482 |
* Balance Adjustment
|
483 |
* Check if users rank should change.
|
484 |
* @since 1.1
|
485 |
-
* @version 1.5
|
486 |
*/
|
487 |
public function balance_adjustment( $result, $request, $mycred ) {
|
488 |
|
@@ -495,16 +499,12 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
|
|
495 |
if ( mycred_rank_based_on_total( $type ) && $amount < 0 && $ref != 'manual' )
|
496 |
return $result;
|
497 |
|
498 |
-
$end = '';
|
499 |
-
if ( $type != MYCRED_DEFAULT_TYPE_KEY )
|
500 |
-
$end = $type;
|
501 |
-
|
502 |
// Find users rank
|
503 |
$rank = mycred_find_users_rank( $user_id, $type );
|
504 |
|
505 |
// If users rank changed, save it now.
|
506 |
if ( isset( $rank->rank_id ) && $rank->rank_id !== $rank->current_id )
|
507 |
-
|
508 |
|
509 |
return $result;
|
510 |
|
86 |
|
87 |
add_action( 'mycred_pre_init', array( $this, 'module_pre_init' ) );
|
88 |
add_action( 'mycred_init', array( $this, 'module_init' ) );
|
89 |
+
add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ), $this->menu_pos );
|
90 |
|
91 |
}
|
92 |
|
117 |
$this->add_multiple_point_types_support();
|
118 |
|
119 |
add_action( 'pre_get_posts', array( $this, 'adjust_wp_query' ), 20 );
|
120 |
+
add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ), $this->menu_pos );
|
121 |
|
122 |
// Instances to update ranks
|
123 |
add_action( 'transition_post_status', array( $this, 'post_status_change' ), 99, 3 );
|
322 |
/**
|
323 |
* Add Admin Menu Item
|
324 |
* @since 1.6
|
325 |
+
* @version 1.0.1
|
326 |
*/
|
327 |
public function add_menus() {
|
328 |
|
330 |
|
331 |
foreach ( $this->point_types as $type_id => $label ) {
|
332 |
|
333 |
+
$menu_slug = MYCRED_SLUG;
|
334 |
+
if ( $type_id != MYCRED_DEFAULT_TYPE_KEY )
|
335 |
+
$menu_slug = MYCRED_SLUG . '_' . $type_id;
|
336 |
+
|
337 |
add_submenu_page(
|
338 |
+
$menu_slug,
|
339 |
__( 'Ranks', 'mycred' ),
|
340 |
__( 'Ranks', 'mycred' ),
|
341 |
$cap,
|
486 |
* Balance Adjustment
|
487 |
* Check if users rank should change.
|
488 |
* @since 1.1
|
489 |
+
* @version 1.5.1
|
490 |
*/
|
491 |
public function balance_adjustment( $result, $request, $mycred ) {
|
492 |
|
499 |
if ( mycred_rank_based_on_total( $type ) && $amount < 0 && $ref != 'manual' )
|
500 |
return $result;
|
501 |
|
|
|
|
|
|
|
|
|
502 |
// Find users rank
|
503 |
$rank = mycred_find_users_rank( $user_id, $type );
|
504 |
|
505 |
// If users rank changed, save it now.
|
506 |
if ( isset( $rank->rank_id ) && $rank->rank_id !== $rank->current_id )
|
507 |
+
mycred_save_users_rank( $user_id, $rank->rank_id, $type );
|
508 |
|
509 |
return $result;
|
510 |
|
addons/sell-content/includes/mycred-sell-functions.php
CHANGED
@@ -32,7 +32,7 @@ endif;
|
|
32 |
* Returns an array of sellable post types. In order for a post type to be
|
33 |
* considered "usable", it must be public.
|
34 |
* @since 1.7
|
35 |
-
* @version 1.0
|
36 |
*/
|
37 |
if ( ! function_exists( 'mycred_sell_content_post_types' ) ) :
|
38 |
function mycred_sell_content_post_types() {
|
@@ -52,7 +52,7 @@ if ( ! function_exists( 'mycred_sell_content_post_types' ) ) :
|
|
52 |
|
53 |
if ( $setup->public != 1 ) continue;
|
54 |
|
55 |
-
if ( in_array( $post_type, $mycred_post_types ) ) continue;
|
56 |
|
57 |
$eligeble_types[ $post_type ] = $setup->labels->name;
|
58 |
|
@@ -329,7 +329,7 @@ endif;
|
|
329 |
* Checks if a given purchase has expired. Left this in place from the old version
|
330 |
* for backwards comp.
|
331 |
* @since 1.7
|
332 |
-
* @version 1.0
|
333 |
*/
|
334 |
if ( ! function_exists( 'mycred_content_purchase_has_expired' ) ) :
|
335 |
function mycred_content_purchase_has_expired( $payment = NULL ) {
|
@@ -372,14 +372,15 @@ if ( ! function_exists( 'mycred_content_purchase_has_expired' ) ) :
|
|
372 |
// If expiration is set
|
373 |
if ( $length > 0 ) {
|
374 |
|
375 |
-
$expiration
|
|
|
376 |
|
377 |
if ( $expiration <= current_time( 'timestamp' ) )
|
378 |
$has_expired = true;
|
379 |
|
380 |
}
|
381 |
|
382 |
-
return apply_filters( 'mycred_sell_content_sale_expired', $has_expired, $user_id, $post->ID, $payment->time, $length );
|
383 |
|
384 |
}
|
385 |
endif;
|
32 |
* Returns an array of sellable post types. In order for a post type to be
|
33 |
* considered "usable", it must be public.
|
34 |
* @since 1.7
|
35 |
+
* @version 1.0.1
|
36 |
*/
|
37 |
if ( ! function_exists( 'mycred_sell_content_post_types' ) ) :
|
38 |
function mycred_sell_content_post_types() {
|
52 |
|
53 |
if ( $setup->public != 1 ) continue;
|
54 |
|
55 |
+
if ( in_array( $post_type, $mycred_post_types ) || $post_type == 'attachment' ) continue;
|
56 |
|
57 |
$eligeble_types[ $post_type ] = $setup->labels->name;
|
58 |
|
329 |
* Checks if a given purchase has expired. Left this in place from the old version
|
330 |
* for backwards comp.
|
331 |
* @since 1.7
|
332 |
+
* @version 1.0.2
|
333 |
*/
|
334 |
if ( ! function_exists( 'mycred_content_purchase_has_expired' ) ) :
|
335 |
function mycred_content_purchase_has_expired( $payment = NULL ) {
|
372 |
// If expiration is set
|
373 |
if ( $length > 0 ) {
|
374 |
|
375 |
+
$expiration = apply_filters( 'mycred_sell_expire_calc', absint( $length * HOUR_IN_SECONDS ), $length, $payment->user_id, $post->ID );
|
376 |
+
$expiration = $expiration + $payment->time;
|
377 |
|
378 |
if ( $expiration <= current_time( 'timestamp' ) )
|
379 |
$has_expired = true;
|
380 |
|
381 |
}
|
382 |
|
383 |
+
return apply_filters( 'mycred_sell_content_sale_expired', $has_expired, $payment->user_id, $post->ID, $payment->time, $length );
|
384 |
|
385 |
}
|
386 |
endif;
|
addons/sell-content/includes/mycred-sell-shortcodes.php
CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
|
|
6 |
* This shortcode is intended to be used when selling parts of a content.
|
7 |
* Can only be used once per content.
|
8 |
* @since 1.7
|
9 |
-
* @version 1.0.
|
10 |
*/
|
11 |
if ( ! function_exists( 'mycred_render_sell_this' ) ) :
|
12 |
function mycred_render_sell_this( $atts, $content = '' ) {
|
@@ -64,7 +64,7 @@ if ( ! function_exists( 'mycred_render_sell_this' ) ) :
|
|
64 |
|
65 |
}
|
66 |
|
67 |
-
return $content;
|
68 |
|
69 |
}
|
70 |
endif;
|
6 |
* This shortcode is intended to be used when selling parts of a content.
|
7 |
* Can only be used once per content.
|
8 |
* @since 1.7
|
9 |
+
* @version 1.0.2
|
10 |
*/
|
11 |
if ( ! function_exists( 'mycred_render_sell_this' ) ) :
|
12 |
function mycred_render_sell_this( $atts, $content = '' ) {
|
64 |
|
65 |
}
|
66 |
|
67 |
+
return do_shortcode( $content );
|
68 |
|
69 |
}
|
70 |
endif;
|
addons/sell-content/myCRED-addon-sell-content.php
CHANGED
@@ -999,7 +999,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) :
|
|
999 |
* Handles content sales by replacing the posts content with the appropriate template
|
1000 |
* for those who have not paid. Admins and authors are excluded.
|
1001 |
* @since 0.1
|
1002 |
-
* @version 1.2
|
1003 |
*/
|
1004 |
public function the_content( $content ) {
|
1005 |
|
@@ -1067,7 +1067,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) :
|
|
1067 |
|
1068 |
}
|
1069 |
|
1070 |
-
return $content;
|
1071 |
|
1072 |
}
|
1073 |
|
999 |
* Handles content sales by replacing the posts content with the appropriate template
|
1000 |
* for those who have not paid. Admins and authors are excluded.
|
1001 |
* @since 0.1
|
1002 |
+
* @version 1.2.1
|
1003 |
*/
|
1004 |
public function the_content( $content ) {
|
1005 |
|
1067 |
|
1068 |
}
|
1069 |
|
1070 |
+
return do_shortcode( $content );
|
1071 |
|
1072 |
}
|
1073 |
|
addons/stats/myCRED-addon-stats.php
CHANGED
@@ -63,7 +63,7 @@ if ( ! class_exists( 'myCRED_Stats_Module' ) ) :
|
|
63 |
/**
|
64 |
* Init
|
65 |
* @since 1.6
|
66 |
-
* @version 1.0
|
67 |
*/
|
68 |
public function module_init() {
|
69 |
|
@@ -72,7 +72,7 @@ if ( ! class_exists( 'myCRED_Stats_Module' ) ) :
|
|
72 |
$mycred_load_stats = false;
|
73 |
|
74 |
// Scripts & Styles
|
75 |
-
add_action( 'mycred_front_enqueue', array( $this, 'register_scripts' ) );
|
76 |
add_action( 'admin_enqueue_scripts', array( $this, 'register_scripts' ) );
|
77 |
add_action( 'wp_footer', array( $this, 'load_front_scripts' ), 5 );
|
78 |
|
@@ -80,12 +80,16 @@ if ( ! class_exists( 'myCRED_Stats_Module' ) ) :
|
|
80 |
add_shortcode( 'mycred_statistics', 'mycred_statistics_shortcode_render' );
|
81 |
|
82 |
// Add color options to each point type
|
83 |
-
add_action( 'mycred_core_prefs',
|
|
|
84 |
foreach ( $mycred_types as $type_id => $type ) {
|
|
|
85 |
if ( $type_id === MYCRED_DEFAULT_TYPE_KEY ) continue;
|
86 |
-
|
|
|
|
|
|
|
87 |
}
|
88 |
-
add_filter( 'mycred_save_core_prefs', array( $this, 'sanitize_extra_settings' ), 80, 3 );
|
89 |
|
90 |
// Add admin screen
|
91 |
add_action( 'admin_menu', array( $this, 'add_menu' ) );
|
@@ -195,18 +199,22 @@ jQuery(document).ready(function($){
|
|
195 |
/**
|
196 |
* Sanitize & Save Settings
|
197 |
* @since 1.7
|
198 |
-
* @version 1.0
|
199 |
*/
|
200 |
public function sanitize_extra_settings( $new_data, $data, $general ) {
|
201 |
|
202 |
-
|
203 |
-
|
204 |
-
|
|
|
|
|
205 |
|
206 |
-
|
207 |
-
|
208 |
|
209 |
-
|
|
|
|
|
210 |
|
211 |
if ( array_key_exists( 'colors', $new_data ) )
|
212 |
unset( $new_data['colors'] );
|
63 |
/**
|
64 |
* Init
|
65 |
* @since 1.6
|
66 |
+
* @version 1.0.1
|
67 |
*/
|
68 |
public function module_init() {
|
69 |
|
72 |
$mycred_load_stats = false;
|
73 |
|
74 |
// Scripts & Styles
|
75 |
+
add_action( 'mycred_front_enqueue', array( $this, 'register_scripts' ), 30 );
|
76 |
add_action( 'admin_enqueue_scripts', array( $this, 'register_scripts' ) );
|
77 |
add_action( 'wp_footer', array( $this, 'load_front_scripts' ), 5 );
|
78 |
|
80 |
add_shortcode( 'mycred_statistics', 'mycred_statistics_shortcode_render' );
|
81 |
|
82 |
// Add color options to each point type
|
83 |
+
add_action( 'mycred_core_prefs', array( $this, 'color_settings' ) );
|
84 |
+
add_filter( 'mycred_save_core_prefs', array( $this, 'sanitize_extra_settings' ), 10, 3 );
|
85 |
foreach ( $mycred_types as $type_id => $type ) {
|
86 |
+
|
87 |
if ( $type_id === MYCRED_DEFAULT_TYPE_KEY ) continue;
|
88 |
+
|
89 |
+
add_action( 'mycred_core_prefs' . $type_id, array( $this, 'color_settings' ) );
|
90 |
+
add_filter( 'mycred_save_core_prefs' . $type_id, array( $this, 'sanitize_extra_settings' ), 10, 3 );
|
91 |
+
|
92 |
}
|
|
|
93 |
|
94 |
// Add admin screen
|
95 |
add_action( 'admin_menu', array( $this, 'add_menu' ) );
|
199 |
/**
|
200 |
* Sanitize & Save Settings
|
201 |
* @since 1.7
|
202 |
+
* @version 1.0.1
|
203 |
*/
|
204 |
public function sanitize_extra_settings( $new_data, $data, $general ) {
|
205 |
|
206 |
+
if ( array_key_exists( 'colors', $data ) ) {
|
207 |
+
|
208 |
+
$colors = array();
|
209 |
+
$colors['positive'] = sanitize_text_field( $data['colors']['positive'] );
|
210 |
+
$colors['negative'] = sanitize_text_field( $data['colors']['negative'] );
|
211 |
|
212 |
+
$saved = mycred_get_type_color();
|
213 |
+
$saved[ $general->mycred_type ] = $colors;
|
214 |
|
215 |
+
mycred_update_option( 'mycred-point-colors', $saved );
|
216 |
+
|
217 |
+
}
|
218 |
|
219 |
if ( array_key_exists( 'colors', $new_data ) )
|
220 |
unset( $new_data['colors'] );
|
addons/transfer/includes/mycred-transfer-shortcodes.php
CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
|
|
6 |
* Renders a transfer form that allows users to send points to other users.
|
7 |
* @see http://mycred.me/functions/mycred_transfer_render/
|
8 |
* @since 0.1
|
9 |
-
* @version 1.6.
|
10 |
*/
|
11 |
if ( ! function_exists( 'mycred_transfer_render' ) ) :
|
12 |
function mycred_transfer_render( $atts, $content = NULL ) {
|
@@ -79,7 +79,7 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
|
|
79 |
if ( $mycred->exclude_user( $charge_from ) ) return '<div class="row"><div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"><p>' . $excluded . '</p></div></div>';
|
80 |
|
81 |
// See if we can send the lowest value
|
82 |
-
$status = mycred_user_can_transfer( $charge_from, $mycred->get_lowest_value(),
|
83 |
$balance = $mycred->get_users_balance( $charge_from );
|
84 |
|
85 |
// Error. Not enough creds
|
@@ -236,7 +236,7 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
|
|
236 |
<div class="form-group select-amount-wrapper">
|
237 |
<?php if ( $amount_label != '' ) : ?><label><?php echo $amount_label; ?>:</label><?php endif; ?>
|
238 |
<?php if ( $amount == '' ) : ?>
|
239 |
-
<input type="text" name="mycred_new_transfer[amount]" placeholder="<?php echo $mycred->
|
240 |
<?php else : ?>
|
241 |
<input type="hidden" name="mycred_new_transfer[amount]" value="<?php echo $amount; ?>" />
|
242 |
<p class="form-control-static"><?php echo $mycred->format_creds( $amount ); ?></p>
|
@@ -256,7 +256,7 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
|
|
256 |
<div class="form-group select-amount-wrapper">
|
257 |
<?php if ( $amount_label != '' ) : ?><label><?php echo $amount_label; ?>:</label><?php endif; ?>
|
258 |
<?php if ( $amount == '' ) : ?>
|
259 |
-
<input type="text" name="mycred_new_transfer[amount]" placeholder="<?php echo $mycred->
|
260 |
<?php else : ?>
|
261 |
<input type="hidden" name="mycred_new_transfer[amount]" value="<?php echo $amount; ?>" />
|
262 |
<p class="form-control-static"><?php echo $mycred->format_creds( $amount ); ?></p>
|
6 |
* Renders a transfer form that allows users to send points to other users.
|
7 |
* @see http://mycred.me/functions/mycred_transfer_render/
|
8 |
* @since 0.1
|
9 |
+
* @version 1.6.3
|
10 |
*/
|
11 |
if ( ! function_exists( 'mycred_transfer_render' ) ) :
|
12 |
function mycred_transfer_render( $atts, $content = NULL ) {
|
79 |
if ( $mycred->exclude_user( $charge_from ) ) return '<div class="row"><div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"><p>' . $excluded . '</p></div></div>';
|
80 |
|
81 |
// See if we can send the lowest value
|
82 |
+
$status = mycred_user_can_transfer( $charge_from, $mycred->get_lowest_value(), $point_type, $ref );
|
83 |
$balance = $mycred->get_users_balance( $charge_from );
|
84 |
|
85 |
// Error. Not enough creds
|
236 |
<div class="form-group select-amount-wrapper">
|
237 |
<?php if ( $amount_label != '' ) : ?><label><?php echo $amount_label; ?>:</label><?php endif; ?>
|
238 |
<?php if ( $amount == '' ) : ?>
|
239 |
+
<input type="text" name="mycred_new_transfer[amount]" placeholder="<?php echo $mycred->get_lowest_value(); ?>" class="form-control" value="" />
|
240 |
<?php else : ?>
|
241 |
<input type="hidden" name="mycred_new_transfer[amount]" value="<?php echo $amount; ?>" />
|
242 |
<p class="form-control-static"><?php echo $mycred->format_creds( $amount ); ?></p>
|
256 |
<div class="form-group select-amount-wrapper">
|
257 |
<?php if ( $amount_label != '' ) : ?><label><?php echo $amount_label; ?>:</label><?php endif; ?>
|
258 |
<?php if ( $amount == '' ) : ?>
|
259 |
+
<input type="text" name="mycred_new_transfer[amount]" placeholder="<?php echo $mycred->get_lowest_value(); ?>" class="form-control" value="" />
|
260 |
<?php else : ?>
|
261 |
<input type="hidden" name="mycred_new_transfer[amount]" value="<?php echo $amount; ?>" />
|
262 |
<p class="form-control-static"><?php echo $mycred->format_creds( $amount ); ?></p>
|
addons/transfer/includes/mycred-transfer-widgets.php
CHANGED
@@ -14,11 +14,9 @@ if ( ! class_exists( 'myCRED_Widget_Transfer' ) ) :
|
|
14 |
*/
|
15 |
public function __construct() {
|
16 |
|
17 |
-
$name = mycred_label( true );
|
18 |
-
|
19 |
parent::__construct(
|
20 |
'mycred_widget_transfer',
|
21 |
-
sprintf( __( '(%s) Transfer', 'mycred' ),
|
22 |
array(
|
23 |
'classname' => 'widget-my-cred-transfer',
|
24 |
'description' => __( 'Allow transfers between users.', 'mycred' )
|
@@ -37,11 +35,8 @@ if ( ! class_exists( 'myCRED_Widget_Transfer' ) ) :
|
|
37 |
echo $before_widget;
|
38 |
|
39 |
// Title
|
40 |
-
if ( ! empty( $instance['title'] ) )
|
41 |
-
echo $before_title;
|
42 |
-
echo $instance['title'];
|
43 |
-
echo $after_title;
|
44 |
-
}
|
45 |
|
46 |
// Let the shortcode to the job
|
47 |
echo mycred_transfer_render( array(
|
@@ -66,16 +61,16 @@ if ( ! class_exists( 'myCRED_Widget_Transfer' ) ) :
|
|
66 |
public function form( $instance ) {
|
67 |
|
68 |
// Defaults
|
69 |
-
$title = isset( $instance['title'] ) ?
|
70 |
$show_balance = isset( $instance['show_balance'] ) ? $instance['show_balance'] : 0;
|
71 |
$show_limit = isset( $instance['show_limit'] ) ? $instance['show_balance'] : 0;
|
72 |
-
$button = isset( $instance['button'] ) ?
|
73 |
-
$amount = isset( $instance['amount'] ) ?
|
74 |
-
$reference = isset( $instance['reference'] ) ?
|
75 |
-
$recipient = isset( $instance['pay_to'] ) ?
|
76 |
-
$point_types = isset( $instance['types'] ) ?
|
77 |
-
$excluded = isset( $instance['excluded'] ) ?
|
78 |
-
$placeholder = isset( $instance['placeholder'] ) ?
|
79 |
|
80 |
?>
|
81 |
<!-- Widget Options -->
|
@@ -129,8 +124,8 @@ if ( ! class_exists( 'myCRED_Widget_Transfer' ) ) :
|
|
129 |
$instance = $old_instance;
|
130 |
|
131 |
$instance['title'] = wp_kses_post( $new_instance['title'] );
|
132 |
-
$instance['show_balance'] = ( isset( $new_instance['show_balance'] ) ) ?
|
133 |
-
$instance['show_limit'] = ( isset( $new_instance['show_limit'] ) ) ?
|
134 |
$instance['button'] = sanitize_text_field( $new_instance['button'] );
|
135 |
$instance['amount'] = sanitize_text_field( $new_instance['amount'] );
|
136 |
$instance['reference'] = sanitize_key( $new_instance['reference'] );
|
14 |
*/
|
15 |
public function __construct() {
|
16 |
|
|
|
|
|
17 |
parent::__construct(
|
18 |
'mycred_widget_transfer',
|
19 |
+
sprintf( __( '(%s) Transfer', 'mycred' ), mycred_label( true ) ),
|
20 |
array(
|
21 |
'classname' => 'widget-my-cred-transfer',
|
22 |
'description' => __( 'Allow transfers between users.', 'mycred' )
|
35 |
echo $before_widget;
|
36 |
|
37 |
// Title
|
38 |
+
if ( ! empty( $instance['title'] ) )
|
39 |
+
echo $before_title . $instance['title'] . $after_title;
|
|
|
|
|
|
|
40 |
|
41 |
// Let the shortcode to the job
|
42 |
echo mycred_transfer_render( array(
|
61 |
public function form( $instance ) {
|
62 |
|
63 |
// Defaults
|
64 |
+
$title = isset( $instance['title'] ) ? $instance['title'] : 'Transfer';
|
65 |
$show_balance = isset( $instance['show_balance'] ) ? $instance['show_balance'] : 0;
|
66 |
$show_limit = isset( $instance['show_limit'] ) ? $instance['show_balance'] : 0;
|
67 |
+
$button = isset( $instance['button'] ) ? $instance['button'] : 'Transfer';
|
68 |
+
$amount = isset( $instance['amount'] ) ? $instance['amount'] : '';
|
69 |
+
$reference = isset( $instance['reference'] ) ? $instance['reference'] : 'transfer';
|
70 |
+
$recipient = isset( $instance['pay_to'] ) ? $instance['pay_to'] : '';
|
71 |
+
$point_types = isset( $instance['types'] ) ? $instance['types'] : MYCRED_DEFAULT_TYPE_KEY;
|
72 |
+
$excluded = isset( $instance['excluded'] ) ? $instance['excluded'] : '';
|
73 |
+
$placeholder = isset( $instance['placeholder'] ) ? $instance['placeholder'] : '';
|
74 |
|
75 |
?>
|
76 |
<!-- Widget Options -->
|
124 |
$instance = $old_instance;
|
125 |
|
126 |
$instance['title'] = wp_kses_post( $new_instance['title'] );
|
127 |
+
$instance['show_balance'] = ( isset( $new_instance['show_balance'] ) ) ? 1 : 0;
|
128 |
+
$instance['show_limit'] = ( isset( $new_instance['show_limit'] ) ) ? 1 : 0;
|
129 |
$instance['button'] = sanitize_text_field( $new_instance['button'] );
|
130 |
$instance['amount'] = sanitize_text_field( $new_instance['amount'] );
|
131 |
$instance['reference'] = sanitize_key( $new_instance['reference'] );
|
addons/transfer/myCRED-addon-transfer.php
CHANGED
@@ -63,7 +63,7 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
|
|
63 |
/**
|
64 |
* Init
|
65 |
* @since 0.1
|
66 |
-
* @version 1.0
|
67 |
*/
|
68 |
public function module_init() {
|
69 |
|
@@ -71,7 +71,7 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
|
|
71 |
add_filter( 'mycred_email_before_send', array( $this, 'email_notices' ), 50, 2 );
|
72 |
|
73 |
// Register Scripts & Styles
|
74 |
-
add_action( 'mycred_front_enqueue', array( $this, 'register_script' ) );
|
75 |
|
76 |
// Register Shortcode
|
77 |
add_shortcode( 'mycred_transfer', 'mycred_transfer_render' );
|
@@ -98,7 +98,6 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
|
|
98 |
|
99 |
/**
|
100 |
* Enqueue Front
|
101 |
-
* @filter 'mycred_remove_transfer_css'
|
102 |
* @since 0.1
|
103 |
* @version 1.1
|
104 |
*/
|
63 |
/**
|
64 |
* Init
|
65 |
* @since 0.1
|
66 |
+
* @version 1.0.1
|
67 |
*/
|
68 |
public function module_init() {
|
69 |
|
71 |
add_filter( 'mycred_email_before_send', array( $this, 'email_notices' ), 50, 2 );
|
72 |
|
73 |
// Register Scripts & Styles
|
74 |
+
add_action( 'mycred_front_enqueue', array( $this, 'register_script' ), 30 );
|
75 |
|
76 |
// Register Shortcode
|
77 |
add_shortcode( 'mycred_transfer', 'mycred_transfer_render' );
|
98 |
|
99 |
/**
|
100 |
* Enqueue Front
|
|
|
101 |
* @since 0.1
|
102 |
* @version 1.1
|
103 |
*/
|
assets/images/badges-addon.png
CHANGED
Binary file
|
assets/screenshot-1.png
CHANGED
Binary file
|
assets/screenshot-2.png
CHANGED
Binary file
|
assets/screenshot-3.png
CHANGED
Binary file
|
assets/screenshot-4.png
CHANGED
Binary file
|
assets/screenshot-5.png
DELETED
Binary file
|
includes/classes/class.query-log.php
CHANGED
@@ -96,7 +96,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
|
|
96 |
if ( $this->args['ref'] !== NULL ) {
|
97 |
|
98 |
$_clean_refs = array();
|
99 |
-
$references = ( ( ! is_array( $this->args['ref'] ) ) ? explode( ',', $this->args['ref'] ) : $this->args['ref'] );
|
100 |
|
101 |
if ( ! empty( $references ) ) {
|
102 |
foreach ( $references as $reference ) {
|
@@ -356,7 +356,7 @@ $this->timestamps = $timestamps;
|
|
356 |
* Returns all table column headers.
|
357 |
* @filter mycred_log_column_headers
|
358 |
* @since 0.1
|
359 |
-
* @version 1.1.
|
360 |
*/
|
361 |
public function table_headers() {
|
362 |
|
@@ -372,6 +372,9 @@ $this->timestamps = $timestamps;
|
|
372 |
'entry' => __( 'Entry', 'mycred' )
|
373 |
);
|
374 |
|
|
|
|
|
|
|
375 |
if ( $this->is_admin )
|
376 |
$columns = array(
|
377 |
'cb' => '',
|
@@ -428,14 +431,14 @@ $this->timestamps = $timestamps;
|
|
428 |
/**
|
429 |
* Get Page Number
|
430 |
* @since 1.4
|
431 |
-
* @version 1.0.
|
432 |
*/
|
433 |
public function get_pagenum() {
|
434 |
|
435 |
-
global $
|
436 |
|
437 |
-
if ( $
|
438 |
-
$pagenum = absint( $
|
439 |
|
440 |
elseif ( isset( $_REQUEST['paged'] ) )
|
441 |
$pagenum = absint( $_REQUEST['paged'] );
|
96 |
if ( $this->args['ref'] !== NULL ) {
|
97 |
|
98 |
$_clean_refs = array();
|
99 |
+
$references = ( ( ! is_array( $this->args['ref'] ) ) ? explode( ',', urldecode( $this->args['ref'] ) ) : $this->args['ref'] );
|
100 |
|
101 |
if ( ! empty( $references ) ) {
|
102 |
foreach ( $references as $reference ) {
|
356 |
* Returns all table column headers.
|
357 |
* @filter mycred_log_column_headers
|
358 |
* @since 0.1
|
359 |
+
* @version 1.1.2
|
360 |
*/
|
361 |
public function table_headers() {
|
362 |
|
372 |
'entry' => __( 'Entry', 'mycred' )
|
373 |
);
|
374 |
|
375 |
+
if ( $this->args['user_id'] !== NULL )
|
376 |
+
unset( $columns['username'] );
|
377 |
+
|
378 |
if ( $this->is_admin )
|
379 |
$columns = array(
|
380 |
'cb' => '',
|
431 |
/**
|
432 |
* Get Page Number
|
433 |
* @since 1.4
|
434 |
+
* @version 1.0.2
|
435 |
*/
|
436 |
public function get_pagenum() {
|
437 |
|
438 |
+
global $wp;
|
439 |
|
440 |
+
if ( isset( $wp->query_vars['page'] ) && $wp->query_vars['page'] != '' )
|
441 |
+
$pagenum = absint( $wp->query_vars['page'] );
|
442 |
|
443 |
elseif ( isset( $_REQUEST['paged'] ) )
|
444 |
$pagenum = absint( $_REQUEST['paged'] );
|
includes/mycred-functions.php
CHANGED
@@ -295,15 +295,15 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
|
|
295 |
* Returns the lowest point value available based on the number of decimal places
|
296 |
* we use. So with 1 decimal = 0.1, 2 decimals 0.01 etc. Defaults to 1.
|
297 |
* @since 1.7
|
298 |
-
* @version 1.0
|
299 |
*/
|
300 |
public function get_lowest_value() {
|
301 |
|
302 |
$lowest = 1;
|
303 |
if ( $this->format['decimals'] > 0 )
|
304 |
-
$lowest = (
|
305 |
|
306 |
-
return $
|
307 |
|
308 |
}
|
309 |
|
@@ -504,7 +504,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
|
|
504 |
* @param $data (object) Log entry data object
|
505 |
* @return (string) parsed string
|
506 |
* @since 0.1
|
507 |
-
* @version 1.3
|
508 |
*/
|
509 |
public function template_tags_user( $content = '', $ref_id = NULL, $data = '' ) {
|
510 |
|
@@ -540,36 +540,30 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
|
|
540 |
else return $content;
|
541 |
|
542 |
// Let others play first
|
543 |
-
$content
|
544 |
|
545 |
if ( ! isset( $user->ID ) ) return $content;
|
546 |
|
547 |
// Replace template tags
|
548 |
-
$content
|
549 |
-
$content
|
550 |
-
$content
|
551 |
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
$url = get_bloginfo( 'url' ) . '/' . $wp_rewrite->author_base . '/' . urlencode( $user->user_login ) . '/';
|
558 |
-
}
|
559 |
-
$url = apply_filters( 'mycred_users_profile_url', $url, $user );
|
560 |
|
561 |
-
$content
|
562 |
-
$content
|
563 |
-
$content
|
564 |
|
565 |
-
|
566 |
-
$
|
567 |
-
$content = str_replace( '%user_url%', ( isset( $user->user_url ) ) ? $user->user_url : '', $content );
|
568 |
|
569 |
-
|
570 |
-
$
|
571 |
-
$content = str_replace( '%balance%', $balance, $content );
|
572 |
-
$content = str_replace( '%balance_f%', $this->format_creds( $balance ), $content );
|
573 |
|
574 |
return $content;
|
575 |
|
@@ -1086,7 +1080,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
|
|
1086 |
* @param $new_balance (int|float), amount to add/deduct from users balance. This value must be pre-formated.
|
1087 |
* @returns (bool) true on success or false on fail.
|
1088 |
* @since 1.7.3
|
1089 |
-
* @version 1.0
|
1090 |
*/
|
1091 |
public function set_users_balance( $user_id = NULL, $new_balance = NULL ) {
|
1092 |
|
@@ -1095,6 +1089,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
|
|
1095 |
|
1096 |
$type = $this->get_cred_id();
|
1097 |
$new_balance = $this->number( $new_balance );
|
|
|
1098 |
|
1099 |
// Update balance
|
1100 |
mycred_update_user_meta( $user_id, $type, '', $new_balance );
|
@@ -1103,7 +1098,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
|
|
1103 |
mycred_delete_option( 'mycred-cache-total-' . $type );
|
1104 |
|
1105 |
// Let others play
|
1106 |
-
do_action( 'mycred_set_user_balance', $user_id, $new_balance, $this );
|
1107 |
|
1108 |
return true;
|
1109 |
|
@@ -1198,7 +1193,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
|
|
1198 |
* @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
|
1199 |
* @returns false if requirements are not set or db insert id if successful.
|
1200 |
* @since 0.1
|
1201 |
-
* @version 1.3
|
1202 |
*/
|
1203 |
public function add_to_log( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = MYCRED_DEFAULT_TYPE_KEY ) {
|
1204 |
|
@@ -1226,16 +1221,6 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
|
|
1226 |
$point_types = mycred_get_types();
|
1227 |
if ( ! array_key_exists( $type, $point_types ) ) $type = $this->get_cred_id();
|
1228 |
|
1229 |
-
// Creds format
|
1230 |
-
if ( $this->format['decimals'] > 0 )
|
1231 |
-
$format = '%f';
|
1232 |
-
|
1233 |
-
elseif ( $this->format['decimals'] == 0 )
|
1234 |
-
$format = '%d';
|
1235 |
-
|
1236 |
-
else
|
1237 |
-
$format = '%s';
|
1238 |
-
|
1239 |
$time = apply_filters( 'mycred_log_time', current_time( 'timestamp' ), $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
|
1240 |
$insert = array(
|
1241 |
'ref' => $ref,
|
@@ -1252,7 +1237,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
|
|
1252 |
$wpdb->insert(
|
1253 |
$this->log_table,
|
1254 |
$insert,
|
1255 |
-
array( '%s', '%d', '%d',
|
1256 |
);
|
1257 |
|
1258 |
$insert_id = $wpdb->insert_id;
|
@@ -1523,6 +1508,41 @@ if ( ! function_exists( 'mycred_get_user_id' ) ) :
|
|
1523 |
}
|
1524 |
endif;
|
1525 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1526 |
/**
|
1527 |
* Get Users Account
|
1528 |
* Returns either the current users or the given users account object.
|
@@ -2068,7 +2088,7 @@ endif;
|
|
2068 |
* @see http://codex.mycred.me/functions/mycred_exclude_user/
|
2069 |
* @param $user_id (int), optional user to check, defaults to current user
|
2070 |
* @since 0.1
|
2071 |
-
* @version 1.1.
|
2072 |
*/
|
2073 |
if ( ! function_exists( 'mycred_exclude_user' ) ) :
|
2074 |
function mycred_exclude_user( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
|
@@ -2076,7 +2096,7 @@ if ( ! function_exists( 'mycred_exclude_user' ) ) :
|
|
2076 |
if ( $user_id === NULL )
|
2077 |
$user_id = get_current_user_id();
|
2078 |
|
2079 |
-
if ( $user_id === 0 ) return false;
|
2080 |
|
2081 |
$mycred = mycred( $type );
|
2082 |
|
@@ -2092,23 +2112,39 @@ endif;
|
|
2092 |
* @param $user_id (int) user id
|
2093 |
* @return users balance (int|float)
|
2094 |
* @since 0.1
|
2095 |
-
* @version 1.
|
2096 |
-
*/
|
2097 |
if ( ! function_exists( 'mycred_get_users_cred' ) ) :
|
2098 |
function mycred_get_users_cred( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
|
2099 |
|
2100 |
if ( $user_id === NULL )
|
2101 |
$user_id = get_current_user_id();
|
2102 |
|
2103 |
-
if ( $user_id === 0 ) return
|
2104 |
|
2105 |
$mycred = mycred( $type );
|
2106 |
|
|
|
|
|
2107 |
return $mycred->get_users_balance( $user_id, $type );
|
2108 |
|
2109 |
}
|
2110 |
endif;
|
2111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2112 |
/**
|
2113 |
* Get Users Creds Formated
|
2114 |
* Returns the given users current cred balance formated. If no user id is given
|
@@ -2116,17 +2152,37 @@ endif;
|
|
2116 |
* @param $user_id (int), required user id
|
2117 |
* @return users balance (string) or false if no user id is given
|
2118 |
* @since 0.1
|
2119 |
-
* @version 1.
|
2120 |
*/
|
2121 |
if ( ! function_exists( 'mycred_get_users_fcred' ) ) :
|
2122 |
function mycred_get_users_fcred( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
|
2123 |
|
2124 |
-
if ( $user_id === NULL )
|
|
|
2125 |
|
2126 |
-
|
2127 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2128 |
|
2129 |
-
return
|
2130 |
|
2131 |
}
|
2132 |
endif;
|
295 |
* Returns the lowest point value available based on the number of decimal places
|
296 |
* we use. So with 1 decimal = 0.1, 2 decimals 0.01 etc. Defaults to 1.
|
297 |
* @since 1.7
|
298 |
+
* @version 1.0.1
|
299 |
*/
|
300 |
public function get_lowest_value() {
|
301 |
|
302 |
$lowest = 1;
|
303 |
if ( $this->format['decimals'] > 0 )
|
304 |
+
$lowest = number_format( '0.' . zeroise( 1, $this->format['decimals'] ), $this->format['decimals'], '.', '' );
|
305 |
|
306 |
+
return $lowest;
|
307 |
|
308 |
}
|
309 |
|
504 |
* @param $data (object) Log entry data object
|
505 |
* @return (string) parsed string
|
506 |
* @since 0.1
|
507 |
+
* @version 1.3.1
|
508 |
*/
|
509 |
public function template_tags_user( $content = '', $ref_id = NULL, $data = '' ) {
|
510 |
|
540 |
else return $content;
|
541 |
|
542 |
// Let others play first
|
543 |
+
$content = apply_filters( 'mycred_parse_tags_user', $content, $user, $data );
|
544 |
|
545 |
if ( ! isset( $user->ID ) ) return $content;
|
546 |
|
547 |
// Replace template tags
|
548 |
+
$content = str_replace( '%user_id%', $user->ID, $content );
|
549 |
+
$content = str_replace( '%user_name%', $user->user_login, $content );
|
550 |
+
$content = str_replace( '%user_name_en%', urlencode( $user->user_login ), $content );
|
551 |
|
552 |
+
$profile_url = mycred_get_users_profile_url( $user->ID );
|
553 |
+
|
554 |
+
$content = str_replace( '%display_name%', $user->display_name, $content );
|
555 |
+
$content = str_replace( '%user_profile_url%', $profile_url, $content );
|
556 |
+
$content = str_replace( '%user_profile_link%', '<a href="' . $profile_url . '">' . $user->display_name . '</a>', $content );
|
|
|
|
|
|
|
557 |
|
558 |
+
$content = str_replace( '%user_nicename%', ( isset( $user->user_nicename ) ) ? $user->user_nicename : '', $content );
|
559 |
+
$content = str_replace( '%user_email%', ( isset( $user->user_email ) ) ? $user->user_email : '', $content );
|
560 |
+
$content = str_replace( '%user_url%', ( isset( $user->user_url ) ) ? $user->user_url : '', $content );
|
561 |
|
562 |
+
// Balance Related
|
563 |
+
$balance = $this->get_users_balance( $user->ID );
|
|
|
564 |
|
565 |
+
$content = str_replace( '%balance%', $balance, $content );
|
566 |
+
$content = str_replace( '%balance_f%', $this->format_creds( $balance ), $content );
|
|
|
|
|
567 |
|
568 |
return $content;
|
569 |
|
1080 |
* @param $new_balance (int|float), amount to add/deduct from users balance. This value must be pre-formated.
|
1081 |
* @returns (bool) true on success or false on fail.
|
1082 |
* @since 1.7.3
|
1083 |
+
* @version 1.0.1
|
1084 |
*/
|
1085 |
public function set_users_balance( $user_id = NULL, $new_balance = NULL ) {
|
1086 |
|
1089 |
|
1090 |
$type = $this->get_cred_id();
|
1091 |
$new_balance = $this->number( $new_balance );
|
1092 |
+
$old_balance = $this->get_users_balance( $user_id, $type );
|
1093 |
|
1094 |
// Update balance
|
1095 |
mycred_update_user_meta( $user_id, $type, '', $new_balance );
|
1098 |
mycred_delete_option( 'mycred-cache-total-' . $type );
|
1099 |
|
1100 |
// Let others play
|
1101 |
+
do_action( 'mycred_set_user_balance', $user_id, $new_balance, $old_balance, $this );
|
1102 |
|
1103 |
return true;
|
1104 |
|
1193 |
* @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
|
1194 |
* @returns false if requirements are not set or db insert id if successful.
|
1195 |
* @since 0.1
|
1196 |
+
* @version 1.3.1
|
1197 |
*/
|
1198 |
public function add_to_log( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = MYCRED_DEFAULT_TYPE_KEY ) {
|
1199 |
|
1221 |
$point_types = mycred_get_types();
|
1222 |
if ( ! array_key_exists( $type, $point_types ) ) $type = $this->get_cred_id();
|
1223 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1224 |
$time = apply_filters( 'mycred_log_time', current_time( 'timestamp' ), $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
|
1225 |
$insert = array(
|
1226 |
'ref' => $ref,
|
1237 |
$wpdb->insert(
|
1238 |
$this->log_table,
|
1239 |
$insert,
|
1240 |
+
array( '%s', '%d', '%d', '%s', '%s', '%d', '%s', ( is_numeric( $data ) ) ? '%d' : '%s' )
|
1241 |
);
|
1242 |
|
1243 |
$insert_id = $wpdb->insert_id;
|
1508 |
}
|
1509 |
endif;
|
1510 |
|
1511 |
+
/**
|
1512 |
+
* Get Users Profile URL
|
1513 |
+
* Returns a given users profile URL.
|
1514 |
+
* @since 1.7.4
|
1515 |
+
* @version 1.0.1
|
1516 |
+
*/
|
1517 |
+
if ( ! function_exists( 'mycred_get_users_profile_url' ) ) :
|
1518 |
+
function mycred_get_users_profile_url( $user_id = NULL ) {
|
1519 |
+
|
1520 |
+
$profile_url = '';
|
1521 |
+
if ( $user_id === NULL || absint( $user_id ) === 0 ) return $profile_url;
|
1522 |
+
|
1523 |
+
$user = get_userdata( $user_id );
|
1524 |
+
|
1525 |
+
// BuddyPress option
|
1526 |
+
if ( function_exists( 'bp_core_get_user_domain' ) )
|
1527 |
+
$profile_url = bp_core_get_user_domain( $user_id );
|
1528 |
+
|
1529 |
+
// bbPress option
|
1530 |
+
elseif ( function_exists( 'bbp_get_user_profile_url' ) )
|
1531 |
+
$profile_url = bbp_get_user_profile_url( $user_id );
|
1532 |
+
|
1533 |
+
else {
|
1534 |
+
|
1535 |
+
global $wp_rewrite;
|
1536 |
+
|
1537 |
+
$profile_url = get_bloginfo( 'url' ) . '/' . $wp_rewrite->author_base . '/' . urlencode( $user->user_login ) . '/';
|
1538 |
+
|
1539 |
+
}
|
1540 |
+
|
1541 |
+
return apply_filters( 'mycred_users_profile_url', $profile_url, $user );
|
1542 |
+
|
1543 |
+
}
|
1544 |
+
endif;
|
1545 |
+
|
1546 |
/**
|
1547 |
* Get Users Account
|
1548 |
* Returns either the current users or the given users account object.
|
2088 |
* @see http://codex.mycred.me/functions/mycred_exclude_user/
|
2089 |
* @param $user_id (int), optional user to check, defaults to current user
|
2090 |
* @since 0.1
|
2091 |
+
* @version 1.1.2
|
2092 |
*/
|
2093 |
if ( ! function_exists( 'mycred_exclude_user' ) ) :
|
2094 |
function mycred_exclude_user( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
|
2096 |
if ( $user_id === NULL )
|
2097 |
$user_id = get_current_user_id();
|
2098 |
|
2099 |
+
if ( (int) $user_id === 0 ) return false;
|
2100 |
|
2101 |
$mycred = mycred( $type );
|
2102 |
|
2112 |
* @param $user_id (int) user id
|
2113 |
* @return users balance (int|float)
|
2114 |
* @since 0.1
|
2115 |
+
* @version 1.2
|
2116 |
+
*/
|
2117 |
if ( ! function_exists( 'mycred_get_users_cred' ) ) :
|
2118 |
function mycred_get_users_cred( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
|
2119 |
|
2120 |
if ( $user_id === NULL )
|
2121 |
$user_id = get_current_user_id();
|
2122 |
|
2123 |
+
if ( (int) $user_id === 0 ) return false;
|
2124 |
|
2125 |
$mycred = mycred( $type );
|
2126 |
|
2127 |
+
if ( $mycred->exclude_user( $user_id ) ) return false;
|
2128 |
+
|
2129 |
return $mycred->get_users_balance( $user_id, $type );
|
2130 |
|
2131 |
}
|
2132 |
endif;
|
2133 |
|
2134 |
+
/**
|
2135 |
+
* Get Users Balance (pseudo)
|
2136 |
+
* Pseudo function for mycred_get_users_cred.
|
2137 |
+
* @since 1.7.4
|
2138 |
+
* @version 1.0
|
2139 |
+
*/
|
2140 |
+
if ( ! function_exists( 'mycred_get_users_balance' ) ) :
|
2141 |
+
function mycred_get_users_balance( $user_id = NULL, $point_type = MYCRED_DEFAULT_TYPE_KEY ) {
|
2142 |
+
|
2143 |
+
return mycred_get_users_cred( $user_id, $point_type );
|
2144 |
+
|
2145 |
+
}
|
2146 |
+
endif;
|
2147 |
+
|
2148 |
/**
|
2149 |
* Get Users Creds Formated
|
2150 |
* Returns the given users current cred balance formated. If no user id is given
|
2152 |
* @param $user_id (int), required user id
|
2153 |
* @return users balance (string) or false if no user id is given
|
2154 |
* @since 0.1
|
2155 |
+
* @version 1.2
|
2156 |
*/
|
2157 |
if ( ! function_exists( 'mycred_get_users_fcred' ) ) :
|
2158 |
function mycred_get_users_fcred( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
|
2159 |
|
2160 |
+
if ( $user_id === NULL )
|
2161 |
+
$user_id = get_current_user_id();
|
2162 |
|
2163 |
+
if ( (int) $user_id === 0 ) return false;
|
2164 |
+
|
2165 |
+
$mycred = mycred( $type );
|
2166 |
+
|
2167 |
+
if ( $mycred->exclude_user( $user_id ) ) return false;
|
2168 |
+
|
2169 |
+
$balance = $mycred->get_users_balance( $user_id, $type );
|
2170 |
+
|
2171 |
+
return $mycred->format_creds( $balance );
|
2172 |
+
|
2173 |
+
}
|
2174 |
+
endif;
|
2175 |
+
|
2176 |
+
/**
|
2177 |
+
* Display Users Balance
|
2178 |
+
* Pseudo function for mycred_get_users_fcred.
|
2179 |
+
* @since 1.7.4
|
2180 |
+
* @version 1.0
|
2181 |
+
*/
|
2182 |
+
if ( ! function_exists( 'mycred_display_users_balance' ) ) :
|
2183 |
+
function mycred_display_users_balance( $user_id = NULL, $point_type = MYCRED_DEFAULT_TYPE_KEY ) {
|
2184 |
|
2185 |
+
return mycred_get_users_fcred( $user_id, $point_type );
|
2186 |
|
2187 |
}
|
2188 |
endif;
|
includes/mycred-widgets.php
CHANGED
@@ -4,7 +4,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
|
|
4 |
/**
|
5 |
* Widget: myCRED Balance
|
6 |
* @since 0.1
|
7 |
-
* @version 1.4.
|
8 |
*/
|
9 |
if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
|
10 |
class myCRED_Widget_Balance extends WP_Widget {
|
@@ -14,14 +14,12 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
|
|
14 |
*/
|
15 |
public function __construct() {
|
16 |
|
17 |
-
$name = mycred_label( true );
|
18 |
-
|
19 |
parent::__construct(
|
20 |
'mycred_widget_balance',
|
21 |
-
sprintf( __( '(%s) My Balance', 'mycred' ),
|
22 |
array(
|
23 |
'classname' => 'widget-my-cred',
|
24 |
-
'description' =>
|
25 |
)
|
26 |
);
|
27 |
|
@@ -62,7 +60,7 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
|
|
62 |
$layout = $mycred->template_tags_amount( $instance['cred_format'], $balance->current );
|
63 |
$layout = $mycred->template_tags_user( $layout, false, wp_get_current_user() );
|
64 |
|
65 |
-
echo '<div class="myCRED-balance ' . esc_attr( $instance['type'] ) . '">' . $layout . '</div>';
|
66 |
|
67 |
// If we want to include history
|
68 |
if ( $instance['show_history'] ) {
|
@@ -80,23 +78,21 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
|
|
80 |
if ( $log->have_entries() ) {
|
81 |
|
82 |
// Title
|
83 |
-
if ( ! empty( $instance['history_title'] ) )
|
84 |
-
$
|
85 |
-
echo $before_title . $mycred->template_tags_general( $history_title ) . $after_title;
|
86 |
-
}
|
87 |
|
88 |
// Organized List
|
89 |
echo '<ol class="myCRED-history">';
|
90 |
-
$alt
|
91 |
$date_format = get_option( 'date_format' );
|
92 |
foreach ( $log->results as $entry ) {
|
93 |
|
94 |
// Row Layout
|
95 |
$layout = $instance['history_format'];
|
|
|
96 |
$layout = str_replace( '%date%', '<span class="date">' . date( $date_format, $entry->time ) . '</span>', $layout );
|
97 |
$layout = str_replace( '%entry%', $mycred->parse_template_tags( $entry->entry, $entry ), $layout );
|
98 |
|
99 |
-
$layout = $mycred->allowed_tags( $layout );
|
100 |
$layout = $mycred->template_tags_amount( $layout, $entry->creds );
|
101 |
|
102 |
// Alternating rows
|
@@ -155,33 +151,24 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
|
|
155 |
public function form( $instance ) {
|
156 |
|
157 |
// Defaults
|
158 |
-
$title = isset( $instance['title'] )
|
159 |
-
$type = isset( $instance['type'] )
|
160 |
-
$cred_format = isset( $instance['cred_format'] )
|
161 |
-
$show_history = isset( $instance['show_history'] )
|
162 |
-
$history_title = isset( $instance['history_title'] )
|
163 |
-
$history_entry = isset( $instance['history_format'] ) ?
|
164 |
-
$history_length = isset( $instance['number'] )
|
165 |
-
$show_visitors = isset( $instance['show_visitors'] )
|
166 |
-
$message = isset( $instance['message'] )
|
167 |
-
|
168 |
-
$mycred
|
169 |
-
$mycred_types
|
170 |
-
|
171 |
-
// CSS to help with show/hide
|
172 |
-
$history_option_class = $visitor_option_class = '';
|
173 |
-
if ( $show_history )
|
174 |
-
$history_option_class = ' ex-field';
|
175 |
-
|
176 |
-
if ( $show_visitors )
|
177 |
-
$visitor_option_class = ' ex-field';
|
178 |
|
179 |
?>
|
180 |
<!-- Widget Admin Styling -->
|
181 |
<style type="text/css">
|
182 |
-
|
183 |
-
|
184 |
-
p.myCRED-widget-field span textarea { width: 98%; min-height: 80px; }
|
185 |
</style>
|
186 |
|
187 |
<!-- Widget Options -->
|
@@ -202,49 +189,49 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
|
|
202 |
|
203 |
<!-- Balance layout -->
|
204 |
<p class="myCRED-widget-field">
|
205 |
-
<label for="<?php echo esc_attr( $this->get_field_id( 'cred_format' ) ); ?>"><?php _e( 'Layout', 'mycred' ); ?>:</label>
|
206 |
-
<
|
207 |
<small><?php echo $mycred->available_template_tags( array( 'general', 'amount', 'user' ) ); ?></small>
|
208 |
</p>
|
209 |
|
210 |
<!-- History -->
|
211 |
<p class="myCRED-widget-field">
|
212 |
-
<input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_history' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>" value="1"<?php checked( $show_history, 1 ); ?> class="checkbox" />
|
213 |
-
|
214 |
-
|
|
|
215 |
<label for="<?php echo esc_attr( $this->get_field_id( 'history_title' ) ); ?>"><?php _e( 'History Title', 'mycred' ); ?>:</label>
|
216 |
<input id="<?php echo esc_attr( $this->get_field_id( 'history_title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'history_title' ) ); ?>" type="text" value="<?php echo esc_attr( $history_title ); ?>" class="widefat" />
|
|
|
|
|
217 |
<label for="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>"><?php _e( 'Number of entires', 'mycred' ); ?>:</label>
|
218 |
-
<input id="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'number' ) ); ?>" type="text" value="<?php echo $history_length; ?>" size="3" class="
|
|
|
|
|
219 |
<label for="<?php echo esc_attr( $this->get_field_id( 'history_format' ) ); ?>"><?php _e( 'Row layout', 'mycred' ); ?>:</label>
|
220 |
-
<textarea name="<?php echo esc_attr( $this->get_field_name( 'history_format' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'history_format' ) ); ?>" rows="3"><?php echo esc_attr( $history_entry ); ?></textarea>
|
221 |
<small><?php echo $mycred->available_template_tags( array( 'general', 'widget' ) ); ?></small>
|
222 |
-
</
|
223 |
-
</
|
224 |
<!-- Show to Visitors -->
|
225 |
<p class="myCRED-widget-field">
|
226 |
-
<input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_visitors' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>" value="1"<?php checked( $show_visitors, 1 ); ?> class="checkbox" />
|
227 |
-
<label for="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>"><?php _e( 'Show message when not logged in', 'mycred' ); ?></label><br />
|
228 |
-
<span class="mycred-hidden<?php echo $visitor_option_class; ?>">
|
229 |
-
<label for="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>"><?php _e( 'Message', 'mycred' ); ?>:</label><br />
|
230 |
-
<textarea class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'message' ) ); ?>"><?php echo $message; ?></textarea><br />
|
231 |
-
<small><?php echo $mycred->available_template_tags( array( 'general', 'amount' ) ); ?></small>
|
232 |
-
</span>
|
233 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
<!-- Widget Admin Scripting -->
|
235 |
<script type="text/javascript">//<![CDATA[
|
236 |
jQuery(function($) {
|
237 |
-
$(document).ready(function(){
|
238 |
-
|
239 |
-
$( '#<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>' ).click(function(){
|
240 |
-
$(this).next().next().next().toggleClass( 'ex-field' );
|
241 |
-
});
|
242 |
-
|
243 |
-
$( '#<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>' ).click(function(){
|
244 |
-
$(this).next().next().next().toggleClass( 'ex-field' );
|
245 |
-
});
|
246 |
|
|
|
|
|
247 |
});
|
|
|
248 |
});//]]>
|
249 |
</script>
|
250 |
<?php
|
@@ -256,22 +243,20 @@ jQuery(function($) {
|
|
256 |
*/
|
257 |
public function update( $new_instance, $old_instance ) {
|
258 |
|
259 |
-
|
260 |
-
|
261 |
-
$instance = $old_instance;
|
262 |
-
$allowed = $mycred->allowed_html_tags();
|
263 |
|
264 |
-
$instance['title'] =
|
265 |
$instance['type'] = sanitize_text_field( $new_instance['type'] );
|
266 |
-
$instance['cred_format'] =
|
267 |
$instance['show_history'] = ( isset( $new_instance['show_history'] ) ) ? 1 : 0;
|
268 |
-
$instance['history_title'] =
|
269 |
-
$instance['history_format'] =
|
270 |
$instance['number'] = absint( $new_instance['number'] );
|
271 |
$instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? 1 : 0;
|
272 |
-
$instance['message'] =
|
273 |
|
274 |
mycred_flush_widget_cache( 'mycred_widget_balance' );
|
|
|
275 |
return $instance;
|
276 |
|
277 |
}
|
@@ -282,7 +267,7 @@ endif;
|
|
282 |
/**
|
283 |
* Widget: Leaderboard
|
284 |
* @since 0.1
|
285 |
-
* @version 1.3.
|
286 |
*/
|
287 |
if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
|
288 |
class myCRED_Widget_Leaderboard extends WP_Widget {
|
@@ -292,14 +277,12 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
|
|
292 |
*/
|
293 |
public function __construct() {
|
294 |
|
295 |
-
$name = mycred_label( true );
|
296 |
-
|
297 |
parent::__construct(
|
298 |
'mycred_widget_list',
|
299 |
-
sprintf( __( '(%s) Leaderboard', 'mycred' ),
|
300 |
array(
|
301 |
'classname' => 'widget-mycred-list',
|
302 |
-
'description' =>
|
303 |
)
|
304 |
);
|
305 |
|
@@ -340,11 +323,8 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
|
|
340 |
echo $before_widget;
|
341 |
|
342 |
// Title
|
343 |
-
if ( ! empty( $instance['title'] ) )
|
344 |
-
echo $before_title;
|
345 |
-
echo $mycred->template_tags_general( $instance['title'] );
|
346 |
-
echo $after_title;
|
347 |
-
}
|
348 |
|
349 |
echo mycred_render_shortcode_leaderboard( $args );
|
350 |
|
@@ -359,25 +339,25 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
|
|
359 |
public function form( $instance ) {
|
360 |
|
361 |
// Defaults
|
362 |
-
$title = isset( $instance['title'] )
|
363 |
-
$type = isset( $instance['type'] )
|
364 |
-
$based_on = isset( $instance['based_on'] )
|
365 |
|
366 |
-
$number = isset( $instance['number'] )
|
367 |
$show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
|
368 |
-
$text = isset( $instance['text'] )
|
369 |
-
$offset = isset( $instance['offset'] )
|
370 |
-
$order = isset( $instance['order'] )
|
371 |
-
$current = isset( $instance['current'] )
|
372 |
-
$timeframe = isset( $instance['timeframe'] )
|
373 |
|
374 |
-
$mycred
|
375 |
-
$mycred_types
|
376 |
|
377 |
?>
|
378 |
<p class="myCRED-widget-field">
|
379 |
<label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php _e( 'Title', 'mycred' ); ?>:</label>
|
380 |
-
<input
|
381 |
</p>
|
382 |
|
383 |
<?php if ( count( $mycred_types ) > 1 ) : ?>
|
@@ -391,25 +371,25 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
|
|
391 |
|
392 |
<p class="myCRED-widget-field">
|
393 |
<label for="<?php echo esc_attr( $this->get_field_id( 'based_on' ) ); ?>"><?php _e( 'Based On', 'mycred' ); ?>:</label>
|
394 |
-
<input
|
395 |
-
<small><?php _e( 'Use "balance" to base the leaderboard on your users current balances or use a specific reference.', 'mycred' ); ?> <a href="http://codex.mycred.me/
|
396 |
</p>
|
397 |
|
398 |
<p class="myCRED-widget-field">
|
399 |
-
<input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_visitors' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>" value="1"<?php checked( $show_visitors, 1 ); ?> class="checkbox" />
|
400 |
-
|
401 |
<p class="myCRED-widget-field">
|
402 |
<label for="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>"><?php _e( 'Number of users', 'mycred' ); ?>:</label>
|
403 |
-
<input id="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'number' ) ); ?>" type="text" value="<?php echo $number; ?>" size="3" class="
|
404 |
</p>
|
405 |
<p class="myCRED-widget-field">
|
406 |
<label for="<?php echo esc_attr( $this->get_field_id( 'text' ) ); ?>"><?php _e( 'Row layout', 'mycred' ); ?>:</label>
|
407 |
-
<textarea
|
408 |
<small><?php echo $mycred->available_template_tags( array( 'general', 'balance' ) ); ?></small>
|
409 |
</p>
|
410 |
<p class="myCRED-widget-field">
|
411 |
<label for="<?php echo esc_attr( $this->get_field_id( 'offset' ) ); ?>"><?php _e( 'Offset', 'mycred' ); ?>:</label>
|
412 |
-
<input id="<?php echo esc_attr( $this->get_field_id( 'offset' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'offset' ) ); ?>" type="text" value="<?php echo $offset; ?>" size="3" class="
|
413 |
<small><?php _e( 'Optional offset of order. Use zero to return the first in the list.', 'mycred' ); ?></small>
|
414 |
</p>
|
415 |
<p class="myCRED-widget-field">
|
@@ -418,7 +398,7 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
|
|
418 |
<?php
|
419 |
|
420 |
$options = array(
|
421 |
-
'ASC'
|
422 |
'DESC' => __( 'Descending', 'mycred' )
|
423 |
);
|
424 |
|
@@ -432,13 +412,12 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
|
|
432 |
</select>
|
433 |
</p>
|
434 |
<p class="myCRED-widget-field">
|
435 |
-
<input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'current' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'current' ) ); ?>" value="1"<?php checked( $current, 1 ); ?> class="checkbox" />
|
436 |
-
<label for="<?php echo esc_attr( $this->get_field_id( 'current' ) ); ?>"><?php _e( 'Append current users position', 'mycred' ); ?></label><br />
|
437 |
<small><?php _e( 'If the current user is not in this leaderboard, you can select to append them at the end with their current position.', 'mycred' ); ?></small>
|
438 |
</p>
|
439 |
<p class="myCRED-widget-field">
|
440 |
<label for="<?php echo esc_attr( $this->get_field_id( 'timeframe' ) ); ?>"><?php _e( 'Timeframe', 'mycred' ); ?>:</label>
|
441 |
-
<input id="<?php echo esc_attr( $this->get_field_id( 'timeframe' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'timeframe' ) ); ?>" type="text" value="<?php echo $timeframe; ?>" size="3" class="
|
442 |
<small><?php _e( 'Option to limit the leaderboard based on a specific timeframe. Leave empty if not used.', 'mycred' ); ?></small>
|
443 |
</p>
|
444 |
<?php
|
@@ -450,17 +429,17 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
|
|
450 |
*/
|
451 |
public function update( $new_instance, $old_instance ) {
|
452 |
|
453 |
-
$instance
|
454 |
|
455 |
$instance['number'] = absint( $new_instance['number'] );
|
456 |
$instance['title'] = wp_kses_post( $new_instance['title'] );
|
457 |
$instance['type'] = sanitize_key( $new_instance['type'] );
|
458 |
$instance['based_on'] = sanitize_key( $new_instance['based_on'] );
|
459 |
-
$instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ?
|
460 |
$instance['text'] = wp_kses_post( $new_instance['text'] );
|
461 |
$instance['offset'] = sanitize_text_field( $new_instance['offset'] );
|
462 |
$instance['order'] = sanitize_text_field( $new_instance['order'] );
|
463 |
-
$instance['current'] = ( isset( $new_instance['current'] ) ) ?
|
464 |
$instance['timeframe'] = sanitize_text_field( $new_instance['timeframe'] );
|
465 |
|
466 |
mycred_flush_widget_cache( 'mycred_widget_list' );
|
@@ -475,7 +454,7 @@ endif;
|
|
475 |
/**
|
476 |
* Widget: myCRED Wallet
|
477 |
* @since 1.4
|
478 |
-
* @version 1.
|
479 |
*/
|
480 |
if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
|
481 |
class myCRED_Widget_Wallet extends WP_Widget {
|
@@ -485,14 +464,12 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
|
|
485 |
*/
|
486 |
public function __construct() {
|
487 |
|
488 |
-
$name = mycred_label( true );
|
489 |
-
|
490 |
parent::__construct(
|
491 |
'mycred_widget_wallet',
|
492 |
-
sprintf( __( '(%s) Wallet', 'mycred' ),
|
493 |
array(
|
494 |
'classname' => 'widget-my-wallet',
|
495 |
-
'description' => __( 'Shows
|
496 |
)
|
497 |
);
|
498 |
|
@@ -520,8 +497,6 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
|
|
520 |
// Excluded users have no balance(s)
|
521 |
if ( empty( $account->balance ) || empty( $instance['types'] ) ) return;
|
522 |
|
523 |
-
$current_user = wp_get_current_user();
|
524 |
-
|
525 |
// Start
|
526 |
echo $before_widget;
|
527 |
|
@@ -529,6 +504,8 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
|
|
529 |
if ( ! empty( $instance['title'] ) )
|
530 |
echo $before_title . $instance['title'] . $after_title;
|
531 |
|
|
|
|
|
532 |
// Loop through balances
|
533 |
foreach ( $account->balance as $point_type_id => $balance ) {
|
534 |
|
@@ -541,7 +518,7 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
|
|
541 |
$layout = $point_type->template_tags_user( $layout, false, $current_user );
|
542 |
$layout = str_replace( '%label%', $account->point_types[ $point_type_id ], $layout );
|
543 |
|
544 |
-
echo '<div class="myCRED-balance ' . esc_attr( $point_type_id ) . '">' . $layout . '</div>';
|
545 |
|
546 |
}
|
547 |
|
@@ -562,7 +539,7 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
|
|
562 |
$message = $instance['message'];
|
563 |
$message = $mycred->template_tags_general( $message );
|
564 |
|
565 |
-
echo '<div class="myCRED-wallet-message"><p>' .
|
566 |
|
567 |
echo $after_widget;
|
568 |
|
@@ -575,14 +552,14 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
|
|
575 |
*/
|
576 |
public function form( $instance ) {
|
577 |
|
578 |
-
$mycred
|
579 |
|
580 |
// Defaults
|
581 |
-
$title = isset( $instance['title'] )
|
582 |
-
$types = isset( $instance['types'] )
|
583 |
-
$row_template = isset( $instance['row'] )
|
584 |
$show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
|
585 |
-
$message = isset( $instance['message'] )
|
586 |
|
587 |
?>
|
588 |
<!-- Widget Options -->
|
@@ -600,18 +577,31 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
|
|
600 |
<!-- Row layout -->
|
601 |
<p class="myCRED-widget-field">
|
602 |
<label for="<?php echo esc_attr( $this->get_field_id( 'row' ) ); ?>"><?php _e( 'Row Layout', 'mycred' ); ?>:</label>
|
603 |
-
<
|
604 |
<small><?php echo $mycred->available_template_tags( array( 'general', 'amount' ) ); ?></small>
|
605 |
</p>
|
606 |
|
607 |
<!-- Show to Visitors -->
|
608 |
<p class="myCRED-widget-field">
|
609 |
-
<input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_visitors' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>" value="1"<?php checked( $show_visitors, 1 ); ?> class="checkbox" />
|
610 |
-
<label for="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>"><?php _e( 'Show message when not logged in', 'mycred' ); ?></label><br />
|
611 |
-
<label for="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>"><?php _e( 'Message', 'mycred' ); ?>:</label><br />
|
612 |
-
<textarea class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'message' ) ); ?>"><?php echo $message; ?></textarea><br />
|
613 |
-
<small><?php echo $mycred->available_template_tags( array( 'general', 'amount' ) ); ?></small>
|
614 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
<?php
|
616 |
|
617 |
}
|
@@ -621,16 +611,13 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
|
|
621 |
*/
|
622 |
public function update( $new_instance, $old_instance ) {
|
623 |
|
624 |
-
|
625 |
|
626 |
-
$instance
|
627 |
-
$allowed = $mycred->allowed_html_tags();
|
628 |
-
|
629 |
-
$instance['title'] = wp_kses( $new_instance['title'], $allowed );
|
630 |
$instance['types'] = (array) $new_instance['types'];
|
631 |
-
$instance['row'] =
|
632 |
$instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? 1 : 0;
|
633 |
-
$instance['message'] =
|
634 |
|
635 |
mycred_flush_widget_cache( 'mycred_widget_wallet' );
|
636 |
|
4 |
/**
|
5 |
* Widget: myCRED Balance
|
6 |
* @since 0.1
|
7 |
+
* @version 1.4.3
|
8 |
*/
|
9 |
if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
|
10 |
class myCRED_Widget_Balance extends WP_Widget {
|
14 |
*/
|
15 |
public function __construct() {
|
16 |
|
|
|
|
|
17 |
parent::__construct(
|
18 |
'mycred_widget_balance',
|
19 |
+
sprintf( __( '(%s) My Balance', 'mycred' ), mycred_label( true ) ),
|
20 |
array(
|
21 |
'classname' => 'widget-my-cred',
|
22 |
+
'description' => __( 'Show the current users balance and history.', 'mycred' )
|
23 |
)
|
24 |
);
|
25 |
|
60 |
$layout = $mycred->template_tags_amount( $instance['cred_format'], $balance->current );
|
61 |
$layout = $mycred->template_tags_user( $layout, false, wp_get_current_user() );
|
62 |
|
63 |
+
echo '<div class="myCRED-balance ' . esc_attr( $instance['type'] ) . '">' . do_shortcode( $layout ) . '</div>';
|
64 |
|
65 |
// If we want to include history
|
66 |
if ( $instance['show_history'] ) {
|
78 |
if ( $log->have_entries() ) {
|
79 |
|
80 |
// Title
|
81 |
+
if ( ! empty( $instance['history_title'] ) )
|
82 |
+
echo $before_title . $mycred->template_tags_general( $instance['history_title'] ) . $after_title;
|
|
|
|
|
83 |
|
84 |
// Organized List
|
85 |
echo '<ol class="myCRED-history">';
|
86 |
+
$alt = 0;
|
87 |
$date_format = get_option( 'date_format' );
|
88 |
foreach ( $log->results as $entry ) {
|
89 |
|
90 |
// Row Layout
|
91 |
$layout = $instance['history_format'];
|
92 |
+
|
93 |
$layout = str_replace( '%date%', '<span class="date">' . date( $date_format, $entry->time ) . '</span>', $layout );
|
94 |
$layout = str_replace( '%entry%', $mycred->parse_template_tags( $entry->entry, $entry ), $layout );
|
95 |
|
|
|
96 |
$layout = $mycred->template_tags_amount( $layout, $entry->creds );
|
97 |
|
98 |
// Alternating rows
|
151 |
public function form( $instance ) {
|
152 |
|
153 |
// Defaults
|
154 |
+
$title = isset( $instance['title'] ) ? $instance['title'] : 'My Balance';
|
155 |
+
$type = isset( $instance['type'] ) ? $instance['type'] : MYCRED_DEFAULT_TYPE_KEY;
|
156 |
+
$cred_format = isset( $instance['cred_format'] ) ? $instance['cred_format'] : '%cred_f%';
|
157 |
+
$show_history = isset( $instance['show_history'] ) ? $instance['show_history'] : 0;
|
158 |
+
$history_title = isset( $instance['history_title'] ) ? $instance['history_title'] : '%plural% History';
|
159 |
+
$history_entry = isset( $instance['history_format'] ) ? $instance['history_format'] : '%entry% <span class="creds">%cred_f%</span>';
|
160 |
+
$history_length = isset( $instance['number'] ) ? $instance['number'] : 5;
|
161 |
+
$show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
|
162 |
+
$message = isset( $instance['message'] ) ? $instance['message'] : '<a href="%login_url_here%">Login</a> to view your balance.';
|
163 |
+
|
164 |
+
$mycred = mycred( $type );
|
165 |
+
$mycred_types = mycred_get_types();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
|
167 |
?>
|
168 |
<!-- Widget Admin Styling -->
|
169 |
<style type="text/css">
|
170 |
+
div.mycred-hidden { display: none; }
|
171 |
+
div.mycred-hidden.ex-field { display: block; }
|
|
|
172 |
</style>
|
173 |
|
174 |
<!-- Widget Options -->
|
189 |
|
190 |
<!-- Balance layout -->
|
191 |
<p class="myCRED-widget-field">
|
192 |
+
<label for="<?php echo esc_attr( $this->get_field_id( 'cred_format' ) ); ?>"><?php _e( 'Balance Layout', 'mycred' ); ?>:</label>
|
193 |
+
<textarea name="<?php echo esc_attr( $this->get_field_name( 'cred_format' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'cred_format' ) ); ?>" rows="3" cols="20" class="widefat"><?php echo esc_attr( $cred_format ); ?></textarea>
|
194 |
<small><?php echo $mycred->available_template_tags( array( 'general', 'amount', 'user' ) ); ?></small>
|
195 |
</p>
|
196 |
|
197 |
<!-- History -->
|
198 |
<p class="myCRED-widget-field">
|
199 |
+
<label for="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>"><input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_history' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>" value="1"<?php checked( $show_history, 1 ); ?> class="checkbox" /> <?php _e( 'Include history', 'mycred' ); ?></label>
|
200 |
+
</p>
|
201 |
+
<div id="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>-details" class="mycred-hidden<?php if ( $show_history == 1 ) echo ' ex-field'; ?>">
|
202 |
+
<p class="myCRED-widget-field">
|
203 |
<label for="<?php echo esc_attr( $this->get_field_id( 'history_title' ) ); ?>"><?php _e( 'History Title', 'mycred' ); ?>:</label>
|
204 |
<input id="<?php echo esc_attr( $this->get_field_id( 'history_title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'history_title' ) ); ?>" type="text" value="<?php echo esc_attr( $history_title ); ?>" class="widefat" />
|
205 |
+
</p>
|
206 |
+
<p class="myCRED-widget-field">
|
207 |
<label for="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>"><?php _e( 'Number of entires', 'mycred' ); ?>:</label>
|
208 |
+
<input id="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'number' ) ); ?>" type="text" value="<?php echo absint( $history_length ); ?>" size="3" class="widefat" /><br />
|
209 |
+
</p>
|
210 |
+
<p class="myCRED-widget-field">
|
211 |
<label for="<?php echo esc_attr( $this->get_field_id( 'history_format' ) ); ?>"><?php _e( 'Row layout', 'mycred' ); ?>:</label>
|
212 |
+
<textarea name="<?php echo esc_attr( $this->get_field_name( 'history_format' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'history_format' ) ); ?>" rows="3" cols="20" class="widefat"><?php echo esc_attr( $history_entry ); ?></textarea>
|
213 |
<small><?php echo $mycred->available_template_tags( array( 'general', 'widget' ) ); ?></small>
|
214 |
+
</p>
|
215 |
+
</div>
|
216 |
<!-- Show to Visitors -->
|
217 |
<p class="myCRED-widget-field">
|
218 |
+
<label for="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>"><input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_visitors' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>" value="1"<?php checked( $show_visitors, 1 ); ?> class="checkbox" /> <?php _e( 'Show message when not logged in', 'mycred' ); ?></label>
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
</p>
|
220 |
+
<div id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>-details" class="mycred-hidden<?php if ( $show_visitors == 1 ) echo ' ex-field'; ?>">
|
221 |
+
<p class="myCRED-widget-field">
|
222 |
+
<label for="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>"><?php _e( 'Message', 'mycred' ); ?>:</label>
|
223 |
+
<textarea name="<?php echo esc_attr( $this->get_field_name( 'message' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>" rows="3" cols="20" class="widefat"><?php echo esc_attr( $message ); ?></textarea>
|
224 |
+
<small><?php echo $mycred->available_template_tags( array( 'general', 'amount' ) ); ?></small>
|
225 |
+
</p>
|
226 |
+
</div>
|
227 |
<!-- Widget Admin Scripting -->
|
228 |
<script type="text/javascript">//<![CDATA[
|
229 |
jQuery(function($) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
|
231 |
+
$( '#<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>, #<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>' ).change(function(){
|
232 |
+
$( '#' + $(this).attr( 'id' ) + '-details' ).toggleClass( 'ex-field' );
|
233 |
});
|
234 |
+
|
235 |
});//]]>
|
236 |
</script>
|
237 |
<?php
|
243 |
*/
|
244 |
public function update( $new_instance, $old_instance ) {
|
245 |
|
246 |
+
$instance = $old_instance;
|
|
|
|
|
|
|
247 |
|
248 |
+
$instance['title'] = wp_kses_post( $new_instance['title'] );
|
249 |
$instance['type'] = sanitize_text_field( $new_instance['type'] );
|
250 |
+
$instance['cred_format'] = wp_kses_post( $new_instance['cred_format'] );
|
251 |
$instance['show_history'] = ( isset( $new_instance['show_history'] ) ) ? 1 : 0;
|
252 |
+
$instance['history_title'] = wp_kses_post( $new_instance['history_title'] );
|
253 |
+
$instance['history_format'] = wp_kses_post( $new_instance['history_format'] );
|
254 |
$instance['number'] = absint( $new_instance['number'] );
|
255 |
$instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? 1 : 0;
|
256 |
+
$instance['message'] = wp_kses_post( $new_instance['message'] );
|
257 |
|
258 |
mycred_flush_widget_cache( 'mycred_widget_balance' );
|
259 |
+
|
260 |
return $instance;
|
261 |
|
262 |
}
|
267 |
/**
|
268 |
* Widget: Leaderboard
|
269 |
* @since 0.1
|
270 |
+
* @version 1.3.2
|
271 |
*/
|
272 |
if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
|
273 |
class myCRED_Widget_Leaderboard extends WP_Widget {
|
277 |
*/
|
278 |
public function __construct() {
|
279 |
|
|
|
|
|
280 |
parent::__construct(
|
281 |
'mycred_widget_list',
|
282 |
+
sprintf( __( '(%s) Leaderboard', 'mycred' ), mycred_label( true ) ),
|
283 |
array(
|
284 |
'classname' => 'widget-mycred-list',
|
285 |
+
'description' => __( 'Leaderboard based on instances or balances.', 'mycred' )
|
286 |
)
|
287 |
);
|
288 |
|
323 |
echo $before_widget;
|
324 |
|
325 |
// Title
|
326 |
+
if ( ! empty( $instance['title'] ) )
|
327 |
+
echo $before_title . $mycred->template_tags_general( $instance['title'] ) . $after_title;
|
|
|
|
|
|
|
328 |
|
329 |
echo mycred_render_shortcode_leaderboard( $args );
|
330 |
|
339 |
public function form( $instance ) {
|
340 |
|
341 |
// Defaults
|
342 |
+
$title = isset( $instance['title'] ) ? $instance['title'] : 'Leaderboard';
|
343 |
+
$type = isset( $instance['type'] ) ? $instance['type'] : MYCRED_DEFAULT_TYPE_KEY;
|
344 |
+
$based_on = isset( $instance['based_on'] ) ? $instance['based_on'] : 'balance';
|
345 |
|
346 |
+
$number = isset( $instance['number'] ) ? $instance['number'] : 5;
|
347 |
$show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
|
348 |
+
$text = isset( $instance['text'] ) ? $instance['text'] : '#%position% %user_profile_link% %cred_f%';
|
349 |
+
$offset = isset( $instance['offset'] ) ? $instance['offset'] : 0;
|
350 |
+
$order = isset( $instance['order'] ) ? $instance['order'] : 'DESC';
|
351 |
+
$current = isset( $instance['current'] ) ? $instance['current'] : 0;
|
352 |
+
$timeframe = isset( $instance['timeframe'] ) ? $instance['timeframe'] : '';
|
353 |
|
354 |
+
$mycred = mycred( $type );
|
355 |
+
$mycred_types = mycred_get_types();
|
356 |
|
357 |
?>
|
358 |
<p class="myCRED-widget-field">
|
359 |
<label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php _e( 'Title', 'mycred' ); ?>:</label>
|
360 |
+
<input id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" class="widefat" />
|
361 |
</p>
|
362 |
|
363 |
<?php if ( count( $mycred_types ) > 1 ) : ?>
|
371 |
|
372 |
<p class="myCRED-widget-field">
|
373 |
<label for="<?php echo esc_attr( $this->get_field_id( 'based_on' ) ); ?>"><?php _e( 'Based On', 'mycred' ); ?>:</label>
|
374 |
+
<input id="<?php echo esc_attr( $this->get_field_id( 'based_on' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'based_on' ) ); ?>" type="text" value="<?php echo esc_attr( $based_on ); ?>" class="widefat" />
|
375 |
+
<small><?php _e( 'Use "balance" to base the leaderboard on your users current balances or use a specific reference.', 'mycred' ); ?> <a href="http://codex.mycred.me/chapter-vi/log-references/" target="_blank"><?php _e( 'Reference Guide', 'mycred' ); ?></a></small>
|
376 |
</p>
|
377 |
|
378 |
<p class="myCRED-widget-field">
|
379 |
+
<label for="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>"><input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_visitors' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>" value="1"<?php checked( $show_visitors, 1 ); ?> class="checkbox" /> <?php _e( 'Visible to non-members', 'mycred' ); ?></label>
|
380 |
+
</p>
|
381 |
<p class="myCRED-widget-field">
|
382 |
<label for="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>"><?php _e( 'Number of users', 'mycred' ); ?>:</label>
|
383 |
+
<input id="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'number' ) ); ?>" type="text" value="<?php echo absint( $number ); ?>" size="3" class="widefat" />
|
384 |
</p>
|
385 |
<p class="myCRED-widget-field">
|
386 |
<label for="<?php echo esc_attr( $this->get_field_id( 'text' ) ); ?>"><?php _e( 'Row layout', 'mycred' ); ?>:</label>
|
387 |
+
<textarea name="<?php echo esc_attr( $this->get_field_name( 'text' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'text' ) ); ?>" rows="3" cols="20" class="widefat"><?php echo esc_attr( $text ); ?></textarea>
|
388 |
<small><?php echo $mycred->available_template_tags( array( 'general', 'balance' ) ); ?></small>
|
389 |
</p>
|
390 |
<p class="myCRED-widget-field">
|
391 |
<label for="<?php echo esc_attr( $this->get_field_id( 'offset' ) ); ?>"><?php _e( 'Offset', 'mycred' ); ?>:</label>
|
392 |
+
<input id="<?php echo esc_attr( $this->get_field_id( 'offset' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'offset' ) ); ?>" type="text" value="<?php echo absint( $offset ); ?>" size="3" class="widefat" />
|
393 |
<small><?php _e( 'Optional offset of order. Use zero to return the first in the list.', 'mycred' ); ?></small>
|
394 |
</p>
|
395 |
<p class="myCRED-widget-field">
|
398 |
<?php
|
399 |
|
400 |
$options = array(
|
401 |
+
'ASC' => __( 'Ascending', 'mycred' ),
|
402 |
'DESC' => __( 'Descending', 'mycred' )
|
403 |
);
|
404 |
|
412 |
</select>
|
413 |
</p>
|
414 |
<p class="myCRED-widget-field">
|
415 |
+
<label for="<?php echo esc_attr( $this->get_field_id( 'current' ) ); ?>"><input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'current' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'current' ) ); ?>" value="1"<?php checked( $current, 1 ); ?> class="checkbox" /> <?php _e( 'Append current users position', 'mycred' ); ?></label><br />
|
|
|
416 |
<small><?php _e( 'If the current user is not in this leaderboard, you can select to append them at the end with their current position.', 'mycred' ); ?></small>
|
417 |
</p>
|
418 |
<p class="myCRED-widget-field">
|
419 |
<label for="<?php echo esc_attr( $this->get_field_id( 'timeframe' ) ); ?>"><?php _e( 'Timeframe', 'mycred' ); ?>:</label>
|
420 |
+
<input id="<?php echo esc_attr( $this->get_field_id( 'timeframe' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'timeframe' ) ); ?>" type="text" value="<?php echo $timeframe; ?>" size="3" class="widefat" />
|
421 |
<small><?php _e( 'Option to limit the leaderboard based on a specific timeframe. Leave empty if not used.', 'mycred' ); ?></small>
|
422 |
</p>
|
423 |
<?php
|
429 |
*/
|
430 |
public function update( $new_instance, $old_instance ) {
|
431 |
|
432 |
+
$instance = $old_instance;
|
433 |
|
434 |
$instance['number'] = absint( $new_instance['number'] );
|
435 |
$instance['title'] = wp_kses_post( $new_instance['title'] );
|
436 |
$instance['type'] = sanitize_key( $new_instance['type'] );
|
437 |
$instance['based_on'] = sanitize_key( $new_instance['based_on'] );
|
438 |
+
$instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? 1 : 0;
|
439 |
$instance['text'] = wp_kses_post( $new_instance['text'] );
|
440 |
$instance['offset'] = sanitize_text_field( $new_instance['offset'] );
|
441 |
$instance['order'] = sanitize_text_field( $new_instance['order'] );
|
442 |
+
$instance['current'] = ( isset( $new_instance['current'] ) ) ? 1 : 0;
|
443 |
$instance['timeframe'] = sanitize_text_field( $new_instance['timeframe'] );
|
444 |
|
445 |
mycred_flush_widget_cache( 'mycred_widget_list' );
|
454 |
/**
|
455 |
* Widget: myCRED Wallet
|
456 |
* @since 1.4
|
457 |
+
* @version 1.2
|
458 |
*/
|
459 |
if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
|
460 |
class myCRED_Widget_Wallet extends WP_Widget {
|
464 |
*/
|
465 |
public function __construct() {
|
466 |
|
|
|
|
|
467 |
parent::__construct(
|
468 |
'mycred_widget_wallet',
|
469 |
+
sprintf( __( '(%s) Wallet', 'mycred' ), mycred_label( true ) ),
|
470 |
array(
|
471 |
'classname' => 'widget-my-wallet',
|
472 |
+
'description' => __( 'Shows multiple balances.', 'mycred' )
|
473 |
)
|
474 |
);
|
475 |
|
497 |
// Excluded users have no balance(s)
|
498 |
if ( empty( $account->balance ) || empty( $instance['types'] ) ) return;
|
499 |
|
|
|
|
|
500 |
// Start
|
501 |
echo $before_widget;
|
502 |
|
504 |
if ( ! empty( $instance['title'] ) )
|
505 |
echo $before_title . $instance['title'] . $after_title;
|
506 |
|
507 |
+
$current_user = wp_get_current_user();
|
508 |
+
|
509 |
// Loop through balances
|
510 |
foreach ( $account->balance as $point_type_id => $balance ) {
|
511 |
|
518 |
$layout = $point_type->template_tags_user( $layout, false, $current_user );
|
519 |
$layout = str_replace( '%label%', $account->point_types[ $point_type_id ], $layout );
|
520 |
|
521 |
+
echo '<div class="myCRED-balance mycred-balance-' . esc_attr( $point_type_id ) . '">' . do_shortcode( $layout ) . '</div>';
|
522 |
|
523 |
}
|
524 |
|
539 |
$message = $instance['message'];
|
540 |
$message = $mycred->template_tags_general( $message );
|
541 |
|
542 |
+
echo '<div class="myCRED-wallet-message"><p>' . wptexturize( $message ) . '</p></div>';
|
543 |
|
544 |
echo $after_widget;
|
545 |
|
552 |
*/
|
553 |
public function form( $instance ) {
|
554 |
|
555 |
+
$mycred = mycred();
|
556 |
|
557 |
// Defaults
|
558 |
+
$title = isset( $instance['title'] ) ? $instance['title'] : 'My Wallet';
|
559 |
+
$types = isset( $instance['types'] ) ? $instance['types'] : array();
|
560 |
+
$row_template = isset( $instance['row'] ) ? $instance['row'] : '%label%: %cred_f%';
|
561 |
$show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
|
562 |
+
$message = isset( $instance['message'] ) ? $instance['message'] : '<a href="%login_url_here%">Login</a> to view your balance.';
|
563 |
|
564 |
?>
|
565 |
<!-- Widget Options -->
|
577 |
<!-- Row layout -->
|
578 |
<p class="myCRED-widget-field">
|
579 |
<label for="<?php echo esc_attr( $this->get_field_id( 'row' ) ); ?>"><?php _e( 'Row Layout', 'mycred' ); ?>:</label>
|
580 |
+
<textarea name="<?php echo esc_attr( $this->get_field_name( 'row' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'row' ) ); ?>" rows="3" cols="20" class="widefat"><?php echo esc_attr( $row_template ); ?></textarea>
|
581 |
<small><?php echo $mycred->available_template_tags( array( 'general', 'amount' ) ); ?></small>
|
582 |
</p>
|
583 |
|
584 |
<!-- Show to Visitors -->
|
585 |
<p class="myCRED-widget-field">
|
586 |
+
<label for="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>"><input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_visitors' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>" value="1"<?php checked( $show_visitors, 1 ); ?> class="checkbox" /> <?php _e( 'Show message when not logged in', 'mycred' ); ?></label>
|
|
|
|
|
|
|
|
|
587 |
</p>
|
588 |
+
<div id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>-details" class="mycred-hidden<?php if ( $show_visitors == 1 ) echo ' ex-field'; ?>">
|
589 |
+
<p class="myCRED-widget-field">
|
590 |
+
<label for="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>"><?php _e( 'Message', 'mycred' ); ?>:</label>
|
591 |
+
<textarea name="<?php echo esc_attr( $this->get_field_name( 'message' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>" rows="3" cols="20" class="widefat"><?php echo esc_attr( $message ); ?></textarea>
|
592 |
+
<small><?php echo $mycred->available_template_tags( array( 'general', 'amount' ) ); ?></small>
|
593 |
+
</p>
|
594 |
+
</div>
|
595 |
+
<!-- Widget Admin Scripting -->
|
596 |
+
<script type="text/javascript">//<![CDATA[
|
597 |
+
jQuery(function($) {
|
598 |
+
|
599 |
+
$( '#<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>' ).change(function(){
|
600 |
+
$( '#' + $(this).attr( 'id' ) + '-details' ).toggleClass( 'ex-field' );
|
601 |
+
});
|
602 |
+
|
603 |
+
});//]]>
|
604 |
+
</script>
|
605 |
<?php
|
606 |
|
607 |
}
|
611 |
*/
|
612 |
public function update( $new_instance, $old_instance ) {
|
613 |
|
614 |
+
$instance = $old_instance;
|
615 |
|
616 |
+
$instance['title'] = wp_kses_post( $new_instance['title'] );
|
|
|
|
|
|
|
617 |
$instance['types'] = (array) $new_instance['types'];
|
618 |
+
$instance['row'] = wp_kses_post( $new_instance['row'] );
|
619 |
$instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? 1 : 0;
|
620 |
+
$instance['message'] = wp_kses_post( $new_instance['message'] );
|
621 |
|
622 |
mycred_flush_widget_cache( 'mycred_widget_wallet' );
|
623 |
|
includes/shortcodes/mycred_history.php
CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
|
|
6 |
* Returns the points history.
|
7 |
* @see http://codex.mycred.me/shortcodes/mycred_history/
|
8 |
* @since 1.0.9
|
9 |
-
* @version 1.3
|
10 |
*/
|
11 |
if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
|
12 |
function mycred_render_shortcode_history( $atts, $content = '' ) {
|
@@ -52,13 +52,19 @@ if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
|
|
52 |
if ( $order != '' )
|
53 |
$args['order'] = $order;
|
54 |
|
55 |
-
|
56 |
-
$args['paged'] = absint( $_GET['paged'] );
|
57 |
|
58 |
-
|
59 |
-
|
|
|
|
|
|
|
|
|
60 |
|
61 |
-
|
|
|
|
|
|
|
62 |
|
63 |
ob_start();
|
64 |
|
6 |
* Returns the points history.
|
7 |
* @see http://codex.mycred.me/shortcodes/mycred_history/
|
8 |
* @since 1.0.9
|
9 |
+
* @version 1.3.2
|
10 |
*/
|
11 |
if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
|
12 |
function mycred_render_shortcode_history( $atts, $content = '' ) {
|
52 |
if ( $order != '' )
|
53 |
$args['order'] = $order;
|
54 |
|
55 |
+
$log = new myCRED_Query_Log( apply_filters( 'mycred_front_history_args', $args, $atts ) );
|
|
|
56 |
|
57 |
+
$columns = array(
|
58 |
+
'username' => __( 'User', 'mycred' ),
|
59 |
+
'time' => __( 'Date', 'mycred' ),
|
60 |
+
'creds' => $log->core->plural(),
|
61 |
+
'entry' => __( 'Entry', 'mycred' )
|
62 |
+
);
|
63 |
|
64 |
+
if ( $show_user == 0 )
|
65 |
+
unset( $columns['username'] );
|
66 |
+
|
67 |
+
$log->headers = $columns;
|
68 |
|
69 |
ob_start();
|
70 |
|
includes/shortcodes/mycred_leaderboard.php
CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
|
|
5 |
* myCRED Shortcode: mycred_leaderboard
|
6 |
* @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
|
7 |
* @since 0.1
|
8 |
-
* @version 1.5
|
9 |
*/
|
10 |
if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
|
11 |
function mycred_render_shortcode_leaderboard( $atts, $content = '' ) {
|
@@ -179,11 +179,12 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
|
|
179 |
if ( $position % 2 != 0 )
|
180 |
$class[] = 'alt';
|
181 |
|
|
|
182 |
if ( ! empty( $content ) )
|
183 |
-
$
|
184 |
|
185 |
// Template Tags
|
186 |
-
$layout = str_replace( array( '%ranking%', '%position%' ), $position+1, $
|
187 |
|
188 |
$layout = $mycred->template_tags_amount( $layout, $user['cred'] );
|
189 |
$layout = $mycred->template_tags_user( $layout, $user['ID'] );
|
@@ -208,11 +209,16 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
|
|
208 |
$current_position = mycred_render_shortcode_leaderbaord_position( array(
|
209 |
'based_on' => $based_on,
|
210 |
'user_id' => 'current',
|
211 |
-
'timeframe' => $timeframe
|
|
|
212 |
), $content );
|
213 |
|
|
|
|
|
|
|
|
|
214 |
// Template Tags
|
215 |
-
$layout = str_replace( array( '%ranking%', '%position%' ), $current_position, $
|
216 |
|
217 |
$layout = $mycred->template_tags_amount( $layout, $mycred->get_users_balance( $current_user->ID, $type ) );
|
218 |
$layout = $mycred->template_tags_user( $layout, false, $current_user );
|
5 |
* myCRED Shortcode: mycred_leaderboard
|
6 |
* @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
|
7 |
* @since 0.1
|
8 |
+
* @version 1.5.1
|
9 |
*/
|
10 |
if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
|
11 |
function mycred_render_shortcode_leaderboard( $atts, $content = '' ) {
|
179 |
if ( $position % 2 != 0 )
|
180 |
$class[] = 'alt';
|
181 |
|
182 |
+
$row_template = $template;
|
183 |
if ( ! empty( $content ) )
|
184 |
+
$row_template = $content;
|
185 |
|
186 |
// Template Tags
|
187 |
+
$layout = str_replace( array( '%ranking%', '%position%' ), $position+1, $row_template );
|
188 |
|
189 |
$layout = $mycred->template_tags_amount( $layout, $user['cred'] );
|
190 |
$layout = $mycred->template_tags_user( $layout, $user['ID'] );
|
209 |
$current_position = mycred_render_shortcode_leaderbaord_position( array(
|
210 |
'based_on' => $based_on,
|
211 |
'user_id' => 'current',
|
212 |
+
'timeframe' => $timeframe,
|
213 |
+
'ctype' => $type
|
214 |
), $content );
|
215 |
|
216 |
+
$row_template = $template;
|
217 |
+
if ( ! empty( $content ) )
|
218 |
+
$row_template = $content;
|
219 |
+
|
220 |
// Template Tags
|
221 |
+
$layout = str_replace( array( '%ranking%', '%position%' ), $current_position, $row_template );
|
222 |
|
223 |
$layout = $mycred->template_tags_amount( $layout, $mycred->get_users_balance( $current_user->ID, $type ) );
|
224 |
$layout = $mycred->template_tags_user( $layout, false, $current_user );
|
lang/mycred-en_US.mo
CHANGED
Binary file
|
lang/mycred-en_US.po
CHANGED
@@ -1,6961 +1,6287 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: myCRED\n"
|
4 |
-
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: mycreddemo <gabriel.s@merovingi.com>\n"
|
8 |
-
"Language-Team:
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"Content-
|
14 |
-
"
|
15 |
-
"X-
|
16 |
-
"X-
|
17 |
-
"X-Poedit-
|
18 |
-
"
|
19 |
-
"
|
20 |
-
"
|
21 |
-
"
|
22 |
-
"
|
23 |
-
"
|
24 |
-
"
|
25 |
-
"X-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
#:
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
#:
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
#:
|
74 |
-
msgid "
|
75 |
-
msgstr ""
|
76 |
-
|
77 |
-
#:
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
#:
|
83 |
-
#: php:
|
84 |
-
msgid "
|
85 |
-
msgstr ""
|
86 |
-
|
87 |
-
#:
|
88 |
-
#: php:
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
#: php:
|
94 |
-
#: addons/email-notices/myCRED-addon-email-notices.php:
|
95 |
-
#:
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
#:
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
msgstr ""
|
114 |
-
|
115 |
-
#:
|
116 |
-
msgid "
|
117 |
-
msgstr ""
|
118 |
-
|
119 |
-
#:
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
#:
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
#:
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
#:
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
#:
|
153 |
-
#:
|
154 |
-
#:
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
#:
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
#:
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
#:
|
176 |
-
#:
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
#:
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
#:
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
#:
|
209 |
-
msgid "
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#:
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
#:
|
219 |
-
#:
|
220 |
-
#:
|
221 |
-
#:
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
#:
|
230 |
-
#:
|
231 |
-
#:
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
#:
|
236 |
-
#:
|
237 |
-
#:
|
238 |
-
#:
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
#:
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
#:
|
251 |
-
msgid "
|
252 |
-
msgstr ""
|
253 |
-
|
254 |
-
#:
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
#:
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
#:
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
#:
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
#:
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
#:
|
302 |
-
msgid ""
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
#:
|
308 |
-
msgid "
|
309 |
-
msgstr ""
|
310 |
-
|
311 |
-
#:
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
#:
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
#:
|
332 |
-
#: php:
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
msgid "
|
339 |
-
msgstr ""
|
340 |
-
|
341 |
-
#:
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
#:
|
356 |
-
#: addons/
|
357 |
-
#: addons/
|
358 |
-
#: addons/
|
359 |
-
msgid "
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
#:
|
363 |
-
msgid "
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
#:
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
#:
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
"
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
"
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
#:
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
#:
|
446 |
-
msgid "
|
447 |
-
msgstr ""
|
448 |
-
|
449 |
-
#:
|
450 |
-
msgid "
|
451 |
-
msgstr ""
|
452 |
-
|
453 |
-
#:
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
#:
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
#:
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
msgstr ""
|
476 |
-
|
477 |
-
#:
|
478 |
-
msgid "
|
479 |
-
msgstr ""
|
480 |
-
|
481 |
-
#:
|
482 |
-
msgid "
|
483 |
-
msgstr ""
|
484 |
-
|
485 |
-
#:
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
#:
|
502 |
-
msgid "
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#:
|
506 |
-
msgid "
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
#:
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
#:
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
#: php:
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#:
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#:
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
#:
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
#:
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
#:
|
593 |
-
#:
|
594 |
-
msgid "
|
595 |
-
msgstr ""
|
596 |
-
|
597 |
-
#:
|
598 |
-
msgid "
|
599 |
-
msgstr ""
|
600 |
-
|
601 |
-
#:
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
#:
|
606 |
-
msgid ""
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
#:
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
"
|
650 |
-
msgstr ""
|
651 |
-
|
652 |
-
#:
|
653 |
-
msgid ""
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
msgstr ""
|
711 |
-
|
712 |
-
#:
|
713 |
-
msgid "
|
714 |
-
msgstr ""
|
715 |
-
|
716 |
-
#:
|
717 |
-
msgid "
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
msgid "
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
msgstr ""
|
775 |
-
|
776 |
-
#:
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
#:
|
786 |
-
msgid "
|
787 |
-
msgstr ""
|
788 |
-
|
789 |
-
#:
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
#:
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
msgid "
|
814 |
-
msgstr ""
|
815 |
-
|
816 |
-
#:
|
817 |
-
msgid "
|
818 |
-
msgstr ""
|
819 |
-
|
820 |
-
#:
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
msgstr ""
|
829 |
-
|
830 |
-
#:
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
msgid "
|
844 |
-
msgstr ""
|
845 |
-
|
846 |
-
#:
|
847 |
-
msgid "
|
848 |
-
msgstr ""
|
849 |
-
|
850 |
-
#:
|
851 |
-
|
852 |
-
msgid "
|
853 |
-
msgstr ""
|
854 |
-
|
855 |
-
#:
|
856 |
-
msgid "
|
857 |
-
msgstr ""
|
858 |
-
|
859 |
-
#:
|
860 |
-
|
861 |
-
|
862 |
-
"
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
#:
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
#:
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
#:
|
906 |
-
#:
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
#:
|
911 |
-
#: creds/
|
912 |
-
msgid "
|
913 |
-
msgstr ""
|
914 |
-
|
915 |
-
#:
|
916 |
-
msgid ""
|
917 |
-
"If enabled,
|
918 |
-
"
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
"
|
931 |
-
msgstr ""
|
932 |
-
|
933 |
-
#:
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
#:
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
msgid "
|
962 |
-
msgstr ""
|
963 |
-
|
964 |
-
#:
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
#:
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
#:
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
#:
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
msgstr ""
|
1007 |
-
|
1008 |
-
#:
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
msgid "
|
1021 |
-
msgstr ""
|
1022 |
-
|
1023 |
-
#:
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
#:
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
#:
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
#:
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
#:
|
1058 |
-
|
1059 |
-
|
1060 |
-
"
|
1061 |
-
msgstr ""
|
1062 |
-
|
1063 |
-
#:
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
#:
|
1075 |
-
msgid "
|
1076 |
-
msgstr ""
|
1077 |
-
|
1078 |
-
#:
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
#:
|
1095 |
-
#:
|
1096 |
-
#:
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
#:
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
#:
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
#:
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
#:
|
1113 |
-
#:
|
1114 |
-
#:
|
1115 |
-
#:
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
#:
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
#:
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
#:
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
#:
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
msgid "
|
1141 |
-
msgstr ""
|
1142 |
-
|
1143 |
-
#:
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
#:
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
#: modules/mycred-module-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
#:
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
#:
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
#: plugins/mycred-hook-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
#:
|
1174 |
-
#:
|
1175 |
-
#: plugins/mycred-hook-
|
1176 |
-
#:
|
1177 |
-
#: plugins/mycred-hook-
|
1178 |
-
#:
|
1179 |
-
#: plugins/mycred-hook-
|
1180 |
-
#:
|
1181 |
-
#: plugins/mycred-hook-
|
1182 |
-
#:
|
1183 |
-
#: plugins/mycred-hook-
|
1184 |
-
#:
|
1185 |
-
#:
|
1186 |
-
#:
|
1187 |
-
#:
|
1188 |
-
#:
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
#:
|
1193 |
-
#:
|
1194 |
-
#:
|
1195 |
-
#:
|
1196 |
-
#:
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
#:
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
#:
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
#:
|
1211 |
-
#:
|
1212 |
-
#:
|
1213 |
-
#:
|
1214 |
-
#: plugins/mycred-hook-
|
1215 |
-
#:
|
1216 |
-
#: plugins/mycred-hook-
|
1217 |
-
#:
|
1218 |
-
#: plugins/mycred-hook-
|
1219 |
-
#: plugins/mycred-hook-
|
1220 |
-
#:
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
#:
|
1225 |
-
#:
|
1226 |
-
#:
|
1227 |
-
#:
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
#:
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
#:
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
#:
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
#:
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
#:
|
1254 |
-
#: php:
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
#:
|
1259 |
-
#:
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
#:
|
1264 |
-
msgid "
|
1265 |
-
msgstr ""
|
1266 |
-
|
1267 |
-
#:
|
1268 |
-
msgid "
|
1269 |
-
msgstr ""
|
1270 |
-
|
1271 |
-
#:
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
#:
|
1276 |
-
msgid "
|
1277 |
-
msgstr ""
|
1278 |
-
|
1279 |
-
#:
|
1280 |
-
msgid "
|
1281 |
-
msgstr ""
|
1282 |
-
|
1283 |
-
#:
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
#:
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
#:
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
#:
|
1298 |
-
|
1299 |
-
|
1300 |
-
"
|
1301 |
-
"
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
"
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
#:
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
#:
|
1324 |
-
msgid "
|
1325 |
-
msgstr ""
|
1326 |
-
|
1327 |
-
#:
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
msgid "
|
1338 |
-
msgstr ""
|
1339 |
-
|
1340 |
-
#:
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
"
|
1367 |
-
"
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
1371 |
-
|
1372 |
-
|
1373 |
-
|
1374 |
-
"
|
1375 |
-
msgstr ""
|
1376 |
-
|
1377 |
-
#:
|
1378 |
-
msgid "
|
1379 |
-
msgstr ""
|
1380 |
-
|
1381 |
-
#:
|
1382 |
-
msgid "
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
#:
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
msgstr ""
|
1421 |
-
|
1422 |
-
#:
|
1423 |
-
msgid "
|
1424 |
-
msgstr ""
|
1425 |
-
|
1426 |
-
#:
|
1427 |
-
msgid "
|
1428 |
-
msgstr ""
|
1429 |
-
|
1430 |
-
#:
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
"
|
1450 |
-
msgstr ""
|
1451 |
-
|
1452 |
-
#:
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
#:
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
msgstr ""
|
1461 |
-
|
1462 |
-
#:
|
1463 |
-
msgid "
|
1464 |
-
msgstr ""
|
1465 |
-
|
1466 |
-
#:
|
1467 |
-
msgid "
|
1468 |
-
msgstr ""
|
1469 |
-
|
1470 |
-
#:
|
1471 |
-
msgid "
|
1472 |
-
msgstr ""
|
1473 |
-
|
1474 |
-
#:
|
1475 |
-
msgid "
|
1476 |
-
msgstr ""
|
1477 |
-
|
1478 |
-
#:
|
1479 |
-
msgid ""
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
|
1496 |
-
|
1497 |
-
|
1498 |
-
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
#:
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
msgstr ""
|
1525 |
-
|
1526 |
-
#:
|
1527 |
-
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
-
#:
|
1535 |
-
msgid "
|
1536 |
-
msgstr ""
|
1537 |
-
|
1538 |
-
#:
|
1539 |
-
msgid "
|
1540 |
-
msgstr ""
|
1541 |
-
|
1542 |
-
#:
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
|
1547 |
-
|
1548 |
-
|
1549 |
-
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
#:
|
1555 |
-
msgid "
|
1556 |
-
msgstr ""
|
1557 |
-
|
1558 |
-
#:
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
|
1579 |
-
msgid "
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
-
#:
|
1585 |
-
msgid "
|
1586 |
-
msgstr ""
|
1587 |
-
|
1588 |
-
#:
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
msgstr ""
|
1600 |
-
|
1601 |
-
#:
|
1602 |
-
msgid "
|
1603 |
-
msgstr ""
|
1604 |
-
|
1605 |
-
#:
|
1606 |
-
|
1607 |
-
msgid "
|
1608 |
-
msgstr ""
|
1609 |
-
|
1610 |
-
#:
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
|
1637 |
-
"
|
1638 |
-
"
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
msgid "
|
1654 |
-
msgstr ""
|
1655 |
-
|
1656 |
-
#:
|
1657 |
-
msgid "
|
1658 |
-
msgstr ""
|
1659 |
-
|
1660 |
-
#:
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
|
1675 |
-
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
#:
|
1687 |
-
msgid "
|
1688 |
-
msgstr ""
|
1689 |
-
|
1690 |
-
#:
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
1704 |
-
|
1705 |
-
|
1706 |
-
|
1707 |
-
|
1708 |
-
|
1709 |
-
|
1710 |
-
|
1711 |
-
|
1712 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
msgid "
|
1716 |
-
msgstr ""
|
1717 |
-
|
1718 |
-
#:
|
1719 |
-
msgid "
|
1720 |
-
msgstr ""
|
1721 |
-
|
1722 |
-
#:
|
1723 |
-
msgid "
|
1724 |
-
msgstr ""
|
1725 |
-
|
1726 |
-
#:
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
-
|
1740 |
-
msgid "
|
1741 |
-
msgstr ""
|
1742 |
-
|
1743 |
-
#:
|
1744 |
-
|
1745 |
-
|
1746 |
-
|
1747 |
-
|
1748 |
-
|
1749 |
-
|
1750 |
-
msgid "
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
#: php:
|
1760 |
-
|
1761 |
-
|
1762 |
-
|
1763 |
-
|
1764 |
-
|
1765 |
-
|
1766 |
-
|
1767 |
-
|
1768 |
-
|
1769 |
-
|
1770 |
-
|
1771 |
-
|
1772 |
-
"
|
1773 |
-
msgstr ""
|
1774 |
-
|
1775 |
-
#:
|
1776 |
-
|
1777 |
-
|
1778 |
-
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
1782 |
-
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
|
1788 |
-
|
1789 |
-
|
1790 |
-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
1798 |
-
|
1799 |
-
|
1800 |
-
|
1801 |
-
|
1802 |
-
|
1803 |
-
#:
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
|
1808 |
-
|
1809 |
-
|
1810 |
-
|
1811 |
-
|
1812 |
-
|
1813 |
-
|
1814 |
-
|
1815 |
-
|
1816 |
-
|
1817 |
-
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
|
1828 |
-
|
1829 |
-
|
1830 |
-
|
1831 |
-
|
1832 |
-
|
1833 |
-
|
1834 |
-
|
1835 |
-
|
1836 |
-
|
1837 |
-
|
1838 |
-
|
1839 |
-
|
1840 |
-
|
1841 |
-
|
1842 |
-
|
1843 |
-
|
1844 |
-
|
1845 |
-
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
|
1851 |
-
|
1852 |
-
|
1853 |
-
|
1854 |
-
|
1855 |
-
|
1856 |
-
|
1857 |
-
|
1858 |
-
|
1859 |
-
|
1860 |
-
|
1861 |
-
|
1862 |
-
#: php:
|
1863 |
-
msgid "
|
1864 |
-
msgstr ""
|
1865 |
-
|
1866 |
-
#:
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
msgstr ""
|
1876 |
-
|
1877 |
-
#:
|
1878 |
-
msgid "
|
1879 |
-
|
1880 |
-
|
1881 |
-
|
1882 |
-
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
|
1888 |
-
|
1889 |
-
|
1890 |
-
|
1891 |
-
|
1892 |
-
msgid "
|
1893 |
-
|
1894 |
-
|
1895 |
-
|
1896 |
-
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
|
1901 |
-
|
1902 |
-
msgid "
|
1903 |
-
msgstr ""
|
1904 |
-
|
1905 |
-
#:
|
1906 |
-
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
|
1911 |
-
|
1912 |
-
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
msgstr ""
|
1920 |
-
|
1921 |
-
#:
|
1922 |
-
|
1923 |
-
|
1924 |
-
|
1925 |
-
|
1926 |
-
|
1927 |
-
|
1928 |
-
|
1929 |
-
|
1930 |
-
|
1931 |
-
|
1932 |
-
|
1933 |
-
|
1934 |
-
|
1935 |
-
|
1936 |
-
|
1937 |
-
|
1938 |
-
msgid "
|
1939 |
-
msgstr ""
|
1940 |
-
|
1941 |
-
#:
|
1942 |
-
msgid "
|
1943 |
-
msgstr ""
|
1944 |
-
|
1945 |
-
#:
|
1946 |
-
|
1947 |
-
|
1948 |
-
|
1949 |
-
|
1950 |
-
|
1951 |
-
|
1952 |
-
|
1953 |
-
|
1954 |
-
|
1955 |
-
|
1956 |
-
|
1957 |
-
|
1958 |
-
|
1959 |
-
|
1960 |
-
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
|
1966 |
-
|
1967 |
-
msgstr ""
|
1968 |
-
|
1969 |
-
#:
|
1970 |
-
msgid "
|
1971 |
-
msgstr ""
|
1972 |
-
|
1973 |
-
#:
|
1974 |
-
|
1975 |
-
|
1976 |
-
|
1977 |
-
|
1978 |
-
|
1979 |
-
|
1980 |
-
msgid "
|
1981 |
-
msgstr ""
|
1982 |
-
|
1983 |
-
#:
|
1984 |
-
msgid "
|
1985 |
-
msgstr ""
|
1986 |
-
|
1987 |
-
#:
|
1988 |
-
|
1989 |
-
|
1990 |
-
"
|
1991 |
-
"
|
1992 |
-
|
1993 |
-
|
1994 |
-
|
1995 |
-
|
1996 |
-
|
1997 |
-
|
1998 |
-
|
1999 |
-
|
2000 |
-
|
2001 |
-
|
2002 |
-
|
2003 |
-
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
|
2015 |
-
|
2016 |
-
|
2017 |
-
|
2018 |
-
|
2019 |
-
|
2020 |
-
|
2021 |
-
|
2022 |
-
|
2023 |
-
|
2024 |
-
|
2025 |
-
|
2026 |
-
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
|
2035 |
-
|
2036 |
-
#:
|
2037 |
-
|
2038 |
-
|
2039 |
-
|
2040 |
-
#:
|
2041 |
-
|
2042 |
-
|
2043 |
-
|
2044 |
-
|
2045 |
-
|
2046 |
-
|
2047 |
-
|
2048 |
-
|
2049 |
-
"
|
2050 |
-
msgstr ""
|
2051 |
-
|
2052 |
-
#:
|
2053 |
-
msgid "
|
2054 |
-
msgstr ""
|
2055 |
-
|
2056 |
-
#:
|
2057 |
-
msgid "
|
2058 |
-
msgstr ""
|
2059 |
-
|
2060 |
-
#:
|
2061 |
-
msgid "
|
2062 |
-
msgstr ""
|
2063 |
-
|
2064 |
-
#:
|
2065 |
-
|
2066 |
-
|
2067 |
-
|
2068 |
-
|
2069 |
-
|
2070 |
-
|
2071 |
-
|
2072 |
-
|
2073 |
-
|
2074 |
-
|
2075 |
-
|
2076 |
-
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
2080 |
-
|
2081 |
-
|
2082 |
-
|
2083 |
-
|
2084 |
-
#:
|
2085 |
-
msgid "
|
2086 |
-
|
2087 |
-
|
2088 |
-
|
2089 |
-
|
2090 |
-
|
2091 |
-
|
2092 |
-
|
2093 |
-
|
2094 |
-
|
2095 |
-
|
2096 |
-
|
2097 |
-
|
2098 |
-
|
2099 |
-
|
2100 |
-
|
2101 |
-
|
2102 |
-
|
2103 |
-
|
2104 |
-
|
2105 |
-
|
2106 |
-
|
2107 |
-
|
2108 |
-
|
2109 |
-
|
2110 |
-
|
2111 |
-
|
2112 |
-
|
2113 |
-
|
2114 |
-
|
2115 |
-
|
2116 |
-
|
2117 |
-
|
2118 |
-
|
2119 |
-
|
2120 |
-
|
2121 |
-
|
2122 |
-
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
|
2129 |
-
|
2130 |
-
|
2131 |
-
|
2132 |
-
|
2133 |
-
|
2134 |
-
|
2135 |
-
|
2136 |
-
|
2137 |
-
|
2138 |
-
|
2139 |
-
|
2140 |
-
msgstr ""
|
2141 |
-
|
2142 |
-
#:
|
2143 |
-
|
2144 |
-
|
2145 |
-
|
2146 |
-
|
2147 |
-
|
2148 |
-
|
2149 |
-
|
2150 |
-
|
2151 |
-
|
2152 |
-
|
2153 |
-
|
2154 |
-
|
2155 |
-
|
2156 |
-
|
2157 |
-
|
2158 |
-
|
2159 |
-
|
2160 |
-
|
2161 |
-
|
2162 |
-
|
2163 |
-
msgid "
|
2164 |
-
msgstr ""
|
2165 |
-
|
2166 |
-
#:
|
2167 |
-
|
2168 |
-
|
2169 |
-
|
2170 |
-
|
2171 |
-
#:
|
2172 |
-
|
2173 |
-
msgid "
|
2174 |
-
msgstr ""
|
2175 |
-
|
2176 |
-
#:
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
2180 |
-
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
|
2185 |
-
|
2186 |
-
|
2187 |
-
|
2188 |
-
|
2189 |
-
|
2190 |
-
|
2191 |
-
|
2192 |
-
|
2193 |
-
msgid "
|
2194 |
-
msgstr ""
|
2195 |
-
|
2196 |
-
#:
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
|
2210 |
-
|
2211 |
-
|
2212 |
-
|
2213 |
-
|
2214 |
-
|
2215 |
-
|
2216 |
-
|
2217 |
-
msgid "
|
2218 |
-
msgstr ""
|
2219 |
-
|
2220 |
-
#:
|
2221 |
-
msgid "
|
2222 |
-
msgstr ""
|
2223 |
-
|
2224 |
-
#:
|
2225 |
-
msgid ""
|
2226 |
-
"
|
2227 |
-
|
2228 |
-
msgstr ""
|
2229 |
-
|
2230 |
-
#:
|
2231 |
-
|
2232 |
-
msgid ""
|
2233 |
-
|
2234 |
-
|
2235 |
-
|
2236 |
-
|
2237 |
-
|
2238 |
-
|
2239 |
-
|
2240 |
-
|
2241 |
-
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
|
2246 |
-
|
2247 |
-
msgid "
|
2248 |
-
msgstr ""
|
2249 |
-
|
2250 |
-
#:
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
|
2257 |
-
|
2258 |
-
|
2259 |
-
#:
|
2260 |
-
msgid "
|
2261 |
-
|
2262 |
-
|
2263 |
-
|
2264 |
-
|
2265 |
-
|
2266 |
-
|
2267 |
-
#:
|
2268 |
-
|
2269 |
-
|
2270 |
-
|
2271 |
-
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
-
|
2281 |
-
|
2282 |
-
|
2283 |
-
msgid ""
|
2284 |
-
|
2285 |
-
|
2286 |
-
|
2287 |
-
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
|
2292 |
-
|
2293 |
-
|
2294 |
-
|
2295 |
-
|
2296 |
-
|
2297 |
-
|
2298 |
-
|
2299 |
-
|
2300 |
-
|
2301 |
-
|
2302 |
-
|
2303 |
-
|
2304 |
-
|
2305 |
-
|
2306 |
-
|
2307 |
-
|
2308 |
-
|
2309 |
-
|
2310 |
-
|
2311 |
-
|
2312 |
-
|
2313 |
-
|
2314 |
-
#:
|
2315 |
-
|
2316 |
-
|
2317 |
-
|
2318 |
-
#:
|
2319 |
-
|
2320 |
-
"
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
-
#:
|
2325 |
-
msgid "
|
2326 |
-
msgstr ""
|
2327 |
-
|
2328 |
-
#:
|
2329 |
-
|
2330 |
-
|
2331 |
-
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
|
2342 |
-
|
2343 |
-
|
2344 |
-
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
2348 |
-
#:
|
2349 |
-
msgid "
|
2350 |
-
|
2351 |
-
|
2352 |
-
|
2353 |
-
|
2354 |
-
|
2355 |
-
|
2356 |
-
"
|
2357 |
-
msgstr ""
|
2358 |
-
|
2359 |
-
#:
|
2360 |
-
|
2361 |
-
|
2362 |
-
|
2363 |
-
|
2364 |
-
|
2365 |
-
|
2366 |
-
"
|
2367 |
-
msgstr ""
|
2368 |
-
|
2369 |
-
#:
|
2370 |
-
|
2371 |
-
|
2372 |
-
|
2373 |
-
|
2374 |
-
|
2375 |
-
|
2376 |
-
|
2377 |
-
|
2378 |
-
|
2379 |
-
"
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
|
2385 |
-
|
2386 |
-
|
2387 |
-
|
2388 |
-
|
2389 |
-
|
2390 |
-
|
2391 |
-
|
2392 |
-
|
2393 |
-
|
2394 |
-
|
2395 |
-
#:
|
2396 |
-
msgid "
|
2397 |
-
msgstr ""
|
2398 |
-
|
2399 |
-
#:
|
2400 |
-
|
2401 |
-
|
2402 |
-
|
2403 |
-
|
2404 |
-
|
2405 |
-
|
2406 |
-
|
2407 |
-
|
2408 |
-
"
|
2409 |
-
msgstr ""
|
2410 |
-
|
2411 |
-
#:
|
2412 |
-
|
2413 |
-
|
2414 |
-
|
2415 |
-
|
2416 |
-
|
2417 |
-
|
2418 |
-
|
2419 |
-
|
2420 |
-
|
2421 |
-
|
2422 |
-
#:
|
2423 |
-
|
2424 |
-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
|
2429 |
-
|
2430 |
-
|
2431 |
-
|
2432 |
-
|
2433 |
-
|
2434 |
-
|
2435 |
-
|
2436 |
-
|
2437 |
-
|
2438 |
-
|
2439 |
-
|
2440 |
-
|
2441 |
-
|
2442 |
-
|
2443 |
-
|
2444 |
-
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
|
2452 |
-
|
2453 |
-
|
2454 |
-
|
2455 |
-
|
2456 |
-
|
2457 |
-
|
2458 |
-
|
2459 |
-
|
2460 |
-
|
2461 |
-
|
2462 |
-
|
2463 |
-
|
2464 |
-
|
2465 |
-
#:
|
2466 |
-
|
2467 |
-
|
2468 |
-
|
2469 |
-
#:
|
2470 |
-
msgid "
|
2471 |
-
msgstr ""
|
2472 |
-
|
2473 |
-
#:
|
2474 |
-
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
#:
|
2479 |
-
|
2480 |
-
|
2481 |
-
|
2482 |
-
|
2483 |
-
|
2484 |
-
|
2485 |
-
|
2486 |
-
|
2487 |
-
"
|
2488 |
-
msgstr ""
|
2489 |
-
|
2490 |
-
#:
|
2491 |
-
msgid "
|
2492 |
-
msgstr ""
|
2493 |
-
|
2494 |
-
#:
|
2495 |
-
msgid "
|
2496 |
-
msgstr ""
|
2497 |
-
|
2498 |
-
#:
|
2499 |
-
|
2500 |
-
|
2501 |
-
|
2502 |
-
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
#:
|
2507 |
-
msgid "
|
2508 |
-
msgstr ""
|
2509 |
-
|
2510 |
-
#:
|
2511 |
-
|
2512 |
-
|
2513 |
-
|
2514 |
-
|
2515 |
-
|
2516 |
-
|
2517 |
-
|
2518 |
-
|
2519 |
-
|
2520 |
-
|
2521 |
-
|
2522 |
-
#:
|
2523 |
-
msgid "
|
2524 |
-
msgstr ""
|
2525 |
-
|
2526 |
-
#:
|
2527 |
-
msgid "
|
2528 |
-
msgstr ""
|
2529 |
-
|
2530 |
-
#:
|
2531 |
-
msgid "
|
2532 |
-
msgstr ""
|
2533 |
-
|
2534 |
-
#:
|
2535 |
-
msgid "
|
2536 |
-
msgstr ""
|
2537 |
-
|
2538 |
-
#:
|
2539 |
-
|
2540 |
-
|
2541 |
-
|
2542 |
-
|
2543 |
-
|
2544 |
-
|
2545 |
-
|
2546 |
-
|
2547 |
-
|
2548 |
-
|
2549 |
-
msgstr ""
|
2550 |
-
|
2551 |
-
|
2552 |
-
#: includes/
|
2553 |
-
#: includes/
|
2554 |
-
msgid "
|
2555 |
-
msgstr ""
|
2556 |
-
|
2557 |
-
#:
|
2558 |
-
|
2559 |
-
|
2560 |
-
|
2561 |
-
|
2562 |
-
msgid "
|
2563 |
-
msgstr ""
|
2564 |
-
|
2565 |
-
#:
|
2566 |
-
|
2567 |
-
|
2568 |
-
|
2569 |
-
|
2570 |
-
|
2571 |
-
|
2572 |
-
|
2573 |
-
|
2574 |
-
|
2575 |
-
|
2576 |
-
|
2577 |
-
|
2578 |
-
|
2579 |
-
|
2580 |
-
|
2581 |
-
#:
|
2582 |
-
#:
|
2583 |
-
|
2584 |
-
|
2585 |
-
|
2586 |
-
|
2587 |
-
|
2588 |
-
|
2589 |
-
|
2590 |
-
|
2591 |
-
msgid "
|
2592 |
-
msgstr ""
|
2593 |
-
|
2594 |
-
#:
|
2595 |
-
msgid "
|
2596 |
-
msgstr ""
|
2597 |
-
|
2598 |
-
#:
|
2599 |
-
|
2600 |
-
|
2601 |
-
|
2602 |
-
|
2603 |
-
|
2604 |
-
|
2605 |
-
|
2606 |
-
|
2607 |
-
|
2608 |
-
|
2609 |
-
|
2610 |
-
|
2611 |
-
|
2612 |
-
|
2613 |
-
|
2614 |
-
|
2615 |
-
msgid "
|
2616 |
-
msgstr ""
|
2617 |
-
|
2618 |
-
#:
|
2619 |
-
|
2620 |
-
|
2621 |
-
|
2622 |
-
|
2623 |
-
|
2624 |
-
|
2625 |
-
|
2626 |
-
|
2627 |
-
|
2628 |
-
|
2629 |
-
|
2630 |
-
|
2631 |
-
|
2632 |
-
|
2633 |
-
|
2634 |
-
|
2635 |
-
|
2636 |
-
|
2637 |
-
|
2638 |
-
|
2639 |
-
|
2640 |
-
|
2641 |
-
|
2642 |
-
|
2643 |
-
|
2644 |
-
|
2645 |
-
|
2646 |
-
|
2647 |
-
|
2648 |
-
|
2649 |
-
|
2650 |
-
|
2651 |
-
|
2652 |
-
|
2653 |
-
|
2654 |
-
|
2655 |
-
|
2656 |
-
|
2657 |
-
|
2658 |
-
|
2659 |
-
|
2660 |
-
|
2661 |
-
|
2662 |
-
|
2663 |
-
|
2664 |
-
|
2665 |
-
|
2666 |
-
|
2667 |
-
|
2668 |
-
|
2669 |
-
|
2670 |
-
|
2671 |
-
|
2672 |
-
|
2673 |
-
|
2674 |
-
|
2675 |
-
|
2676 |
-
|
2677 |
-
|
2678 |
-
|
2679 |
-
|
2680 |
-
|
2681 |
-
|
2682 |
-
|
2683 |
-
"
|
2684 |
-
msgstr ""
|
2685 |
-
|
2686 |
-
#:
|
2687 |
-
msgid "
|
2688 |
-
msgstr ""
|
2689 |
-
|
2690 |
-
#:
|
2691 |
-
msgid ""
|
2692 |
-
|
2693 |
-
|
2694 |
-
|
2695 |
-
|
2696 |
-
|
2697 |
-
|
2698 |
-
|
2699 |
-
|
2700 |
-
|
2701 |
-
|
2702 |
-
|
2703 |
-
"
|
2704 |
-
msgstr ""
|
2705 |
-
|
2706 |
-
#:
|
2707 |
-
msgid "
|
2708 |
-
msgstr ""
|
2709 |
-
|
2710 |
-
#:
|
2711 |
-
msgid "
|
2712 |
-
msgstr ""
|
2713 |
-
|
2714 |
-
#:
|
2715 |
-
|
2716 |
-
|
2717 |
-
|
2718 |
-
|
2719 |
-
|
2720 |
-
|
2721 |
-
|
2722 |
-
|
2723 |
-
|
2724 |
-
|
2725 |
-
|
2726 |
-
|
2727 |
-
|
2728 |
-
|
2729 |
-
|
2730 |
-
|
2731 |
-
|
2732 |
-
|
2733 |
-
|
2734 |
-
|
2735 |
-
|
2736 |
-
|
2737 |
-
|
2738 |
-
|
2739 |
-
|
2740 |
-
|
2741 |
-
|
2742 |
-
|
2743 |
-
|
2744 |
-
|
2745 |
-
|
2746 |
-
|
2747 |
-
|
2748 |
-
|
2749 |
-
|
2750 |
-
|
2751 |
-
|
2752 |
-
|
2753 |
-
|
2754 |
-
|
2755 |
-
|
2756 |
-
|
2757 |
-
|
2758 |
-
|
2759 |
-
|
2760 |
-
|
2761 |
-
|
2762 |
-
|
2763 |
-
|
2764 |
-
|
2765 |
-
|
2766 |
-
|
2767 |
-
|
2768 |
-
|
2769 |
-
|
2770 |
-
|
2771 |
-
|
2772 |
-
|
2773 |
-
|
2774 |
-
|
2775 |
-
|
2776 |
-
|
2777 |
-
|
2778 |
-
|
2779 |
-
|
2780 |
-
|
2781 |
-
|
2782 |
-
|
2783 |
-
|
2784 |
-
|
2785 |
-
|
2786 |
-
|
2787 |
-
|
2788 |
-
|
2789 |
-
|
2790 |
-
|
2791 |
-
|
2792 |
-
|
2793 |
-
|
2794 |
-
|
2795 |
-
|
2796 |
-
msgstr
|
2797 |
-
|
2798 |
-
#:
|
2799 |
-
|
2800 |
-
|
2801 |
-
|
2802 |
-
|
2803 |
-
|
2804 |
-
|
2805 |
-
|
2806 |
-
|
2807 |
-
#: log.php:
|
2808 |
-
msgid "
|
2809 |
-
msgstr ""
|
2810 |
-
|
2811 |
-
#:
|
2812 |
-
|
2813 |
-
|
2814 |
-
|
2815 |
-
|
2816 |
-
|
2817 |
-
|
2818 |
-
|
2819 |
-
|
2820 |
-
|
2821 |
-
|
2822 |
-
|
2823 |
-
|
2824 |
-
|
2825 |
-
|
2826 |
-
|
2827 |
-
|
2828 |
-
|
2829 |
-
|
2830 |
-
|
2831 |
-
|
2832 |
-
|
2833 |
-
|
2834 |
-
|
2835 |
-
|
2836 |
-
|
2837 |
-
|
2838 |
-
|
2839 |
-
|
2840 |
-
|
2841 |
-
|
2842 |
-
|
2843 |
-
|
2844 |
-
|
2845 |
-
|
2846 |
-
|
2847 |
-
|
2848 |
-
|
2849 |
-
|
2850 |
-
|
2851 |
-
|
2852 |
-
|
2853 |
-
|
2854 |
-
|
2855 |
-
|
2856 |
-
|
2857 |
-
|
2858 |
-
|
2859 |
-
#: log.php:
|
2860 |
-
msgid "
|
2861 |
-
msgstr ""
|
2862 |
-
|
2863 |
-
#:
|
2864 |
-
msgid "
|
2865 |
-
msgstr ""
|
2866 |
-
|
2867 |
-
#:
|
2868 |
-
msgid "
|
2869 |
-
msgstr ""
|
2870 |
-
|
2871 |
-
#:
|
2872 |
-
msgid "
|
2873 |
-
msgstr ""
|
2874 |
-
|
2875 |
-
#:
|
2876 |
-
msgid "
|
2877 |
-
msgstr ""
|
2878 |
-
|
2879 |
-
#:
|
2880 |
-
msgid "
|
2881 |
-
msgstr ""
|
2882 |
-
|
2883 |
-
#:
|
2884 |
-
|
2885 |
-
|
2886 |
-
|
2887 |
-
|
2888 |
-
|
2889 |
-
|
2890 |
-
|
2891 |
-
|
2892 |
-
|
2893 |
-
|
2894 |
-
|
2895 |
-
|
2896 |
-
|
2897 |
-
|
2898 |
-
|
2899 |
-
|
2900 |
-
|
2901 |
-
|
2902 |
-
|
2903 |
-
|
2904 |
-
|
2905 |
-
|
2906 |
-
|
2907 |
-
|
2908 |
-
|
2909 |
-
|
2910 |
-
|
2911 |
-
|
2912 |
-
|
2913 |
-
|
2914 |
-
|
2915 |
-
|
2916 |
-
|
2917 |
-
|
2918 |
-
|
2919 |
-
|
2920 |
-
|
2921 |
-
|
2922 |
-
|
2923 |
-
|
2924 |
-
|
2925 |
-
|
2926 |
-
|
2927 |
-
|
2928 |
-
|
2929 |
-
|
2930 |
-
|
2931 |
-
|
2932 |
-
|
2933 |
-
|
2934 |
-
|
2935 |
-
|
2936 |
-
|
2937 |
-
|
2938 |
-
|
2939 |
-
|
2940 |
-
|
2941 |
-
|
2942 |
-
|
2943 |
-
|
2944 |
-
|
2945 |
-
|
2946 |
-
|
2947 |
-
|
2948 |
-
|
2949 |
-
|
2950 |
-
|
2951 |
-
|
2952 |
-
|
2953 |
-
|
2954 |
-
|
2955 |
-
#:
|
2956 |
-
msgid "
|
2957 |
-
msgstr ""
|
2958 |
-
|
2959 |
-
#:
|
2960 |
-
msgid "
|
2961 |
-
msgstr ""
|
2962 |
-
|
2963 |
-
#:
|
2964 |
-
msgid "
|
2965 |
-
msgstr ""
|
2966 |
-
|
2967 |
-
#:
|
2968 |
-
msgid "
|
2969 |
-
msgstr ""
|
2970 |
-
|
2971 |
-
#:
|
2972 |
-
msgid "
|
2973 |
-
msgstr ""
|
2974 |
-
|
2975 |
-
#:
|
2976 |
-
msgid "
|
2977 |
-
|
2978 |
-
|
2979 |
-
|
2980 |
-
|
2981 |
-
|
2982 |
-
|
2983 |
-
|
2984 |
-
|
2985 |
-
|
2986 |
-
|
2987 |
-
|
2988 |
-
|
2989 |
-
|
2990 |
-
|
2991 |
-
|
2992 |
-
|
2993 |
-
|
2994 |
-
|
2995 |
-
|
2996 |
-
|
2997 |
-
|
2998 |
-
|
2999 |
-
|
3000 |
-
|
3001 |
-
msgstr ""
|
3002 |
-
|
3003 |
-
#:
|
3004 |
-
msgid "
|
3005 |
-
msgstr ""
|
3006 |
-
|
3007 |
-
#:
|
3008 |
-
msgid "
|
3009 |
-
msgstr ""
|
3010 |
-
|
3011 |
-
#:
|
3012 |
-
msgid "
|
3013 |
-
msgstr ""
|
3014 |
-
|
3015 |
-
#:
|
3016 |
-
msgid "
|
3017 |
-
msgstr ""
|
3018 |
-
|
3019 |
-
#:
|
3020 |
-
msgid "
|
3021 |
-
msgstr ""
|
3022 |
-
|
3023 |
-
#:
|
3024 |
-
msgid "
|
3025 |
-
msgstr ""
|
3026 |
-
|
3027 |
-
#:
|
3028 |
-
msgid "
|
3029 |
-
msgstr ""
|
3030 |
-
|
3031 |
-
#:
|
3032 |
-
msgid "
|
3033 |
-
msgstr ""
|
3034 |
-
|
3035 |
-
#:
|
3036 |
-
msgid "
|
3037 |
-
msgstr ""
|
3038 |
-
|
3039 |
-
#:
|
3040 |
-
msgid "
|
3041 |
-
msgstr ""
|
3042 |
-
|
3043 |
-
#:
|
3044 |
-
msgid "
|
3045 |
-
msgstr ""
|
3046 |
-
|
3047 |
-
#:
|
3048 |
-
msgid "
|
3049 |
-
msgstr ""
|
3050 |
-
|
3051 |
-
#:
|
3052 |
-
msgid "
|
3053 |
-
msgstr ""
|
3054 |
-
|
3055 |
-
#:
|
3056 |
-
msgid "
|
3057 |
-
msgstr ""
|
3058 |
-
|
3059 |
-
#:
|
3060 |
-
msgid "
|
3061 |
-
msgstr ""
|
3062 |
-
|
3063 |
-
#:
|
3064 |
-
|
3065 |
-
|
3066 |
-
|
3067 |
-
|
3068 |
-
|
3069 |
-
|
3070 |
-
|
3071 |
-
|
3072 |
-
|
3073 |
-
|
3074 |
-
|
3075 |
-
|
3076 |
-
#:
|
3077 |
-
msgid "
|
3078 |
-
msgstr ""
|
3079 |
-
|
3080 |
-
#:
|
3081 |
-
|
3082 |
-
|
3083 |
-
|
3084 |
-
|
3085 |
-
|
3086 |
-
|
3087 |
-
|
3088 |
-
|
3089 |
-
|
3090 |
-
|
3091 |
-
|
3092 |
-
|
3093 |
-
|
3094 |
-
|
3095 |
-
|
3096 |
-
|
3097 |
-
|
3098 |
-
|
3099 |
-
|
3100 |
-
|
3101 |
-
|
3102 |
-
|
3103 |
-
|
3104 |
-
|
3105 |
-
|
3106 |
-
|
3107 |
-
|
3108 |
-
|
3109 |
-
|
3110 |
-
|
3111 |
-
|
3112 |
-
|
3113 |
-
|
3114 |
-
|
3115 |
-
|
3116 |
-
|
3117 |
-
|
3118 |
-
|
3119 |
-
|
3120 |
-
|
3121 |
-
|
3122 |
-
|
3123 |
-
|
3124 |
-
|
3125 |
-
|
3126 |
-
|
3127 |
-
|
3128 |
-
|
3129 |
-
|
3130 |
-
|
3131 |
-
|
3132 |
-
|
3133 |
-
|
3134 |
-
|
3135 |
-
|
3136 |
-
|
3137 |
-
|
3138 |
-
|
3139 |
-
|
3140 |
-
#:
|
3141 |
-
|
3142 |
-
|
3143 |
-
|
3144 |
-
#:
|
3145 |
-
msgid "
|
3146 |
-
msgstr ""
|
3147 |
-
|
3148 |
-
#:
|
3149 |
-
|
3150 |
-
|
3151 |
-
|
3152 |
-
#:
|
3153 |
-
msgid "
|
3154 |
-
msgstr ""
|
3155 |
-
|
3156 |
-
#:
|
3157 |
-
#:
|
3158 |
-
|
3159 |
-
|
3160 |
-
|
3161 |
-
#:
|
3162 |
-
|
3163 |
-
|
3164 |
-
|
3165 |
-
|
3166 |
-
|
3167 |
-
msgid "
|
3168 |
-
msgstr ""
|
3169 |
-
|
3170 |
-
#:
|
3171 |
-
|
3172 |
-
|
3173 |
-
|
3174 |
-
|
3175 |
-
|
3176 |
-
|
3177 |
-
|
3178 |
-
|
3179 |
-
|
3180 |
-
|
3181 |
-
|
3182 |
-
#: php:
|
3183 |
-
|
3184 |
-
|
3185 |
-
|
3186 |
-
|
3187 |
-
|
3188 |
-
|
3189 |
-
|
3190 |
-
|
3191 |
-
|
3192 |
-
|
3193 |
-
|
3194 |
-
|
3195 |
-
|
3196 |
-
|
3197 |
-
|
3198 |
-
|
3199 |
-
|
3200 |
-
|
3201 |
-
|
3202 |
-
|
3203 |
-
|
3204 |
-
|
3205 |
-
|
3206 |
-
|
3207 |
-
|
3208 |
-
|
3209 |
-
|
3210 |
-
|
3211 |
-
|
3212 |
-
|
3213 |
-
#:
|
3214 |
-
|
3215 |
-
"
|
3216 |
-
|
3217 |
-
|
3218 |
-
|
3219 |
-
|
3220 |
-
|
3221 |
-
|
3222 |
-
|
3223 |
-
|
3224 |
-
|
3225 |
-
|
3226 |
-
|
3227 |
-
|
3228 |
-
|
3229 |
-
|
3230 |
-
|
3231 |
-
|
3232 |
-
|
3233 |
-
|
3234 |
-
|
3235 |
-
|
3236 |
-
|
3237 |
-
|
3238 |
-
|
3239 |
-
|
3240 |
-
|
3241 |
-
|
3242 |
-
|
3243 |
-
|
3244 |
-
|
3245 |
-
|
3246 |
-
|
3247 |
-
|
3248 |
-
|
3249 |
-
|
3250 |
-
|
3251 |
-
|
3252 |
-
|
3253 |
-
#:
|
3254 |
-
msgid "
|
3255 |
-
msgstr ""
|
3256 |
-
|
3257 |
-
#:
|
3258 |
-
|
3259 |
-
|
3260 |
-
|
3261 |
-
|
3262 |
-
#:
|
3263 |
-
|
3264 |
-
|
3265 |
-
|
3266 |
-
|
3267 |
-
#:
|
3268 |
-
msgid "
|
3269 |
-
msgstr ""
|
3270 |
-
|
3271 |
-
#:
|
3272 |
-
msgid ""
|
3273 |
-
|
3274 |
-
|
3275 |
-
|
3276 |
-
|
3277 |
-
|
3278 |
-
|
3279 |
-
|
3280 |
-
|
3281 |
-
|
3282 |
-
|
3283 |
-
|
3284 |
-
|
3285 |
-
|
3286 |
-
|
3287 |
-
|
3288 |
-
|
3289 |
-
|
3290 |
-
|
3291 |
-
|
3292 |
-
|
3293 |
-
|
3294 |
-
|
3295 |
-
|
3296 |
-
|
3297 |
-
|
3298 |
-
|
3299 |
-
|
3300 |
-
|
3301 |
-
|
3302 |
-
|
3303 |
-
|
3304 |
-
|
3305 |
-
|
3306 |
-
|
3307 |
-
|
3308 |
-
|
3309 |
-
|
3310 |
-
|
3311 |
-
|
3312 |
-
|
3313 |
-
|
3314 |
-
|
3315 |
-
|
3316 |
-
|
3317 |
-
"
|
3318 |
-
|
3319 |
-
|
3320 |
-
|
3321 |
-
|
3322 |
-
|
3323 |
-
|
3324 |
-
|
3325 |
-
|
3326 |
-
|
3327 |
-
|
3328 |
-
msgstr ""
|
3329 |
-
|
3330 |
-
#:
|
3331 |
-
msgid "
|
3332 |
-
msgstr ""
|
3333 |
-
|
3334 |
-
#:
|
3335 |
-
msgid "
|
3336 |
-
msgstr ""
|
3337 |
-
|
3338 |
-
#:
|
3339 |
-
msgid "
|
3340 |
-
msgstr ""
|
3341 |
-
|
3342 |
-
#:
|
3343 |
-
msgid "
|
3344 |
-
msgstr ""
|
3345 |
-
|
3346 |
-
#:
|
3347 |
-
msgid "
|
3348 |
-
msgstr ""
|
3349 |
-
|
3350 |
-
#:
|
3351 |
-
|
3352 |
-
|
3353 |
-
|
3354 |
-
|
3355 |
-
|
3356 |
-
|
3357 |
-
|
3358 |
-
|
3359 |
-
|
3360 |
-
|
3361 |
-
|
3362 |
-
|
3363 |
-
|
3364 |
-
|
3365 |
-
|
3366 |
-
|
3367 |
-
|
3368 |
-
|
3369 |
-
|
3370 |
-
|
3371 |
-
#:
|
3372 |
-
msgid "
|
3373 |
-
msgstr ""
|
3374 |
-
|
3375 |
-
#:
|
3376 |
-
msgid "
|
3377 |
-
|
3378 |
-
|
3379 |
-
|
3380 |
-
|
3381 |
-
|
3382 |
-
|
3383 |
-
|
3384 |
-
|
3385 |
-
|
3386 |
-
|
3387 |
-
|
3388 |
-
|
3389 |
-
|
3390 |
-
|
3391 |
-
|
3392 |
-
|
3393 |
-
msgstr ""
|
3394 |
-
|
3395 |
-
#:
|
3396 |
-
msgid "
|
3397 |
-
msgstr ""
|
3398 |
-
|
3399 |
-
#:
|
3400 |
-
msgid "
|
3401 |
-
msgstr ""
|
3402 |
-
|
3403 |
-
#:
|
3404 |
-
|
3405 |
-
|
3406 |
-
|
3407 |
-
|
3408 |
-
|
3409 |
-
|
3410 |
-
|
3411 |
-
|
3412 |
-
|
3413 |
-
|
3414 |
-
|
3415 |
-
|
3416 |
-
|
3417 |
-
|
3418 |
-
|
3419 |
-
|
3420 |
-
|
3421 |
-
|
3422 |
-
|
3423 |
-
|
3424 |
-
|
3425 |
-
|
3426 |
-
|
3427 |
-
|
3428 |
-
|
3429 |
-
|
3430 |
-
|
3431 |
-
|
3432 |
-
|
3433 |
-
|
3434 |
-
|
3435 |
-
|
3436 |
-
|
3437 |
-
|
3438 |
-
|
3439 |
-
|
3440 |
-
msgid "
|
3441 |
-
msgstr ""
|
3442 |
-
|
3443 |
-
#:
|
3444 |
-
msgid "
|
3445 |
-
msgstr ""
|
3446 |
-
|
3447 |
-
#:
|
3448 |
-
|
3449 |
-
|
3450 |
-
|
3451 |
-
|
3452 |
-
|
3453 |
-
|
3454 |
-
|
3455 |
-
|
3456 |
-
|
3457 |
-
|
3458 |
-
|
3459 |
-
|
3460 |
-
|
3461 |
-
|
3462 |
-
|
3463 |
-
|
3464 |
-
|
3465 |
-
|
3466 |
-
|
3467 |
-
|
3468 |
-
|
3469 |
-
|
3470 |
-
|
3471 |
-
|
3472 |
-
|
3473 |
-
|
3474 |
-
|
3475 |
-
|
3476 |
-
|
3477 |
-
|
3478 |
-
|
3479 |
-
|
3480 |
-
msgstr ""
|
3481 |
-
|
3482 |
-
#:
|
3483 |
-
|
3484 |
-
|
3485 |
-
|
3486 |
-
|
3487 |
-
|
3488 |
-
|
3489 |
-
|
3490 |
-
|
3491 |
-
|
3492 |
-
|
3493 |
-
|
3494 |
-
|
3495 |
-
#:
|
3496 |
-
#:
|
3497 |
-
msgid "
|
3498 |
-
msgstr ""
|
3499 |
-
|
3500 |
-
#:
|
3501 |
-
msgid "
|
3502 |
-
msgstr ""
|
3503 |
-
|
3504 |
-
#:
|
3505 |
-
|
3506 |
-
|
3507 |
-
|
3508 |
-
|
3509 |
-
"
|
3510 |
-
|
3511 |
-
|
3512 |
-
|
3513 |
-
|
3514 |
-
|
3515 |
-
|
3516 |
-
|
3517 |
-
|
3518 |
-
|
3519 |
-
|
3520 |
-
|
3521 |
-
|
3522 |
-
|
3523 |
-
|
3524 |
-
|
3525 |
-
|
3526 |
-
|
3527 |
-
|
3528 |
-
#:
|
3529 |
-
|
3530 |
-
|
3531 |
-
|
3532 |
-
|
3533 |
-
|
3534 |
-
|
3535 |
-
|
3536 |
-
|
3537 |
-
|
3538 |
-
|
3539 |
-
|
3540 |
-
#:
|
3541 |
-
msgid "
|
3542 |
-
msgstr ""
|
3543 |
-
|
3544 |
-
#:
|
3545 |
-
|
3546 |
-
|
3547 |
-
|
3548 |
-
|
3549 |
-
|
3550 |
-
|
3551 |
-
|
3552 |
-
|
3553 |
-
|
3554 |
-
|
3555 |
-
|
3556 |
-
"
|
3557 |
-
msgstr ""
|
3558 |
-
|
3559 |
-
#:
|
3560 |
-
#:
|
3561 |
-
msgid "
|
3562 |
-
msgstr ""
|
3563 |
-
|
3564 |
-
#:
|
3565 |
-
msgid "
|
3566 |
-
msgstr ""
|
3567 |
-
|
3568 |
-
#:
|
3569 |
-
msgid "
|
3570 |
-
msgstr ""
|
3571 |
-
|
3572 |
-
#:
|
3573 |
-
msgid "
|
3574 |
-
msgstr ""
|
3575 |
-
|
3576 |
-
#:
|
3577 |
-
|
3578 |
-
|
3579 |
-
|
3580 |
-
|
3581 |
-
|
3582 |
-
|
3583 |
-
|
3584 |
-
|
3585 |
-
|
3586 |
-
|
3587 |
-
|
3588 |
-
|
3589 |
-
|
3590 |
-
|
3591 |
-
#: addons/
|
3592 |
-
|
3593 |
-
|
3594 |
-
|
3595 |
-
|
3596 |
-
#: addons/
|
3597 |
-
#: addons/
|
3598 |
-
|
3599 |
-
|
3600 |
-
|
3601 |
-
|
3602 |
-
|
3603 |
-
|
3604 |
-
|
3605 |
-
|
3606 |
-
|
3607 |
-
|
3608 |
-
|
3609 |
-
|
3610 |
-
|
3611 |
-
|
3612 |
-
|
3613 |
-
|
3614 |
-
|
3615 |
-
|
3616 |
-
|
3617 |
-
|
3618 |
-
|
3619 |
-
|
3620 |
-
|
3621 |
-
|
3622 |
-
|
3623 |
-
|
3624 |
-
|
3625 |
-
|
3626 |
-
|
3627 |
-
|
3628 |
-
|
3629 |
-
|
3630 |
-
|
3631 |
-
|
3632 |
-
|
3633 |
-
|
3634 |
-
|
3635 |
-
|
3636 |
-
|
3637 |
-
|
3638 |
-
|
3639 |
-
|
3640 |
-
|
3641 |
-
#:
|
3642 |
-
|
3643 |
-
|
3644 |
-
|
3645 |
-
|
3646 |
-
|
3647 |
-
|
3648 |
-
|
3649 |
-
|
3650 |
-
|
3651 |
-
|
3652 |
-
|
3653 |
-
|
3654 |
-
|
3655 |
-
|
3656 |
-
|
3657 |
-
|
3658 |
-
|
3659 |
-
|
3660 |
-
|
3661 |
-
|
3662 |
-
|
3663 |
-
|
3664 |
-
|
3665 |
-
|
3666 |
-
|
3667 |
-
|
3668 |
-
|
3669 |
-
|
3670 |
-
|
3671 |
-
|
3672 |
-
|
3673 |
-
|
3674 |
-
|
3675 |
-
|
3676 |
-
|
3677 |
-
|
3678 |
-
|
3679 |
-
|
3680 |
-
|
3681 |
-
|
3682 |
-
|
3683 |
-
|
3684 |
-
|
3685 |
-
|
3686 |
-
|
3687 |
-
|
3688 |
-
|
3689 |
-
|
3690 |
-
|
3691 |
-
|
3692 |
-
|
3693 |
-
#: addons/
|
3694 |
-
|
3695 |
-
|
3696 |
-
|
3697 |
-
|
3698 |
-
|
3699 |
-
|
3700 |
-
|
3701 |
-
|
3702 |
-
|
3703 |
-
|
3704 |
-
|
3705 |
-
|
3706 |
-
|
3707 |
-
|
3708 |
-
|
3709 |
-
|
3710 |
-
|
3711 |
-
|
3712 |
-
|
3713 |
-
|
3714 |
-
|
3715 |
-
|
3716 |
-
|
3717 |
-
|
3718 |
-
|
3719 |
-
|
3720 |
-
|
3721 |
-
|
3722 |
-
|
3723 |
-
|
3724 |
-
|
3725 |
-
|
3726 |
-
|
3727 |
-
|
3728 |
-
|
3729 |
-
#: addons/
|
3730 |
-
msgid "
|
3731 |
-
msgstr ""
|
3732 |
-
|
3733 |
-
#:
|
3734 |
-
|
3735 |
-
|
3736 |
-
|
3737 |
-
|
3738 |
-
|
3739 |
-
|
3740 |
-
|
3741 |
-
|
3742 |
-
|
3743 |
-
|
3744 |
-
|
3745 |
-
|
3746 |
-
|
3747 |
-
|
3748 |
-
|
3749 |
-
|
3750 |
-
|
3751 |
-
|
3752 |
-
|
3753 |
-
|
3754 |
-
msgid "
|
3755 |
-
|
3756 |
-
|
3757 |
-
|
3758 |
-
|
3759 |
-
|
3760 |
-
|
3761 |
-
|
3762 |
-
|
3763 |
-
|
3764 |
-
|
3765 |
-
|
3766 |
-
|
3767 |
-
|
3768 |
-
|
3769 |
-
|
3770 |
-
|
3771 |
-
|
3772 |
-
|
3773 |
-
|
3774 |
-
|
3775 |
-
|
3776 |
-
|
3777 |
-
|
3778 |
-
|
3779 |
-
|
3780 |
-
|
3781 |
-
|
3782 |
-
|
3783 |
-
|
3784 |
-
|
3785 |
-
|
3786 |
-
msgstr ""
|
3787 |
-
|
3788 |
-
#:
|
3789 |
-
msgid "
|
3790 |
-
msgstr ""
|
3791 |
-
|
3792 |
-
#:
|
3793 |
-
msgid ""
|
3794 |
-
|
3795 |
-
|
3796 |
-
|
3797 |
-
|
3798 |
-
|
3799 |
-
|
3800 |
-
|
3801 |
-
|
3802 |
-
|
3803 |
-
|
3804 |
-
|
3805 |
-
|
3806 |
-
|
3807 |
-
|
3808 |
-
|
3809 |
-
|
3810 |
-
|
3811 |
-
|
3812 |
-
|
3813 |
-
|
3814 |
-
|
3815 |
-
|
3816 |
-
|
3817 |
-
|
3818 |
-
|
3819 |
-
|
3820 |
-
|
3821 |
-
|
3822 |
-
|
3823 |
-
|
3824 |
-
|
3825 |
-
#:
|
3826 |
-
|
3827 |
-
|
3828 |
-
|
3829 |
-
|
3830 |
-
|
3831 |
-
|
3832 |
-
|
3833 |
-
|
3834 |
-
|
3835 |
-
|
3836 |
-
|
3837 |
-
|
3838 |
-
|
3839 |
-
|
3840 |
-
|
3841 |
-
|
3842 |
-
|
3843 |
-
|
3844 |
-
|
3845 |
-
|
3846 |
-
|
3847 |
-
|
3848 |
-
|
3849 |
-
|
3850 |
-
|
3851 |
-
|
3852 |
-
|
3853 |
-
"
|
3854 |
-
|
3855 |
-
|
3856 |
-
|
3857 |
-
|
3858 |
-
|
3859 |
-
|
3860 |
-
|
3861 |
-
|
3862 |
-
|
3863 |
-
|
3864 |
-
|
3865 |
-
|
3866 |
-
|
3867 |
-
|
3868 |
-
|
3869 |
-
|
3870 |
-
|
3871 |
-
|
3872 |
-
|
3873 |
-
|
3874 |
-
|
3875 |
-
#: addons/email-notices/myCRED-addon-email-notices.php:
|
3876 |
-
|
3877 |
-
|
3878 |
-
|
3879 |
-
|
3880 |
-
|
3881 |
-
|
3882 |
-
|
3883 |
-
|
3884 |
-
|
3885 |
-
|
3886 |
-
|
3887 |
-
|
3888 |
-
"
|
3889 |
-
msgstr ""
|
3890 |
-
|
3891 |
-
#:
|
3892 |
-
|
3893 |
-
|
3894 |
-
|
3895 |
-
|
3896 |
-
#:
|
3897 |
-
msgid "
|
3898 |
-
msgstr ""
|
3899 |
-
|
3900 |
-
#:
|
3901 |
-
msgid "
|
3902 |
-
msgstr ""
|
3903 |
-
|
3904 |
-
#:
|
3905 |
-
msgid "
|
3906 |
-
msgstr ""
|
3907 |
-
|
3908 |
-
#:
|
3909 |
-
msgid "
|
3910 |
-
msgstr ""
|
3911 |
-
|
3912 |
-
#:
|
3913 |
-
msgid "
|
3914 |
-
msgstr ""
|
3915 |
-
|
3916 |
-
#:
|
3917 |
-
msgid "
|
3918 |
-
msgstr ""
|
3919 |
-
|
3920 |
-
#:
|
3921 |
-
msgid "
|
3922 |
-
msgstr ""
|
3923 |
-
|
3924 |
-
#:
|
3925 |
-
msgid "
|
3926 |
-
msgstr ""
|
3927 |
-
|
3928 |
-
#:
|
3929 |
-
|
3930 |
-
|
3931 |
-
|
3932 |
-
#:
|
3933 |
-
|
3934 |
-
|
3935 |
-
|
3936 |
-
|
3937 |
-
|
3938 |
-
|
3939 |
-
|
3940 |
-
|
3941 |
-
|
3942 |
-
|
3943 |
-
|
3944 |
-
|
3945 |
-
|
3946 |
-
|
3947 |
-
|
3948 |
-
|
3949 |
-
|
3950 |
-
|
3951 |
-
|
3952 |
-
|
3953 |
-
|
3954 |
-
|
3955 |
-
|
3956 |
-
|
3957 |
-
|
3958 |
-
|
3959 |
-
|
3960 |
-
|
3961 |
-
|
3962 |
-
|
3963 |
-
|
3964 |
-
|
3965 |
-
|
3966 |
-
|
3967 |
-
|
3968 |
-
#:
|
3969 |
-
#: addons/
|
3970 |
-
#: addons/
|
3971 |
-
#:
|
3972 |
-
|
3973 |
-
|
3974 |
-
|
3975 |
-
|
3976 |
-
|
3977 |
-
#: addons/
|
3978 |
-
|
3979 |
-
|
3980 |
-
|
3981 |
-
|
3982 |
-
|
3983 |
-
|
3984 |
-
|
3985 |
-
|
3986 |
-
#:
|
3987 |
-
|
3988 |
-
|
3989 |
-
|
3990 |
-
#: addons/
|
3991 |
-
msgid "
|
3992 |
-
msgstr ""
|
3993 |
-
|
3994 |
-
#:
|
3995 |
-
|
3996 |
-
|
3997 |
-
|
3998 |
-
|
3999 |
-
|
4000 |
-
|
4001 |
-
|
4002 |
-
|
4003 |
-
|
4004 |
-
|
4005 |
-
|
4006 |
-
|
4007 |
-
|
4008 |
-
|
4009 |
-
|
4010 |
-
|
4011 |
-
|
4012 |
-
|
4013 |
-
|
4014 |
-
#:
|
4015 |
-
#: addons/
|
4016 |
-
|
4017 |
-
|
4018 |
-
|
4019 |
-
|
4020 |
-
|
4021 |
-
#:
|
4022 |
-
msgid "
|
4023 |
-
msgstr ""
|
4024 |
-
|
4025 |
-
#:
|
4026 |
-
msgid "
|
4027 |
-
msgstr ""
|
4028 |
-
|
4029 |
-
#:
|
4030 |
-
|
4031 |
-
|
4032 |
-
|
4033 |
-
|
4034 |
-
|
4035 |
-
|
4036 |
-
|
4037 |
-
|
4038 |
-
|
4039 |
-
#: addons/
|
4040 |
-
|
4041 |
-
|
4042 |
-
|
4043 |
-
|
4044 |
-
|
4045 |
-
|
4046 |
-
|
4047 |
-
msgid "
|
4048 |
-
msgstr ""
|
4049 |
-
|
4050 |
-
#:
|
4051 |
-
#: addons/
|
4052 |
-
#: addons/
|
4053 |
-
|
4054 |
-
|
4055 |
-
|
4056 |
-
|
4057 |
-
|
4058 |
-
|
4059 |
-
|
4060 |
-
|
4061 |
-
|
4062 |
-
|
4063 |
-
|
4064 |
-
|
4065 |
-
|
4066 |
-
"
|
4067 |
-
"
|
4068 |
-
|
4069 |
-
|
4070 |
-
|
4071 |
-
|
4072 |
-
|
4073 |
-
|
4074 |
-
#:
|
4075 |
-
|
4076 |
-
|
4077 |
-
|
4078 |
-
#: addons/
|
4079 |
-
|
4080 |
-
|
4081 |
-
|
4082 |
-
|
4083 |
-
|
4084 |
-
|
4085 |
-
|
4086 |
-
#: addons/
|
4087 |
-
|
4088 |
-
|
4089 |
-
|
4090 |
-
|
4091 |
-
|
4092 |
-
|
4093 |
-
|
4094 |
-
#: addon-
|
4095 |
-
msgid "
|
4096 |
-
msgstr ""
|
4097 |
-
|
4098 |
-
#:
|
4099 |
-
msgid "
|
4100 |
-
msgstr ""
|
4101 |
-
|
4102 |
-
#:
|
4103 |
-
msgid ""
|
4104 |
-
|
4105 |
-
|
4106 |
-
|
4107 |
-
|
4108 |
-
|
4109 |
-
|
4110 |
-
|
4111 |
-
|
4112 |
-
|
4113 |
-
|
4114 |
-
|
4115 |
-
|
4116 |
-
|
4117 |
-
|
4118 |
-
|
4119 |
-
#:
|
4120 |
-
msgid "
|
4121 |
-
msgstr ""
|
4122 |
-
|
4123 |
-
#:
|
4124 |
-
msgid "
|
4125 |
-
msgstr ""
|
4126 |
-
|
4127 |
-
#:
|
4128 |
-
|
4129 |
-
|
4130 |
-
|
4131 |
-
|
4132 |
-
|
4133 |
-
|
4134 |
-
|
4135 |
-
|
4136 |
-
|
4137 |
-
|
4138 |
-
|
4139 |
-
|
4140 |
-
msgid "
|
4141 |
-
msgstr ""
|
4142 |
-
|
4143 |
-
#:
|
4144 |
-
|
4145 |
-
|
4146 |
-
|
4147 |
-
|
4148 |
-
#:
|
4149 |
-
#: addons/
|
4150 |
-
|
4151 |
-
|
4152 |
-
|
4153 |
-
|
4154 |
-
|
4155 |
-
|
4156 |
-
|
4157 |
-
|
4158 |
-
|
4159 |
-
#: addons/
|
4160 |
-
|
4161 |
-
|
4162 |
-
|
4163 |
-
|
4164 |
-
#: addons/
|
4165 |
-
msgid "
|
4166 |
-
msgstr ""
|
4167 |
-
|
4168 |
-
#:
|
4169 |
-
msgid "
|
4170 |
-
msgstr ""
|
4171 |
-
|
4172 |
-
#:
|
4173 |
-
msgid "
|
4174 |
-
msgstr ""
|
4175 |
-
|
4176 |
-
#:
|
4177 |
-
|
4178 |
-
|
4179 |
-
|
4180 |
-
|
4181 |
-
|
4182 |
-
|
4183 |
-
|
4184 |
-
|
4185 |
-
|
4186 |
-
|
4187 |
-
#:
|
4188 |
-
#: addons/
|
4189 |
-
|
4190 |
-
|
4191 |
-
|
4192 |
-
|
4193 |
-
|
4194 |
-
|
4195 |
-
|
4196 |
-
msgid "
|
4197 |
-
msgstr ""
|
4198 |
-
|
4199 |
-
#:
|
4200 |
-
#: addons/
|
4201 |
-
|
4202 |
-
|
4203 |
-
|
4204 |
-
|
4205 |
-
|
4206 |
-
|
4207 |
-
|
4208 |
-
|
4209 |
-
|
4210 |
-
|
4211 |
-
|
4212 |
-
|
4213 |
-
#: addons/
|
4214 |
-
|
4215 |
-
|
4216 |
-
|
4217 |
-
|
4218 |
-
#: addons/
|
4219 |
-
msgid "
|
4220 |
-
|
4221 |
-
|
4222 |
-
|
4223 |
-
|
4224 |
-
|
4225 |
-
|
4226 |
-
|
4227 |
-
|
4228 |
-
#: addons/
|
4229 |
-
|
4230 |
-
|
4231 |
-
"
|
4232 |
-
|
4233 |
-
|
4234 |
-
|
4235 |
-
|
4236 |
-
|
4237 |
-
|
4238 |
-
|
4239 |
-
|
4240 |
-
|
4241 |
-
|
4242 |
-
|
4243 |
-
|
4244 |
-
|
4245 |
-
#: addons/
|
4246 |
-
msgid "
|
4247 |
-
msgstr ""
|
4248 |
-
|
4249 |
-
#:
|
4250 |
-
|
4251 |
-
|
4252 |
-
|
4253 |
-
|
4254 |
-
|
4255 |
-
|
4256 |
-
|
4257 |
-
#: addons/
|
4258 |
-
msgid "
|
4259 |
-
msgstr ""
|
4260 |
-
|
4261 |
-
#:
|
4262 |
-
|
4263 |
-
|
4264 |
-
|
4265 |
-
|
4266 |
-
|
4267 |
-
|
4268 |
-
|
4269 |
-
|
4270 |
-
msgid "
|
4271 |
-
|
4272 |
-
|
4273 |
-
|
4274 |
-
|
4275 |
-
|
4276 |
-
|
4277 |
-
|
4278 |
-
|
4279 |
-
|
4280 |
-
|
4281 |
-
|
4282 |
-
|
4283 |
-
|
4284 |
-
|
4285 |
-
|
4286 |
-
|
4287 |
-
|
4288 |
-
|
4289 |
-
|
4290 |
-
|
4291 |
-
|
4292 |
-
|
4293 |
-
msgstr ""
|
4294 |
-
|
4295 |
-
#:
|
4296 |
-
msgid "
|
4297 |
-
|
4298 |
-
|
4299 |
-
|
4300 |
-
|
4301 |
-
|
4302 |
-
|
4303 |
-
|
4304 |
-
|
4305 |
-
#: addons/
|
4306 |
-
|
4307 |
-
|
4308 |
-
|
4309 |
-
|
4310 |
-
|
4311 |
-
|
4312 |
-
|
4313 |
-
|
4314 |
-
|
4315 |
-
|
4316 |
-
|
4317 |
-
|
4318 |
-
|
4319 |
-
|
4320 |
-
|
4321 |
-
|
4322 |
-
|
4323 |
-
|
4324 |
-
|
4325 |
-
|
4326 |
-
|
4327 |
-
|
4328 |
-
|
4329 |
-
|
4330 |
-
|
4331 |
-
|
4332 |
-
|
4333 |
-
|
4334 |
-
|
4335 |
-
|
4336 |
-
|
4337 |
-
|
4338 |
-
|
4339 |
-
|
4340 |
-
|
4341 |
-
|
4342 |
-
|
4343 |
-
|
4344 |
-
|
4345 |
-
|
4346 |
-
msgid "
|
4347 |
-
|
4348 |
-
|
4349 |
-
|
4350 |
-
|
4351 |
-
|
4352 |
-
|
4353 |
-
|
4354 |
-
|
4355 |
-
|
4356 |
-
|
4357 |
-
|
4358 |
-
|
4359 |
-
|
4360 |
-
|
4361 |
-
|
4362 |
-
|
4363 |
-
|
4364 |
-
|
4365 |
-
|
4366 |
-
|
4367 |
-
"
|
4368 |
-
msgstr ""
|
4369 |
-
|
4370 |
-
#:
|
4371 |
-
msgid "
|
4372 |
-
msgstr ""
|
4373 |
-
|
4374 |
-
#:
|
4375 |
-
msgid "
|
4376 |
-
|
4377 |
-
|
4378 |
-
|
4379 |
-
|
4380 |
-
|
4381 |
-
|
4382 |
-
|
4383 |
-
|
4384 |
-
|
4385 |
-
|
4386 |
-
|
4387 |
-
|
4388 |
-
|
4389 |
-
|
4390 |
-
|
4391 |
-
|
4392 |
-
|
4393 |
-
|
4394 |
-
|
4395 |
-
|
4396 |
-
|
4397 |
-
|
4398 |
-
|
4399 |
-
|
4400 |
-
|
4401 |
-
|
4402 |
-
|
4403 |
-
|
4404 |
-
|
4405 |
-
|
4406 |
-
msgid "
|
4407 |
-
msgstr ""
|
4408 |
-
|
4409 |
-
#:
|
4410 |
-
|
4411 |
-
|
4412 |
-
|
4413 |
-
|
4414 |
-
|
4415 |
-
|
4416 |
-
|
4417 |
-
|
4418 |
-
|
4419 |
-
|
4420 |
-
|
4421 |
-
|
4422 |
-
|
4423 |
-
|
4424 |
-
|
4425 |
-
|
4426 |
-
|
4427 |
-
|
4428 |
-
|
4429 |
-
|
4430 |
-
|
4431 |
-
|
4432 |
-
|
4433 |
-
|
4434 |
-
|
4435 |
-
|
4436 |
-
|
4437 |
-
|
4438 |
-
|
4439 |
-
#:
|
4440 |
-
|
4441 |
-
|
4442 |
-
|
4443 |
-
#:
|
4444 |
-
|
4445 |
-
|
4446 |
-
|
4447 |
-
|
4448 |
-
|
4449 |
-
|
4450 |
-
|
4451 |
-
|
4452 |
-
|
4453 |
-
|
4454 |
-
|
4455 |
-
#:
|
4456 |
-
msgid "
|
4457 |
-
msgstr ""
|
4458 |
-
|
4459 |
-
#:
|
4460 |
-
#: addons/
|
4461 |
-
#:
|
4462 |
-
|
4463 |
-
|
4464 |
-
|
4465 |
-
|
4466 |
-
|
4467 |
-
|
4468 |
-
|
4469 |
-
|
4470 |
-
|
4471 |
-
#:
|
4472 |
-
msgid "
|
4473 |
-
msgstr ""
|
4474 |
-
|
4475 |
-
#:
|
4476 |
-
|
4477 |
-
|
4478 |
-
|
4479 |
-
|
4480 |
-
|
4481 |
-
|
4482 |
-
|
4483 |
-
|
4484 |
-
|
4485 |
-
|
4486 |
-
|
4487 |
-
|
4488 |
-
|
4489 |
-
|
4490 |
-
|
4491 |
-
|
4492 |
-
msgid ""
|
4493 |
-
|
4494 |
-
|
4495 |
-
|
4496 |
-
|
4497 |
-
|
4498 |
-
|
4499 |
-
|
4500 |
-
|
4501 |
-
|
4502 |
-
|
4503 |
-
|
4504 |
-
|
4505 |
-
|
4506 |
-
|
4507 |
-
|
4508 |
-
|
4509 |
-
|
4510 |
-
|
4511 |
-
|
4512 |
-
|
4513 |
-
|
4514 |
-
|
4515 |
-
|
4516 |
-
|
4517 |
-
|
4518 |
-
|
4519 |
-
|
4520 |
-
|
4521 |
-
|
4522 |
-
|
4523 |
-
|
4524 |
-
|
4525 |
-
|
4526 |
-
|
4527 |
-
|
4528 |
-
|
4529 |
-
|
4530 |
-
|
4531 |
-
|
4532 |
-
"
|
4533 |
-
"
|
4534 |
-
|
4535 |
-
|
4536 |
-
|
4537 |
-
|
4538 |
-
|
4539 |
-
|
4540 |
-
|
4541 |
-
|
4542 |
-
|
4543 |
-
|
4544 |
-
|
4545 |
-
|
4546 |
-
|
4547 |
-
|
4548 |
-
|
4549 |
-
|
4550 |
-
|
4551 |
-
|
4552 |
-
|
4553 |
-
|
4554 |
-
|
4555 |
-
|
4556 |
-
|
4557 |
-
|
4558 |
-
|
4559 |
-
|
4560 |
-
|
4561 |
-
|
4562 |
-
#:
|
4563 |
-
|
4564 |
-
|
4565 |
-
|
4566 |
-
|
4567 |
-
|
4568 |
-
|
4569 |
-
|
4570 |
-
#:
|
4571 |
-
msgid "
|
4572 |
-
msgstr ""
|
4573 |
-
|
4574 |
-
#:
|
4575 |
-
msgid "
|
4576 |
-
msgstr ""
|
4577 |
-
|
4578 |
-
#:
|
4579 |
-
|
4580 |
-
|
4581 |
-
|
4582 |
-
|
4583 |
-
|
4584 |
-
msgid ""
|
4585 |
-
|
4586 |
-
|
4587 |
-
|
4588 |
-
"
|
4589 |
-
msgstr ""
|
4590 |
-
|
4591 |
-
#:
|
4592 |
-
|
4593 |
-
|
4594 |
-
|
4595 |
-
|
4596 |
-
|
4597 |
-
|
4598 |
-
|
4599 |
-
|
4600 |
-
|
4601 |
-
|
4602 |
-
|
4603 |
-
|
4604 |
-
#:
|
4605 |
-
msgid "
|
4606 |
-
msgstr ""
|
4607 |
-
|
4608 |
-
#:
|
4609 |
-
|
4610 |
-
|
4611 |
-
|
4612 |
-
|
4613 |
-
|
4614 |
-
|
4615 |
-
|
4616 |
-
|
4617 |
-
|
4618 |
-
|
4619 |
-
|
4620 |
-
|
4621 |
-
|
4622 |
-
|
4623 |
-
|
4624 |
-
|
4625 |
-
|
4626 |
-
|
4627 |
-
|
4628 |
-
|
4629 |
-
|
4630 |
-
|
4631 |
-
|
4632 |
-
|
4633 |
-
|
4634 |
-
|
4635 |
-
|
4636 |
-
|
4637 |
-
|
4638 |
-
|
4639 |
-
|
4640 |
-
|
4641 |
-
|
4642 |
-
|
4643 |
-
|
4644 |
-
|
4645 |
-
|
4646 |
-
|
4647 |
-
|
4648 |
-
|
4649 |
-
|
4650 |
-
|
4651 |
-
|
4652 |
-
|
4653 |
-
|
4654 |
-
|
4655 |
-
|
4656 |
-
|
4657 |
-
|
4658 |
-
|
4659 |
-
#:
|
4660 |
-
msgid "
|
4661 |
-
msgstr ""
|
4662 |
-
|
4663 |
-
#:
|
4664 |
-
|
4665 |
-
|
4666 |
-
|
4667 |
-
|
4668 |
-
|
4669 |
-
|
4670 |
-
|
4671 |
-
|
4672 |
-
|
4673 |
-
|
4674 |
-
|
4675 |
-
|
4676 |
-
|
4677 |
-
|
4678 |
-
|
4679 |
-
|
4680 |
-
|
4681 |
-
|
4682 |
-
|
4683 |
-
|
4684 |
-
|
4685 |
-
|
4686 |
-
|
4687 |
-
|
4688 |
-
|
4689 |
-
|
4690 |
-
|
4691 |
-
|
4692 |
-
|
4693 |
-
|
4694 |
-
"
|
4695 |
-
msgstr ""
|
4696 |
-
|
4697 |
-
#:
|
4698 |
-
msgid ""
|
4699 |
-
|
4700 |
-
|
4701 |
-
|
4702 |
-
|
4703 |
-
|
4704 |
-
|
4705 |
-
|
4706 |
-
|
4707 |
-
|
4708 |
-
|
4709 |
-
|
4710 |
-
|
4711 |
-
|
4712 |
-
|
4713 |
-
|
4714 |
-
|
4715 |
-
|
4716 |
-
|
4717 |
-
|
4718 |
-
|
4719 |
-
|
4720 |
-
|
4721 |
-
|
4722 |
-
|
4723 |
-
|
4724 |
-
|
4725 |
-
|
4726 |
-
|
4727 |
-
|
4728 |
-
|
4729 |
-
|
4730 |
-
|
4731 |
-
|
4732 |
-
|
4733 |
-
|
4734 |
-
|
4735 |
-
|
4736 |
-
|
4737 |
-
|
4738 |
-
|
4739 |
-
|
4740 |
-
|
4741 |
-
|
4742 |
-
|
4743 |
-
|
4744 |
-
msgstr ""
|
4745 |
-
|
4746 |
-
#:
|
4747 |
-
msgid "
|
4748 |
-
msgstr ""
|
4749 |
-
|
4750 |
-
#:
|
4751 |
-
|
4752 |
-
|
4753 |
-
|
4754 |
-
|
4755 |
-
#: addons/
|
4756 |
-
|
4757 |
-
|
4758 |
-
|
4759 |
-
|
4760 |
-
|
4761 |
-
|
4762 |
-
|
4763 |
-
|
4764 |
-
|
4765 |
-
|
4766 |
-
|
4767 |
-
|
4768 |
-
|
4769 |
-
|
4770 |
-
|
4771 |
-
|
4772 |
-
|
4773 |
-
|
4774 |
-
|
4775 |
-
|
4776 |
-
|
4777 |
-
|
4778 |
-
|
4779 |
-
|
4780 |
-
|
4781 |
-
|
4782 |
-
|
4783 |
-
|
4784 |
-
msgid "
|
4785 |
-
msgstr ""
|
4786 |
-
|
4787 |
-
#:
|
4788 |
-
|
4789 |
-
|
4790 |
-
|
4791 |
-
#:
|
4792 |
-
msgid "
|
4793 |
-
|
4794 |
-
|
4795 |
-
|
4796 |
-
|
4797 |
-
#:
|
4798 |
-
msgid "
|
4799 |
-
msgstr ""
|
4800 |
-
|
4801 |
-
#:
|
4802 |
-
msgid "
|
4803 |
-
msgstr ""
|
4804 |
-
|
4805 |
-
#:
|
4806 |
-
msgid "
|
4807 |
-
msgstr ""
|
4808 |
-
|
4809 |
-
#:
|
4810 |
-
msgid "
|
4811 |
-
msgstr ""
|
4812 |
-
|
4813 |
-
#:
|
4814 |
-
msgid "
|
4815 |
-
msgstr ""
|
4816 |
-
|
4817 |
-
#:
|
4818 |
-
|
4819 |
-
|
4820 |
-
|
4821 |
-
|
4822 |
-
|
4823 |
-
|
4824 |
-
|
4825 |
-
|
4826 |
-
|
4827 |
-
|
4828 |
-
|
4829 |
-
|
4830 |
-
|
4831 |
-
|
4832 |
-
|
4833 |
-
|
4834 |
-
|
4835 |
-
|
4836 |
-
|
4837 |
-
|
4838 |
-
|
4839 |
-
|
4840 |
-
|
4841 |
-
|
4842 |
-
|
4843 |
-
|
4844 |
-
#:
|
4845 |
-
|
4846 |
-
|
4847 |
-
|
4848 |
-
|
4849 |
-
|
4850 |
-
|
4851 |
-
|
4852 |
-
|
4853 |
-
|
4854 |
-
|
4855 |
-
|
4856 |
-
|
4857 |
-
|
4858 |
-
|
4859 |
-
|
4860 |
-
|
4861 |
-
msgid "
|
4862 |
-
msgstr ""
|
4863 |
-
|
4864 |
-
#:
|
4865 |
-
msgid "
|
4866 |
-
msgstr ""
|
4867 |
-
|
4868 |
-
#:
|
4869 |
-
msgid "
|
4870 |
-
msgstr ""
|
4871 |
-
|
4872 |
-
#:
|
4873 |
-
|
4874 |
-
|
4875 |
-
|
4876 |
-
|
4877 |
-
|
4878 |
-
|
4879 |
-
|
4880 |
-
|
4881 |
-
|
4882 |
-
|
4883 |
-
|
4884 |
-
|
4885 |
-
|
4886 |
-
|
4887 |
-
|
4888 |
-
|
4889 |
-
|
4890 |
-
|
4891 |
-
|
4892 |
-
|
4893 |
-
|
4894 |
-
|
4895 |
-
|
4896 |
-
#:
|
4897 |
-
|
4898 |
-
|
4899 |
-
|
4900 |
-
|
4901 |
-
#:
|
4902 |
-
|
4903 |
-
|
4904 |
-
|
4905 |
-
|
4906 |
-
|
4907 |
-
|
4908 |
-
|
4909 |
-
|
4910 |
-
#:
|
4911 |
-
msgid "
|
4912 |
-
msgstr ""
|
4913 |
-
|
4914 |
-
#:
|
4915 |
-
msgid "
|
4916 |
-
msgstr ""
|
4917 |
-
|
4918 |
-
#:
|
4919 |
-
#: php:
|
4920 |
-
|
4921 |
-
|
4922 |
-
|
4923 |
-
|
4924 |
-
|
4925 |
-
|
4926 |
-
|
4927 |
-
|
4928 |
-
|
4929 |
-
|
4930 |
-
|
4931 |
-
|
4932 |
-
|
4933 |
-
|
4934 |
-
|
4935 |
-
|
4936 |
-
|
4937 |
-
|
4938 |
-
|
4939 |
-
|
4940 |
-
|
4941 |
-
|
4942 |
-
|
4943 |
-
|
4944 |
-
#:
|
4945 |
-
msgid "
|
4946 |
-
msgstr ""
|
4947 |
-
|
4948 |
-
#:
|
4949 |
-
msgid "
|
4950 |
-
msgstr ""
|
4951 |
-
|
4952 |
-
#:
|
4953 |
-
msgid "
|
4954 |
-
msgstr ""
|
4955 |
-
|
4956 |
-
#:
|
4957 |
-
msgid ""
|
4958 |
-
|
4959 |
-
|
4960 |
-
|
4961 |
-
|
4962 |
-
|
4963 |
-
|
4964 |
-
|
4965 |
-
|
4966 |
-
|
4967 |
-
|
4968 |
-
|
4969 |
-
|
4970 |
-
|
4971 |
-
|
4972 |
-
|
4973 |
-
|
4974 |
-
|
4975 |
-
|
4976 |
-
msgstr ""
|
4977 |
-
|
4978 |
-
#:
|
4979 |
-
msgid "
|
4980 |
-
msgstr ""
|
4981 |
-
|
4982 |
-
#:
|
4983 |
-
|
4984 |
-
|
4985 |
-
|
4986 |
-
|
4987 |
-
|
4988 |
-
|
4989 |
-
|
4990 |
-
|
4991 |
-
|
4992 |
-
#:
|
4993 |
-
|
4994 |
-
|
4995 |
-
|
4996 |
-
|
4997 |
-
|
4998 |
-
|
4999 |
-
"
|
5000 |
-
msgstr ""
|
5001 |
-
|
5002 |
-
#:
|
5003 |
-
|
5004 |
-
|
5005 |
-
|
5006 |
-
|
5007 |
-
|
5008 |
-
|
5009 |
-
"
|
5010 |
-
|
5011 |
-
|
5012 |
-
|
5013 |
-
|
5014 |
-
|
5015 |
-
|
5016 |
-
|
5017 |
-
"
|
5018 |
-
msgstr ""
|
5019 |
-
|
5020 |
-
#:
|
5021 |
-
|
5022 |
-
"
|
5023 |
-
|
5024 |
-
|
5025 |
-
|
5026 |
-
|
5027 |
-
|
5028 |
-
|
5029 |
-
|
5030 |
-
|
5031 |
-
#:
|
5032 |
-
msgid "
|
5033 |
-
msgstr ""
|
5034 |
-
|
5035 |
-
#:
|
5036 |
-
|
5037 |
-
|
5038 |
-
|
5039 |
-
|
5040 |
-
#: php:
|
5041 |
-
|
5042 |
-
msgid ""
|
5043 |
-
|
5044 |
-
|
5045 |
-
|
5046 |
-
|
5047 |
-
|
5048 |
-
|
5049 |
-
|
5050 |
-
|
5051 |
-
#:
|
5052 |
-
|
5053 |
-
|
5054 |
-
|
5055 |
-
|
5056 |
-
#:
|
5057 |
-
msgid "
|
5058 |
-
msgstr ""
|
5059 |
-
|
5060 |
-
#:
|
5061 |
-
msgid "
|
5062 |
-
msgstr ""
|
5063 |
-
|
5064 |
-
#:
|
5065 |
-
msgid "
|
5066 |
-
msgstr ""
|
5067 |
-
|
5068 |
-
#:
|
5069 |
-
msgid "
|
5070 |
-
msgstr ""
|
5071 |
-
|
5072 |
-
#:
|
5073 |
-
|
5074 |
-
|
5075 |
-
|
5076 |
-
|
5077 |
-
|
5078 |
-
|
5079 |
-
|
5080 |
-
|
5081 |
-
|
5082 |
-
|
5083 |
-
|
5084 |
-
|
5085 |
-
|
5086 |
-
|
5087 |
-
|
5088 |
-
|
5089 |
-
#:
|
5090 |
-
|
5091 |
-
|
5092 |
-
|
5093 |
-
|
5094 |
-
|
5095 |
-
|
5096 |
-
|
5097 |
-
|
5098 |
-
|
5099 |
-
|
5100 |
-
|
5101 |
-
#:
|
5102 |
-
msgid "
|
5103 |
-
msgstr ""
|
5104 |
-
|
5105 |
-
#:
|
5106 |
-
|
5107 |
-
msgid "
|
5108 |
-
msgstr ""
|
5109 |
-
|
5110 |
-
#:
|
5111 |
-
|
5112 |
-
|
5113 |
-
|
5114 |
-
|
5115 |
-
|
5116 |
-
|
5117 |
-
|
5118 |
-
|
5119 |
-
|
5120 |
-
|
5121 |
-
|
5122 |
-
|
5123 |
-
|
5124 |
-
|
5125 |
-
|
5126 |
-
|
5127 |
-
|
5128 |
-
#:
|
5129 |
-
msgid ""
|
5130 |
-
|
5131 |
-
|
5132 |
-
|
5133 |
-
|
5134 |
-
|
5135 |
-
|
5136 |
-
|
5137 |
-
#:
|
5138 |
-
|
5139 |
-
|
5140 |
-
|
5141 |
-
|
5142 |
-
|
5143 |
-
|
5144 |
-
|
5145 |
-
|
5146 |
-
|
5147 |
-
|
5148 |
-
|
5149 |
-
#:
|
5150 |
-
|
5151 |
-
|
5152 |
-
|
5153 |
-
|
5154 |
-
|
5155 |
-
|
5156 |
-
|
5157 |
-
|
5158 |
-
|
5159 |
-
|
5160 |
-
|
5161 |
-
|
5162 |
-
|
5163 |
-
|
5164 |
-
|
5165 |
-
|
5166 |
-
|
5167 |
-
#:
|
5168 |
-
|
5169 |
-
|
5170 |
-
|
5171 |
-
#:
|
5172 |
-
msgid "
|
5173 |
-
msgstr ""
|
5174 |
-
|
5175 |
-
#:
|
5176 |
-
msgid "
|
5177 |
-
|
5178 |
-
|
5179 |
-
|
5180 |
-
|
5181 |
-
|
5182 |
-
|
5183 |
-
|
5184 |
-
|
5185 |
-
|
5186 |
-
|
5187 |
-
|
5188 |
-
|
5189 |
-
|
5190 |
-
msgid "
|
5191 |
-
msgstr ""
|
5192 |
-
|
5193 |
-
#:
|
5194 |
-
|
5195 |
-
|
5196 |
-
|
5197 |
-
|
5198 |
-
|
5199 |
-
|
5200 |
-
|
5201 |
-
|
5202 |
-
|
5203 |
-
|
5204 |
-
|
5205 |
-
|
5206 |
-
|
5207 |
-
|
5208 |
-
|
5209 |
-
|
5210 |
-
|
5211 |
-
|
5212 |
-
|
5213 |
-
|
5214 |
-
|
5215 |
-
|
5216 |
-
|
5217 |
-
|
5218 |
-
|
5219 |
-
|
5220 |
-
|
5221 |
-
|
5222 |
-
|
5223 |
-
|
5224 |
-
|
5225 |
-
|
5226 |
-
|
5227 |
-
#:
|
5228 |
-
msgid "
|
5229 |
-
msgstr ""
|
5230 |
-
|
5231 |
-
#:
|
5232 |
-
msgid "
|
5233 |
-
msgstr ""
|
5234 |
-
|
5235 |
-
#:
|
5236 |
-
msgid "
|
5237 |
-
|
5238 |
-
|
5239 |
-
|
5240 |
-
|
5241 |
-
|
5242 |
-
"
|
5243 |
-
msgstr ""
|
5244 |
-
|
5245 |
-
#:
|
5246 |
-
|
5247 |
-
|
5248 |
-
|
5249 |
-
|
5250 |
-
|
5251 |
-
|
5252 |
-
|
5253 |
-
|
5254 |
-
|
5255 |
-
|
5256 |
-
|
5257 |
-
|
5258 |
-
|
5259 |
-
|
5260 |
-
|
5261 |
-
|
5262 |
-
|
5263 |
-
|
5264 |
-
|
5265 |
-
|
5266 |
-
|
5267 |
-
|
5268 |
-
|
5269 |
-
|
5270 |
-
|
5271 |
-
|
5272 |
-
|
5273 |
-
|
5274 |
-
|
5275 |
-
|
5276 |
-
|
5277 |
-
|
5278 |
-
|
5279 |
-
|
5280 |
-
|
5281 |
-
|
5282 |
-
|
5283 |
-
|
5284 |
-
|
5285 |
-
|
5286 |
-
|
5287 |
-
|
5288 |
-
|
5289 |
-
|
5290 |
-
|
5291 |
-
|
5292 |
-
|
5293 |
-
|
5294 |
-
|
5295 |
-
|
5296 |
-
|
5297 |
-
|
5298 |
-
|
5299 |
-
|
5300 |
-
|
5301 |
-
|
5302 |
-
|
5303 |
-
|
5304 |
-
|
5305 |
-
|
5306 |
-
|
5307 |
-
|
5308 |
-
|
5309 |
-
|
5310 |
-
|
5311 |
-
|
5312 |
-
|
5313 |
-
|
5314 |
-
|
5315 |
-
|
5316 |
-
|
5317 |
-
|
5318 |
-
|
5319 |
-
|
5320 |
-
|
5321 |
-
|
5322 |
-
|
5323 |
-
|
5324 |
-
|
5325 |
-
|
5326 |
-
|
5327 |
-
|
5328 |
-
|
5329 |
-
|
5330 |
-
|
5331 |
-
|
5332 |
-
|
5333 |
-
|
5334 |
-
|
5335 |
-
|
5336 |
-
|
5337 |
-
|
5338 |
-
|
5339 |
-
|
5340 |
-
|
5341 |
-
|
5342 |
-
|
5343 |
-
|
5344 |
-
|
5345 |
-
|
5346 |
-
|
5347 |
-
|
5348 |
-
|
5349 |
-
|
5350 |
-
|
5351 |
-
|
5352 |
-
|
5353 |
-
|
5354 |
-
|
5355 |
-
|
5356 |
-
|
5357 |
-
|
5358 |
-
|
5359 |
-
|
5360 |
-
|
5361 |
-
|
5362 |
-
|
5363 |
-
|
5364 |
-
|
5365 |
-
|
5366 |
-
|
5367 |
-
|
5368 |
-
|
5369 |
-
#:
|
5370 |
-
|
5371 |
-
|
5372 |
-
|
5373 |
-
|
5374 |
-
|
5375 |
-
|
5376 |
-
|
5377 |
-
#:
|
5378 |
-
|
5379 |
-
|
5380 |
-
|
5381 |
-
|
5382 |
-
|
5383 |
-
|
5384 |
-
|
5385 |
-
|
5386 |
-
|
5387 |
-
|
5388 |
-
|
5389 |
-
|
5390 |
-
|
5391 |
-
|
5392 |
-
|
5393 |
-
|
5394 |
-
|
5395 |
-
|
5396 |
-
|
5397 |
-
|
5398 |
-
|
5399 |
-
|
5400 |
-
|
5401 |
-
|
5402 |
-
|
5403 |
-
|
5404 |
-
|
5405 |
-
|
5406 |
-
|
5407 |
-
|
5408 |
-
|
5409 |
-
|
5410 |
-
|
5411 |
-
|
5412 |
-
|
5413 |
-
|
5414 |
-
|
5415 |
-
|
5416 |
-
"
|
5417 |
-
|
5418 |
-
|
5419 |
-
|
5420 |
-
#:
|
5421 |
-
msgid "
|
5422 |
-
msgstr ""
|
5423 |
-
|
5424 |
-
#:
|
5425 |
-
|
5426 |
-
|
5427 |
-
|
5428 |
-
|
5429 |
-
|
5430 |
-
|
5431 |
-
|
5432 |
-
|
5433 |
-
|
5434 |
-
|
5435 |
-
|
5436 |
-
|
5437 |
-
|
5438 |
-
|
5439 |
-
|
5440 |
-
|
5441 |
-
|
5442 |
-
|
5443 |
-
|
5444 |
-
|
5445 |
-
|
5446 |
-
|
5447 |
-
|
5448 |
-
|
5449 |
-
#:
|
5450 |
-
|
5451 |
-
|
5452 |
-
|
5453 |
-
#:
|
5454 |
-
|
5455 |
-
|
5456 |
-
|
5457 |
-
#:
|
5458 |
-
msgid "
|
5459 |
-
msgstr ""
|
5460 |
-
|
5461 |
-
#:
|
5462 |
-
|
5463 |
-
|
5464 |
-
|
5465 |
-
#:
|
5466 |
-
|
5467 |
-
|
5468 |
-
|
5469 |
-
#:
|
5470 |
-
msgid "
|
5471 |
-
msgstr ""
|
5472 |
-
|
5473 |
-
#:
|
5474 |
-
|
5475 |
-
|
5476 |
-
|
5477 |
-
|
5478 |
-
|
5479 |
-
|
5480 |
-
|
5481 |
-
|
5482 |
-
|
5483 |
-
|
5484 |
-
|
5485 |
-
|
5486 |
-
|
5487 |
-
|
5488 |
-
|
5489 |
-
|
5490 |
-
|
5491 |
-
|
5492 |
-
|
5493 |
-
"
|
5494 |
-
msgstr ""
|
5495 |
-
|
5496 |
-
#:
|
5497 |
-
msgid "
|
5498 |
-
msgstr ""
|
5499 |
-
|
5500 |
-
#:
|
5501 |
-
msgid "
|
5502 |
-
msgstr ""
|
5503 |
-
|
5504 |
-
#:
|
5505 |
-
msgid "
|
5506 |
-
msgstr ""
|
5507 |
-
|
5508 |
-
#:
|
5509 |
-
|
5510 |
-
|
5511 |
-
|
5512 |
-
|
5513 |
-
|
5514 |
-
|
5515 |
-
|
5516 |
-
|
5517 |
-
|
5518 |
-
|
5519 |
-
|
5520 |
-
|
5521 |
-
|
5522 |
-
|
5523 |
-
|
5524 |
-
|
5525 |
-
msgid "
|
5526 |
-
msgstr ""
|
5527 |
-
|
5528 |
-
#:
|
5529 |
-
|
5530 |
-
msgid "
|
5531 |
-
msgstr ""
|
5532 |
-
|
5533 |
-
#:
|
5534 |
-
|
5535 |
-
|
5536 |
-
|
5537 |
-
|
5538 |
-
|
5539 |
-
|
5540 |
-
|
5541 |
-
|
5542 |
-
|
5543 |
-
|
5544 |
-
|
5545 |
-
|
5546 |
-
|
5547 |
-
|
5548 |
-
|
5549 |
-
|
5550 |
-
msgid "
|
5551 |
-
msgstr ""
|
5552 |
-
|
5553 |
-
#:
|
5554 |
-
|
5555 |
-
|
5556 |
-
|
5557 |
-
|
5558 |
-
|
5559 |
-
|
5560 |
-
|
5561 |
-
#:
|
5562 |
-
|
5563 |
-
msgid "
|
5564 |
-
msgstr ""
|
5565 |
-
|
5566 |
-
#:
|
5567 |
-
|
5568 |
-
|
5569 |
-
|
5570 |
-
|
5571 |
-
|
5572 |
-
|
5573 |
-
|
5574 |
-
|
5575 |
-
|
5576 |
-
|
5577 |
-
|
5578 |
-
|
5579 |
-
|
5580 |
-
|
5581 |
-
|
5582 |
-
#:
|
5583 |
-
#: addons/
|
5584 |
-
|
5585 |
-
|
5586 |
-
|
5587 |
-
|
5588 |
-
|
5589 |
-
|
5590 |
-
|
5591 |
-
|
5592 |
-
|
5593 |
-
|
5594 |
-
|
5595 |
-
#: addons/
|
5596 |
-
msgid "
|
5597 |
-
msgstr ""
|
5598 |
-
|
5599 |
-
#:
|
5600 |
-
|
5601 |
-
|
5602 |
-
|
5603 |
-
|
5604 |
-
#: addons/
|
5605 |
-
#: addons/
|
5606 |
-
|
5607 |
-
|
5608 |
-
|
5609 |
-
|
5610 |
-
|
5611 |
-
|
5612 |
-
|
5613 |
-
|
5614 |
-
#: addons/
|
5615 |
-
|
5616 |
-
|
5617 |
-
|
5618 |
-
#: addons/
|
5619 |
-
|
5620 |
-
|
5621 |
-
|
5622 |
-
|
5623 |
-
|
5624 |
-
|
5625 |
-
|
5626 |
-
|
5627 |
-
|
5628 |
-
|
5629 |
-
|
5630 |
-
|
5631 |
-
|
5632 |
-
|
5633 |
-
|
5634 |
-
|
5635 |
-
|
5636 |
-
|
5637 |
-
|
5638 |
-
|
5639 |
-
|
5640 |
-
|
5641 |
-
|
5642 |
-
|
5643 |
-
|
5644 |
-
|
5645 |
-
|
5646 |
-
|
5647 |
-
msgid "
|
5648 |
-
msgstr ""
|
5649 |
-
|
5650 |
-
#:
|
5651 |
-
|
5652 |
-
|
5653 |
-
|
5654 |
-
|
5655 |
-
|
5656 |
-
|
5657 |
-
|
5658 |
-
|
5659 |
-
|
5660 |
-
|
5661 |
-
|
5662 |
-
|
5663 |
-
|
5664 |
-
|
5665 |
-
#:
|
5666 |
-
|
5667 |
-
|
5668 |
-
|
5669 |
-
|
5670 |
-
|
5671 |
-
|
5672 |
-
|
5673 |
-
#:
|
5674 |
-
|
5675 |
-
|
5676 |
-
|
5677 |
-
|
5678 |
-
|
5679 |
-
|
5680 |
-
|
5681 |
-
|
5682 |
-
msgid "
|
5683 |
-
msgstr ""
|
5684 |
-
|
5685 |
-
#:
|
5686 |
-
|
5687 |
-
|
5688 |
-
|
5689 |
-
|
5690 |
-
|
5691 |
-
|
5692 |
-
|
5693 |
-
#:
|
5694 |
-
|
5695 |
-
|
5696 |
-
|
5697 |
-
|
5698 |
-
|
5699 |
-
|
5700 |
-
|
5701 |
-
|
5702 |
-
|
5703 |
-
|
5704 |
-
|
5705 |
-
|
5706 |
-
|
5707 |
-
|
5708 |
-
|
5709 |
-
|
5710 |
-
|
5711 |
-
|
5712 |
-
|
5713 |
-
|
5714 |
-
|
5715 |
-
|
5716 |
-
|
5717 |
-
|
5718 |
-
|
5719 |
-
|
5720 |
-
|
5721 |
-
|
5722 |
-
|
5723 |
-
|
5724 |
-
msgid "
|
5725 |
-
msgstr ""
|
5726 |
-
|
5727 |
-
#:
|
5728 |
-
#:
|
5729 |
-
#: addons/
|
5730 |
-
#:
|
5731 |
-
|
5732 |
-
|
5733 |
-
|
5734 |
-
|
5735 |
-
|
5736 |
-
|
5737 |
-
|
5738 |
-
|
5739 |
-
#:
|
5740 |
-
msgid "
|
5741 |
-
msgstr ""
|
5742 |
-
|
5743 |
-
#:
|
5744 |
-
#:
|
5745 |
-
|
5746 |
-
|
5747 |
-
|
5748 |
-
#:
|
5749 |
-
|
5750 |
-
|
5751 |
-
|
5752 |
-
|
5753 |
-
|
5754 |
-
|
5755 |
-
|
5756 |
-
|
5757 |
-
|
5758 |
-
|
5759 |
-
|
5760 |
-
|
5761 |
-
|
5762 |
-
|
5763 |
-
|
5764 |
-
|
5765 |
-
#:
|
5766 |
-
#:
|
5767 |
-
msgid "
|
5768 |
-
msgstr ""
|
5769 |
-
|
5770 |
-
#:
|
5771 |
-
#:
|
5772 |
-
|
5773 |
-
|
5774 |
-
|
5775 |
-
|
5776 |
-
#:
|
5777 |
-
#:
|
5778 |
-
|
5779 |
-
|
5780 |
-
|
5781 |
-
|
5782 |
-
|
5783 |
-
|
5784 |
-
|
5785 |
-
|
5786 |
-
|
5787 |
-
|
5788 |
-
|
5789 |
-
|
5790 |
-
|
5791 |
-
|
5792 |
-
|
5793 |
-
|
5794 |
-
|
5795 |
-
|
5796 |
-
|
5797 |
-
|
5798 |
-
|
5799 |
-
|
5800 |
-
|
5801 |
-
|
5802 |
-
|
5803 |
-
|
5804 |
-
|
5805 |
-
|
5806 |
-
|
5807 |
-
|
5808 |
-
|
5809 |
-
|
5810 |
-
#:
|
5811 |
-
|
5812 |
-
|
5813 |
-
|
5814 |
-
|
5815 |
-
|
5816 |
-
|
5817 |
-
|
5818 |
-
|
5819 |
-
|
5820 |
-
|
5821 |
-
|
5822 |
-
|
5823 |
-
|
5824 |
-
|
5825 |
-
|
5826 |
-
|
5827 |
-
|
5828 |
-
|
5829 |
-
|
5830 |
-
|
5831 |
-
|
5832 |
-
|
5833 |
-
|
5834 |
-
|
5835 |
-
|
5836 |
-
|
5837 |
-
|
5838 |
-
|
5839 |
-
|
5840 |
-
|
5841 |
-
|
5842 |
-
|
5843 |
-
|
5844 |
-
|
5845 |
-
|
5846 |
-
|
5847 |
-
|
5848 |
-
|
5849 |
-
|
5850 |
-
|
5851 |
-
|
5852 |
-
|
5853 |
-
|
5854 |
-
|
5855 |
-
|
5856 |
-
|
5857 |
-
|
5858 |
-
|
5859 |
-
|
5860 |
-
|
5861 |
-
|
5862 |
-
|
5863 |
-
|
5864 |
-
|
5865 |
-
|
5866 |
-
|
5867 |
-
|
5868 |
-
#:
|
5869 |
-
|
5870 |
-
|
5871 |
-
|
5872 |
-
|
5873 |
-
#:
|
5874 |
-
msgid "
|
5875 |
-
msgstr ""
|
5876 |
-
|
5877 |
-
#:
|
5878 |
-
msgid "
|
5879 |
-
msgstr ""
|
5880 |
-
|
5881 |
-
#:
|
5882 |
-
|
5883 |
-
|
5884 |
-
|
5885 |
-
|
5886 |
-
|
5887 |
-
#:
|
5888 |
-
|
5889 |
-
|
5890 |
-
|
5891 |
-
|
5892 |
-
|
5893 |
-
|
5894 |
-
|
5895 |
-
|
5896 |
-
|
5897 |
-
|
5898 |
-
|
5899 |
-
|
5900 |
-
|
5901 |
-
|
5902 |
-
|
5903 |
-
|
5904 |
-
|
5905 |
-
|
5906 |
-
|
5907 |
-
|
5908 |
-
|
5909 |
-
|
5910 |
-
|
5911 |
-
|
5912 |
-
|
5913 |
-
|
5914 |
-
|
5915 |
-
|
5916 |
-
|
5917 |
-
|
5918 |
-
|
5919 |
-
|
5920 |
-
|
5921 |
-
|
5922 |
-
|
5923 |
-
#:
|
5924 |
-
|
5925 |
-
|
5926 |
-
|
5927 |
-
#:
|
5928 |
-
msgid "
|
5929 |
-
msgstr ""
|
5930 |
-
|
5931 |
-
#:
|
5932 |
-
msgid "
|
5933 |
-
msgstr ""
|
5934 |
-
|
5935 |
-
#:
|
5936 |
-
|
5937 |
-
|
5938 |
-
|
5939 |
-
|
5940 |
-
|
5941 |
-
|
5942 |
-
|
5943 |
-
|
5944 |
-
|
5945 |
-
|
5946 |
-
|
5947 |
-
|
5948 |
-
|
5949 |
-
|
5950 |
-
|
5951 |
-
|
5952 |
-
|
5953 |
-
|
5954 |
-
|
5955 |
-
|
5956 |
-
|
5957 |
-
|
5958 |
-
|
5959 |
-
|
5960 |
-
|
5961 |
-
|
5962 |
-
|
5963 |
-
|
5964 |
-
|
5965 |
-
|
5966 |
-
|
5967 |
-
#:
|
5968 |
-
msgid "
|
5969 |
-
msgstr ""
|
5970 |
-
|
5971 |
-
#:
|
5972 |
-
msgid "
|
5973 |
-
msgstr ""
|
5974 |
-
|
5975 |
-
#:
|
5976 |
-
|
5977 |
-
|
5978 |
-
|
5979 |
-
|
5980 |
-
#:
|
5981 |
-
|
5982 |
-
|
5983 |
-
|
5984 |
-
#:
|
5985 |
-
msgid "
|
5986 |
-
msgstr ""
|
5987 |
-
|
5988 |
-
#:
|
5989 |
-
msgid "
|
5990 |
-
msgstr ""
|
5991 |
-
|
5992 |
-
#:
|
5993 |
-
msgid "
|
5994 |
-
msgstr ""
|
5995 |
-
|
5996 |
-
#:
|
5997 |
-
|
5998 |
-
|
5999 |
-
|
6000 |
-
|
6001 |
-
|
6002 |
-
|
6003 |
-
|
6004 |
-
|
6005 |
-
#:
|
6006 |
-
|
6007 |
-
|
6008 |
-
|
6009 |
-
|
6010 |
-
|
6011 |
-
|
6012 |
-
|
6013 |
-
#:
|
6014 |
-
|
6015 |
-
|
6016 |
-
|
6017 |
-
|
6018 |
-
|
6019 |
-
|
6020 |
-
|
6021 |
-
#:
|
6022 |
-
msgid "
|
6023 |
-
msgstr ""
|
6024 |
-
|
6025 |
-
#:
|
6026 |
-
|
6027 |
-
|
6028 |
-
|
6029 |
-
|
6030 |
-
|
6031 |
-
|
6032 |
-
|
6033 |
-
|
6034 |
-
|
6035 |
-
#:
|
6036 |
-
|
6037 |
-
|
6038 |
-
|
6039 |
-
|
6040 |
-
|
6041 |
-
|
6042 |
-
|
6043 |
-
|
6044 |
-
|
6045 |
-
#:
|
6046 |
-
|
6047 |
-
|
6048 |
-
|
6049 |
-
|
6050 |
-
|
6051 |
-
|
6052 |
-
|
6053 |
-
|
6054 |
-
|
6055 |
-
|
6056 |
-
|
6057 |
-
|
6058 |
-
|
6059 |
-
|
6060 |
-
|
6061 |
-
|
6062 |
-
|
6063 |
-
|
6064 |
-
#:
|
6065 |
-
|
6066 |
-
|
6067 |
-
|
6068 |
-
|
6069 |
-
|
6070 |
-
|
6071 |
-
|
6072 |
-
#:
|
6073 |
-
msgid "
|
6074 |
-
msgstr ""
|
6075 |
-
|
6076 |
-
#:
|
6077 |
-
msgid "
|
6078 |
-
msgstr ""
|
6079 |
-
|
6080 |
-
#:
|
6081 |
-
msgid ""
|
6082 |
-
|
6083 |
-
|
6084 |
-
|
6085 |
-
|
6086 |
-
|
6087 |
-
|
6088 |
-
|
6089 |
-
|
6090 |
-
|
6091 |
-
|
6092 |
-
|
6093 |
-
"
|
6094 |
-
msgstr ""
|
6095 |
-
|
6096 |
-
#:
|
6097 |
-
msgid "
|
6098 |
-
msgstr ""
|
6099 |
-
|
6100 |
-
#:
|
6101 |
-
msgid "
|
6102 |
-
msgstr ""
|
6103 |
-
|
6104 |
-
#:
|
6105 |
-
msgid "
|
6106 |
-
msgstr ""
|
6107 |
-
|
6108 |
-
#:
|
6109 |
-
msgid "
|
6110 |
-
msgstr ""
|
6111 |
-
|
6112 |
-
#:
|
6113 |
-
|
6114 |
-
|
6115 |
-
|
6116 |
-
|
6117 |
-
|
6118 |
-
|
6119 |
-
|
6120 |
-
|
6121 |
-
msgstr ""
|
6122 |
-
|
6123 |
-
#:
|
6124 |
-
msgid "
|
6125 |
-
msgstr ""
|
6126 |
-
|
6127 |
-
#:
|
6128 |
-
msgid "
|
6129 |
-
msgstr ""
|
6130 |
-
|
6131 |
-
#:
|
6132 |
-
msgid "
|
6133 |
-
msgstr ""
|
6134 |
-
|
6135 |
-
#:
|
6136 |
-
msgid "
|
6137 |
-
msgstr ""
|
6138 |
-
|
6139 |
-
#:
|
6140 |
-
msgid "
|
6141 |
-
msgstr ""
|
6142 |
-
|
6143 |
-
#:
|
6144 |
-
|
6145 |
-
|
6146 |
-
|
6147 |
-
|
6148 |
-
|
6149 |
-
|
6150 |
-
|
6151 |
-
|
6152 |
-
|
6153 |
-
|
6154 |
-
|
6155 |
-
|
6156 |
-
msgid "
|
6157 |
-
msgstr ""
|
6158 |
-
|
6159 |
-
#:
|
6160 |
-
msgid "
|
6161 |
-
msgstr ""
|
6162 |
-
|
6163 |
-
#:
|
6164 |
-
|
6165 |
-
|
6166 |
-
|
6167 |
-
|
6168 |
-
|
6169 |
-
|
6170 |
-
|
6171 |
-
|
6172 |
-
|
6173 |
-
|
6174 |
-
|
6175 |
-
|
6176 |
-
|
6177 |
-
|
6178 |
-
|
6179 |
-
|
6180 |
-
|
6181 |
-
|
6182 |
-
|
6183 |
-
|
6184 |
-
|
6185 |
-
|
6186 |
-
"
|
6187 |
-
|
6188 |
-
|
6189 |
-
|
6190 |
-
|
6191 |
-
|
6192 |
-
|
6193 |
-
|
6194 |
-
|
6195 |
-
|
6196 |
-
|
6197 |
-
|
6198 |
-
|
6199 |
-
|
6200 |
-
|
6201 |
-
"
|
6202 |
-
"
|
6203 |
-
msgstr ""
|
6204 |
-
|
6205 |
-
#:
|
6206 |
-
msgid ""
|
6207 |
-
|
6208 |
-
|
6209 |
-
|
6210 |
-
|
6211 |
-
|
6212 |
-
|
6213 |
-
|
6214 |
-
|
6215 |
-
|
6216 |
-
|
6217 |
-
|
6218 |
-
|
6219 |
-
|
6220 |
-
|
6221 |
-
|
6222 |
-
|
6223 |
-
|
6224 |
-
|
6225 |
-
|
6226 |
-
|
6227 |
-
|
6228 |
-
|
6229 |
-
|
6230 |
-
|
6231 |
-
|
6232 |
-
|
6233 |
-
|
6234 |
-
|
6235 |
-
|
6236 |
-
|
6237 |
-
|
6238 |
-
|
6239 |
-
|
6240 |
-
|
6241 |
-
|
6242 |
-
|
6243 |
-
|
6244 |
-
|
6245 |
-
|
6246 |
-
|
6247 |
-
msgid "
|
6248 |
-
|
6249 |
-
|
6250 |
-
|
6251 |
-
|
6252 |
-
|
6253 |
-
|
6254 |
-
|
6255 |
-
|
6256 |
-
|
6257 |
-
|
6258 |
-
|
6259 |
-
msgid "
|
6260 |
-
msgstr ""
|
6261 |
-
|
6262 |
-
#:
|
6263 |
-
|
6264 |
-
|
6265 |
-
|
6266 |
-
msgstr ""
|
6267 |
-
|
6268 |
-
|
6269 |
-
|
6270 |
-
|
6271 |
-
|
6272 |
-
|
6273 |
-
|
6274 |
-
msgid "
|
6275 |
-
msgstr ""
|
6276 |
-
|
6277 |
-
|
6278 |
-
|
6279 |
-
|
6280 |
-
|
6281 |
-
|
6282 |
-
|
6283 |
-
|
6284 |
-
|
6285 |
-
|
6286 |
-
msgid "
|
6287 |
-
msgstr ""
|
6288 |
-
|
6289 |
-
#: ../addons/sell-content/includes/mycred-sell-functions.php:791
|
6290 |
-
#, php-format
|
6291 |
-
msgctxt "e.g. Only \"Posts\" without \"Tags\""
|
6292 |
-
msgid "Only %s without %s"
|
6293 |
-
msgstr ""
|
6294 |
-
|
6295 |
-
#: ../addons/sell-content/includes/mycred-sell-shortcodes.php:187 ../addons/buy-
|
6296 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:669 ../addons/buy-
|
6297 |
-
#: creds/modules/buycred-module-pending.php:267 ../addons/buy-
|
6298 |
-
#: creds/modules/buycred-module-pending.php:614 ../addons/buy-
|
6299 |
-
#: creds/modules/buycred-module-pending.php:727 ../addons/buy-creds/gateways/bank-
|
6300 |
-
#: transfer.php:112
|
6301 |
-
msgid "Cost"
|
6302 |
-
msgstr ""
|
6303 |
-
|
6304 |
-
#: ../addons/sell-content/includes/mycred-sell-shortcodes.php:233
|
6305 |
-
#, php-format
|
6306 |
-
msgctxt "e.g. 10 hours"
|
6307 |
-
msgid "Purchase expires in %s"
|
6308 |
-
msgstr ""
|
6309 |
-
|
6310 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:156
|
6311 |
-
msgid "Select currency"
|
6312 |
-
msgstr ""
|
6313 |
-
|
6314 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:218
|
6315 |
-
#, php-format
|
6316 |
-
msgctxt "%s is replaced with the point amount and name."
|
6317 |
-
msgid "Received new request to purchase %s."
|
6318 |
-
msgstr ""
|
6319 |
-
|
6320 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:421 ..
|
6321 |
-
#: addons/buy-creds/gateways/bank-transfer.php:96
|
6322 |
-
msgid "Test Payment"
|
6323 |
-
msgstr ""
|
6324 |
-
|
6325 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:552
|
6326 |
-
msgid "First Name"
|
6327 |
-
msgstr ""
|
6328 |
-
|
6329 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:558
|
6330 |
-
msgid "Last Name"
|
6331 |
-
msgstr ""
|
6332 |
-
|
6333 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:566
|
6334 |
-
msgid "Address Line 1"
|
6335 |
-
msgstr ""
|
6336 |
-
|
6337 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:574
|
6338 |
-
msgid "Address Line 2"
|
6339 |
-
msgstr ""
|
6340 |
-
|
6341 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
|
6342 |
-
msgid "City"
|
6343 |
-
msgstr ""
|
6344 |
-
|
6345 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:588
|
6346 |
-
msgid "Zip"
|
6347 |
-
msgstr ""
|
6348 |
-
|
6349 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:596
|
6350 |
-
msgid "State"
|
6351 |
-
msgstr ""
|
6352 |
-
|
6353 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:604
|
6354 |
-
msgid "Country"
|
6355 |
-
msgstr ""
|
6356 |
-
|
6357 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:609
|
6358 |
-
msgid "Choose Country"
|
6359 |
-
msgstr ""
|
6360 |
-
|
6361 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:661 ..
|
6362 |
-
#: addons/buy-creds/gateways/bank-transfer.php:118
|
6363 |
-
#, php-format
|
6364 |
-
msgid "%s Purchase"
|
6365 |
-
msgstr ""
|
6366 |
-
|
6367 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:667
|
6368 |
-
msgctxt "buyCRED order description"
|
6369 |
-
msgid "Item"
|
6370 |
-
msgstr ""
|
6371 |
-
|
6372 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:762
|
6373 |
-
#, php-format
|
6374 |
-
msgid "Continue to %s"
|
6375 |
-
msgstr ""
|
6376 |
-
|
6377 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:763 ..
|
6378 |
-
#: addons/buy-creds/gateways/bitpay.php:225
|
6379 |
-
msgid "Click here if you are not automatically redirected"
|
6380 |
-
msgstr ""
|
6381 |
-
|
6382 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1477
|
6383 |
-
msgid "January"
|
6384 |
-
msgstr ""
|
6385 |
-
|
6386 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1478
|
6387 |
-
msgid "February"
|
6388 |
-
msgstr ""
|
6389 |
-
|
6390 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1479
|
6391 |
-
msgid "March"
|
6392 |
-
msgstr ""
|
6393 |
-
|
6394 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1480
|
6395 |
-
msgid "April"
|
6396 |
-
msgstr ""
|
6397 |
-
|
6398 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1481
|
6399 |
-
msgid "May"
|
6400 |
-
msgstr ""
|
6401 |
-
|
6402 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1482
|
6403 |
-
msgid "June"
|
6404 |
-
msgstr ""
|
6405 |
-
|
6406 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1483
|
6407 |
-
msgid "July"
|
6408 |
-
msgstr ""
|
6409 |
-
|
6410 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1484
|
6411 |
-
msgid "August"
|
6412 |
-
msgstr ""
|
6413 |
-
|
6414 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1485
|
6415 |
-
msgid "September"
|
6416 |
-
msgstr ""
|
6417 |
-
|
6418 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1486
|
6419 |
-
msgid "October"
|
6420 |
-
msgstr ""
|
6421 |
-
|
6422 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1487
|
6423 |
-
msgid "November"
|
6424 |
-
msgstr ""
|
6425 |
-
|
6426 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1488
|
6427 |
-
msgid "December"
|
6428 |
-
msgstr ""
|
6429 |
-
|
6430 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:135
|
6431 |
-
msgctxt "Post Type General Name"
|
6432 |
-
msgid "Pending Payments"
|
6433 |
-
msgstr ""
|
6434 |
-
|
6435 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:136
|
6436 |
-
msgctxt "Post Type Singular Name"
|
6437 |
-
msgid "Pending Payment"
|
6438 |
-
msgstr ""
|
6439 |
-
|
6440 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:137 ../addons/buy-
|
6441 |
-
#: creds/modules/buycred-module-pending.php:139 ../addons/buy-
|
6442 |
-
#: creds/modules/buycred-module-pending.php:229 ../addons/buy-
|
6443 |
-
#: creds/modules/buycred-module-pending.php:230
|
6444 |
-
msgid "Pending Payments"
|
6445 |
-
msgstr ""
|
6446 |
-
|
6447 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:143
|
6448 |
-
msgid "Edit Pending Payment"
|
6449 |
-
msgstr ""
|
6450 |
-
|
6451 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:146 ../addons/buy-
|
6452 |
-
#: creds/modules/buycred-module-pending.php:147
|
6453 |
-
msgid "Not found in Trash"
|
6454 |
-
msgstr ""
|
6455 |
-
|
6456 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:177 ../addons/buy-
|
6457 |
-
#: creds/modules/buycred-module-pending.php:178 ../addons/buy-
|
6458 |
-
#: creds/modules/buycred-module-pending.php:179 ../addons/buy-
|
6459 |
-
#: creds/modules/buycred-module-pending.php:180 ../addons/buy-
|
6460 |
-
#: creds/modules/buycred-module-pending.php:181 ../addons/buy-
|
6461 |
-
#: creds/modules/buycred-module-pending.php:182 ../addons/buy-
|
6462 |
-
#: creds/modules/buycred-module-pending.php:183 ../addons/buy-
|
6463 |
-
#: creds/modules/buycred-module-pending.php:184 ../addons/buy-
|
6464 |
-
#: creds/modules/buycred-module-pending.php:185
|
6465 |
-
msgid "Payment Updated."
|
6466 |
-
msgstr ""
|
6467 |
-
|
6468 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:213
|
6469 |
-
msgid "Pending payment successfully credited to account."
|
6470 |
-
msgstr ""
|
6471 |
-
|
6472 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:215
|
6473 |
-
msgid "Failed to credit the pending payment to account."
|
6474 |
-
msgstr ""
|
6475 |
-
|
6476 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:263 ../addons/buy-
|
6477 |
-
#: creds/modules/buycred-module-pending.php:724 ../addons/buy-
|
6478 |
-
#: creds/modules/buycred-module-core.php:733 ../addons/buy-creds/gateways/bank-
|
6479 |
-
#: transfer.php:113
|
6480 |
-
msgid "Transaction ID"
|
6481 |
-
msgstr ""
|
6482 |
-
|
6483 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:265 ../addons/buy-
|
6484 |
-
#: creds/modules/buycred-module-core.php:729
|
6485 |
-
msgid "Buyer"
|
6486 |
-
msgstr ""
|
6487 |
-
|
6488 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:268 ../addons/buy-
|
6489 |
-
#: creds/modules/buycred-module-pending.php:589 ../addons/buy-
|
6490 |
-
#: creds/modules/buycred-module-pending.php:725 ../addons/buy-
|
6491 |
-
#: creds/modules/buycred-module-core.php:728 ../addons/buy-creds/includes/buycred-
|
6492 |
-
#: functions.php:118
|
6493 |
-
msgid "Gateway"
|
6494 |
-
msgstr ""
|
6495 |
-
|
6496 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:269
|
6497 |
-
msgid "Type"
|
6498 |
-
msgstr ""
|
6499 |
-
|
6500 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:366 ../addons/buy-
|
6501 |
-
#: creds/modules/buycred-module-pending.php:471
|
6502 |
-
msgid "Pay Out"
|
6503 |
-
msgstr ""
|
6504 |
-
|
6505 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:434
|
6506 |
-
msgid "Pending Payment"
|
6507 |
-
msgstr ""
|
6508 |
-
|
6509 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:472
|
6510 |
-
msgid "Trash"
|
6511 |
-
msgstr ""
|
6512 |
-
|
6513 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:536
|
6514 |
-
msgid "Payer"
|
6515 |
-
msgstr ""
|
6516 |
-
|
6517 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:620 ../addons/buy-
|
6518 |
-
#: creds/gateways/bank-transfer.php:180 ../addons/buy-creds/gateways/bitpay.php:
|
6519 |
-
#: 251 ../addons/buy-creds/gateways/paypal-standard.php:279 ../addons/buy-
|
6520 |
-
#: creds/gateways/skrill.php:294
|
6521 |
-
msgid "Currency"
|
6522 |
-
msgstr ""
|
6523 |
-
|
6524 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:645
|
6525 |
-
msgid "Pending request created."
|
6526 |
-
msgstr ""
|
6527 |
-
|
6528 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:693
|
6529 |
-
#, php-format
|
6530 |
-
msgid "Pending payment updated by %s"
|
6531 |
-
msgstr ""
|
6532 |
-
|
6533 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:791
|
6534 |
-
msgid "No pending payments found"
|
6535 |
-
msgstr ""
|
6536 |
-
|
6537 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:28 ../addons/buy-
|
6538 |
-
#: creds/modules/buycred-module-core.php:29 ../addons/buy-creds/modules/buycred-
|
6539 |
-
#: module-core.php:30
|
6540 |
-
msgid "Payment Gateways"
|
6541 |
-
msgstr ""
|
6542 |
-
|
6543 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:133
|
6544 |
-
msgid "Bank Transfer"
|
6545 |
-
msgstr ""
|
6546 |
-
|
6547 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:273
|
6548 |
-
msgid "Please login to purchase %_plural%"
|
6549 |
-
msgstr ""
|
6550 |
-
|
6551 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:288
|
6552 |
-
#, php-format
|
6553 |
-
msgid "Gift purchase from %display_name%."
|
6554 |
-
msgstr ""
|
6555 |
-
|
6556 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:307
|
6557 |
-
#, php-format
|
6558 |
-
msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
|
6559 |
-
msgstr ""
|
6560 |
-
|
6561 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:315
|
6562 |
-
msgid "Select the point types that users can buy. You must select at least one!"
|
6563 |
-
msgstr ""
|
6564 |
-
|
6565 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:326
|
6566 |
-
msgid "Login Template"
|
6567 |
-
msgstr ""
|
6568 |
-
|
6569 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:330
|
6570 |
-
msgid "Content to show when a user is not logged in."
|
6571 |
-
msgstr ""
|
6572 |
-
|
6573 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:340
|
6574 |
-
msgid "Thank You Page"
|
6575 |
-
msgstr ""
|
6576 |
-
|
6577 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:343 ../addons/buy-
|
6578 |
-
#: creds/modules/buycred-module-core.php:366
|
6579 |
-
msgid "Custom URL"
|
6580 |
-
msgstr ""
|
6581 |
-
|
6582 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:348 ../addons/buy-
|
6583 |
-
#: creds/modules/buycred-module-core.php:371
|
6584 |
-
msgid "Page"
|
6585 |
-
msgstr ""
|
6586 |
-
|
6587 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:363
|
6588 |
-
msgid "Cancellation Page"
|
6589 |
-
msgstr ""
|
6590 |
-
|
6591 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:386 ../addons/buy-
|
6592 |
-
#: creds/modules/buycred-module-core.php:489 ../addons/buy-creds/modules/buycred-
|
6593 |
-
#: module-core.php:740
|
6594 |
-
msgid "Purchase Log"
|
6595 |
-
msgstr ""
|
6596 |
-
|
6597 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:388
|
6598 |
-
#, php-format
|
6599 |
-
msgid "Show seperate log for %_plural% purchases."
|
6600 |
-
msgstr ""
|
6601 |
-
|
6602 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:390
|
6603 |
-
msgid "Gifting"
|
6604 |
-
msgstr ""
|
6605 |
-
|
6606 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:392
|
6607 |
-
#, php-format
|
6608 |
-
msgid "Allow users to buy %_plural% for other users."
|
6609 |
-
msgstr ""
|
6610 |
-
|
6611 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:393
|
6612 |
-
#, php-format
|
6613 |
-
msgid "Allow users to buy %_plural% for content authors."
|
6614 |
-
msgstr ""
|
6615 |
-
|
6616 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:488
|
6617 |
-
msgid "buyCRED Purchase Log"
|
6618 |
-
msgstr ""
|
6619 |
-
|
6620 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:533
|
6621 |
-
#, php-format
|
6622 |
-
msgid "%s Payment Gateways"
|
6623 |
-
msgstr ""
|
6624 |
-
|
6625 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:568
|
6626 |
-
msgid "Sandbox Mode"
|
6627 |
-
msgstr ""
|
6628 |
-
|
6629 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:571
|
6630 |
-
msgid "Enable for test purchases."
|
6631 |
-
msgstr ""
|
6632 |
-
|
6633 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:591
|
6634 |
-
msgid "More Gateways"
|
6635 |
-
msgstr ""
|
6636 |
-
|
6637 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:732
|
6638 |
-
msgid "Payed"
|
6639 |
-
msgstr ""
|
6640 |
-
|
6641 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:940
|
6642 |
-
msgid "No purchases found"
|
6643 |
-
msgstr ""
|
6644 |
-
|
6645 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:1029 ../addons/buy-
|
6646 |
-
#: creds/modules/buycred-module-core.php:1043
|
6647 |
-
msgid "buyCRED Exchange Rates"
|
6648 |
-
msgstr ""
|
6649 |
-
|
6650 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:1059
|
6651 |
-
msgid "Leave empty to use the default value."
|
6652 |
-
msgstr ""
|
6653 |
-
|
6654 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:1266
|
6655 |
-
msgid "Buy Now"
|
6656 |
-
msgstr ""
|
6657 |
-
|
6658 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:1428
|
6659 |
-
msgid "Pay Using"
|
6660 |
-
msgstr ""
|
6661 |
-
|
6662 |
-
#: ../addons/buy-creds/gateways/bank-transfer.php:59 ../addons/buy-
|
6663 |
-
#: creds/gateways/bitpay.php:163 ../addons/buy-creds/gateways/netbilling.php:144 .
|
6664 |
-
#: ./addons/buy-creds/gateways/zombaio.php:219 ../addons/buy-
|
6665 |
-
#: creds/gateways/paypal-standard.php:207 ../addons/buy-creds/gateways/skrill.php:
|
6666 |
-
#: 186
|
6667 |
-
msgid "Please setup this gateway before attempting to make a purchase!"
|
6668 |
-
msgstr ""
|
6669 |
-
|
6670 |
-
#: ../addons/buy-creds/gateways/bank-transfer.php:139
|
6671 |
-
msgid "Continue"
|
6672 |
-
msgstr ""
|
6673 |
-
|
6674 |
-
#: ../addons/buy-creds/gateways/bank-transfer.php:167
|
6675 |
-
msgid "Checkout Logo"
|
6676 |
-
msgstr ""
|
6677 |
-
|
6678 |
-
#: ../addons/buy-creds/gateways/bank-transfer.php:173
|
6679 |
-
msgid "Bank Account Information"
|
6680 |
-
msgstr ""
|
6681 |
-
|
6682 |
-
#: ../addons/buy-creds/gateways/bank-transfer.php:177
|
6683 |
-
msgid "Bank transfer details to show the user on the checkout page."
|
6684 |
-
msgstr ""
|
6685 |
-
|
6686 |
-
#: ../addons/buy-creds/gateways/bank-transfer.php:186 ../addons/buy-
|
6687 |
-
#: creds/gateways/bitpay.php:265 ../addons/buy-creds/gateways/netbilling.php:234 .
|
6688 |
-
#: ./addons/buy-creds/gateways/paypal-standard.php:298 ../addons/buy-
|
6689 |
-
#: creds/gateways/skrill.php:320
|
6690 |
-
msgid "Exchange Rates"
|
6691 |
-
msgstr ""
|
6692 |
-
|
6693 |
-
#: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
|
6694 |
-
#: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
|
6695 |
-
#: php:145 ../addons/buy-creds/gateways/skrill.php:124
|
6696 |
-
#, php-format
|
6697 |
-
msgid "Price mismatch. Expected: %s Received: %s"
|
6698 |
-
msgstr ""
|
6699 |
-
|
6700 |
-
#: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
|
6701 |
-
#: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
|
6702 |
-
#, php-format
|
6703 |
-
msgid "Currency mismatch. Expected: %s Received: %s"
|
6704 |
-
msgstr ""
|
6705 |
-
|
6706 |
-
#: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
|
6707 |
-
#: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
|
6708 |
-
#: php:157 ../addons/buy-creds/gateways/skrill.php:136
|
6709 |
-
#, php-format
|
6710 |
-
msgid "Payment not completed. Received: %s"
|
6711 |
-
msgstr ""
|
6712 |
-
|
6713 |
-
#: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
|
6714 |
-
#: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/zombaio.php:189
|
6715 |
-
#: ../addons/buy-creds/gateways/paypal-standard.php:168 ../addons/buy-
|
6716 |
-
#: creds/gateways/skrill.php:147
|
6717 |
-
msgid "Failed to credit users account."
|
6718 |
-
msgstr ""
|
6719 |
-
|
6720 |
-
#: ../addons/buy-creds/gateways/bitpay.php:208 ../addons/buy-
|
6721 |
-
#: creds/gateways/bitpay.php:219 ../addons/buy-creds/gateways/netbilling.php:190 .
|
6722 |
-
#: ./addons/buy-creds/gateways/zombaio.php:249 ../addons/buy-
|
6723 |
-
#: creds/gateways/paypal-standard.php:261 ../addons/buy-creds/gateways/skrill.php:
|
6724 |
-
#: 275
|
6725 |
-
msgid "Processing payment …"
|
6726 |
-
msgstr ""
|
6727 |
-
|
6728 |
-
#: ../addons/buy-creds/gateways/bitpay.php:211
|
6729 |
-
msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
|
6730 |
-
msgstr ""
|
6731 |
-
|
6732 |
-
#: ../addons/buy-creds/gateways/bitpay.php:212
|
6733 |
-
msgid "Bitpay returned the following error message:"
|
6734 |
-
msgstr ""
|
6735 |
-
|
6736 |
-
#: ../addons/buy-creds/gateways/bitpay.php:254
|
6737 |
-
msgid "Currency Code"
|
6738 |
-
msgstr ""
|
6739 |
-
|
6740 |
-
#: ../addons/buy-creds/gateways/bitpay.php:258 ../addons/buy-
|
6741 |
-
#: creds/gateways/netbilling.php:227 ../addons/buy-creds/gateways/paypal-standard.
|
6742 |
-
#: php:291 ../addons/buy-creds/gateways/skrill.php:313
|
6743 |
-
msgid "Item Name"
|
6744 |
-
msgstr ""
|
6745 |
-
|
6746 |
-
#: ../addons/buy-creds/gateways/bitpay.php:262 ../addons/buy-
|
6747 |
-
#: creds/gateways/netbilling.php:231 ../addons/buy-creds/gateways/paypal-standard.
|
6748 |
-
#: php:295 ../addons/buy-creds/gateways/skrill.php:317
|
6749 |
-
msgid "Description of the item being purchased by the user."
|
6750 |
-
msgstr ""
|
6751 |
-
|
6752 |
-
#: ../addons/buy-creds/gateways/bitpay.php:269
|
6753 |
-
msgid "Transaction Speed"
|
6754 |
-
msgstr ""
|
6755 |
-
|
6756 |
-
#: ../addons/buy-creds/gateways/bitpay.php:276
|
6757 |
-
msgid "High"
|
6758 |
-
msgstr ""
|
6759 |
-
|
6760 |
-
#: ../addons/buy-creds/gateways/bitpay.php:277
|
6761 |
-
msgid "Medium"
|
6762 |
-
msgstr ""
|
6763 |
-
|
6764 |
-
#: ../addons/buy-creds/gateways/bitpay.php:278
|
6765 |
-
msgid "Low"
|
6766 |
-
msgstr ""
|
6767 |
-
|
6768 |
-
#: ../addons/buy-creds/gateways/bitpay.php:291
|
6769 |
-
msgid "Full Notifications"
|
6770 |
-
msgstr ""
|
6771 |
-
|
6772 |
-
#: ../addons/buy-creds/gateways/netbilling.php:208
|
6773 |
-
msgid "Account ID"
|
6774 |
-
msgstr ""
|
6775 |
-
|
6776 |
-
#: ../addons/buy-creds/gateways/netbilling.php:214
|
6777 |
-
msgid "Site Tag"
|
6778 |
-
msgstr ""
|
6779 |
-
|
6780 |
-
#: ../addons/buy-creds/gateways/netbilling.php:220
|
6781 |
-
msgid "Order Integrity Key"
|
6782 |
-
msgstr ""
|
6783 |
-
|
6784 |
-
#: ../addons/buy-creds/gateways/netbilling.php:224
|
6785 |
-
msgid "Found under Step 12 on the Fraud Defense page."
|
6786 |
-
msgstr ""
|
6787 |
-
|
6788 |
-
#: ../addons/buy-creds/gateways/netbilling.php:238
|
6789 |
-
msgid "Postback CGI URL"
|
6790 |
-
msgstr ""
|
6791 |
-
|
6792 |
-
#: ../addons/buy-creds/gateways/netbilling.php:242
|
6793 |
-
msgid ""
|
6794 |
-
"For this gateway to work, you must login to your NETbilling account and edit "
|
6795 |
-
"your site. Under \"Default payment form settings\" make sure the Postback CGI "
|
6796 |
-
"URL is set to the above address and \"Return method\" is set to POST."
|
6797 |
-
msgstr ""
|
6798 |
-
|
6799 |
-
#: ../addons/buy-creds/gateways/netbilling.php:290
|
6800 |
-
msgid "Incorrect Credit Card number"
|
6801 |
-
msgstr ""
|
6802 |
-
|
6803 |
-
#: ../addons/buy-creds/gateways/netbilling.php:296
|
6804 |
-
msgid "The credit card entered is past its expiration date."
|
6805 |
-
msgstr ""
|
6806 |
-
|
6807 |
-
#: ../addons/buy-creds/gateways/netbilling.php:299
|
6808 |
-
msgid "The CVV2 number entered is not valid."
|
6809 |
-
msgstr ""
|
6810 |
-
|
6811 |
-
#: ../addons/buy-creds/gateways/netbilling.php:306
|
6812 |
-
msgid "The bank routing number entered is not valid."
|
6813 |
-
msgstr ""
|
6814 |
-
|
6815 |
-
#: ../addons/buy-creds/gateways/netbilling.php:310
|
6816 |
-
msgid "The bank account number entered is not valid."
|
6817 |
-
msgstr ""
|
6818 |
-
|
6819 |
-
#: ../addons/buy-creds/gateways/zombaio.php:155
|
6820 |
-
#, php-format
|
6821 |
-
msgid "Duplicate transaction. Received: %s"
|
6822 |
-
msgstr ""
|
6823 |
-
|
6824 |
-
#: ../addons/buy-creds/gateways/zombaio.php:161
|
6825 |
-
#, php-format
|
6826 |
-
msgid "Live transaction while debug mode is enabled! Received: %s"
|
6827 |
-
msgstr ""
|
6828 |
-
|
6829 |
-
#: ../addons/buy-creds/gateways/zombaio.php:267
|
6830 |
-
msgid "Site ID"
|
6831 |
-
msgstr ""
|
6832 |
-
|
6833 |
-
#: ../addons/buy-creds/gateways/zombaio.php:273
|
6834 |
-
msgid "GW Password"
|
6835 |
-
msgstr ""
|
6836 |
-
|
6837 |
-
#: ../addons/buy-creds/gateways/zombaio.php:279
|
6838 |
-
msgid "Pricing ID"
|
6839 |
-
msgstr ""
|
6840 |
-
|
6841 |
-
#: ../addons/buy-creds/gateways/zombaio.php:285 ../addons/buy-
|
6842 |
-
#: creds/gateways/skrill.php:338
|
6843 |
-
msgid "Logo URL"
|
6844 |
-
msgstr ""
|
6845 |
-
|
6846 |
-
#: ../addons/buy-creds/gateways/zombaio.php:291
|
6847 |
-
msgid "IP Verification"
|
6848 |
-
msgstr ""
|
6849 |
-
|
6850 |
-
#: ../addons/buy-creds/gateways/zombaio.php:294
|
6851 |
-
msgid "Do not verify that callbacks are coming from Zombaio."
|
6852 |
-
msgstr ""
|
6853 |
-
|
6854 |
-
#: ../addons/buy-creds/gateways/zombaio.php:297
|
6855 |
-
msgid "Language"
|
6856 |
-
msgstr ""
|
6857 |
-
|
6858 |
-
#: ../addons/buy-creds/gateways/zombaio.php:304
|
6859 |
-
msgid "Postback URL (ZScript)"
|
6860 |
-
msgstr ""
|
6861 |
-
|
6862 |
-
#: ../addons/buy-creds/gateways/zombaio.php:308
|
6863 |
-
msgid ""
|
6864 |
-
"For this gateway to work, login to ZOA and set the Postback URL to the above "
|
6865 |
-
"address and click validate."
|
6866 |
-
msgstr ""
|
6867 |
-
|
6868 |
-
#: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
|
6869 |
-
#: creds/gateways/skrill.php:171
|
6870 |
-
msgid "Success"
|
6871 |
-
msgstr ""
|
6872 |
-
|
6873 |
-
#: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
|
6874 |
-
#: creds/gateways/skrill.php:172
|
6875 |
-
msgid "Thank you for your purchase"
|
6876 |
-
msgstr ""
|
6877 |
-
|
6878 |
-
#: ../addons/buy-creds/gateways/paypal-standard.php:256
|
6879 |
-
#, php-format
|
6880 |
-
msgctxt "Return label. %s = Website name"
|
6881 |
-
msgid "Return to %s"
|
6882 |
-
msgstr ""
|
6883 |
-
|
6884 |
-
#: ../addons/buy-creds/gateways/paypal-standard.php:285
|
6885 |
-
msgid "Account Email"
|
6886 |
-
msgstr ""
|
6887 |
-
|
6888 |
-
#: ../addons/buy-creds/gateways/skrill.php:226
|
6889 |
-
msgid "Return to "
|
6890 |
-
msgstr ""
|
6891 |
-
|
6892 |
-
#: ../addons/buy-creds/gateways/skrill.php:258
|
6893 |
-
msgid "Product:"
|
6894 |
-
msgstr ""
|
6895 |
-
|
6896 |
-
#: ../addons/buy-creds/gateways/skrill.php:267
|
6897 |
-
msgid "Gift to:"
|
6898 |
-
msgstr ""
|
6899 |
-
|
6900 |
-
#: ../addons/buy-creds/gateways/skrill.php:268
|
6901 |
-
msgid "(author)"
|
6902 |
-
msgstr ""
|
6903 |
-
|
6904 |
-
#: ../addons/buy-creds/gateways/skrill.php:301
|
6905 |
-
msgid "Merchant Account Email"
|
6906 |
-
msgstr ""
|
6907 |
-
|
6908 |
-
#: ../addons/buy-creds/gateways/skrill.php:307
|
6909 |
-
msgid "Secret Word"
|
6910 |
-
msgstr ""
|
6911 |
-
|
6912 |
-
#: ../addons/buy-creds/gateways/skrill.php:324
|
6913 |
-
msgid "Confirmation Email"
|
6914 |
-
msgstr ""
|
6915 |
-
|
6916 |
-
#: ../addons/buy-creds/gateways/skrill.php:327
|
6917 |
-
msgid "Ask Skrill to send me a confirmation email for each successful purchase."
|
6918 |
-
msgstr ""
|
6919 |
-
|
6920 |
-
#: ../addons/buy-creds/gateways/skrill.php:330
|
6921 |
-
msgid "Checkout Page"
|
6922 |
-
msgstr ""
|
6923 |
-
|
6924 |
-
#: ../addons/buy-creds/gateways/skrill.php:335
|
6925 |
-
msgid "If left empty, your account email is used as title on the Skill Payment Page."
|
6926 |
-
msgstr ""
|
6927 |
-
|
6928 |
-
#: ../addons/buy-creds/gateways/skrill.php:340
|
6929 |
-
msgid ""
|
6930 |
-
"The URL to the image you want to use on the top of the gateway. For best "
|
6931 |
-
"integration results we recommend you use logos with dimensions up to 200px "
|
6932 |
-
"in width and 50px in height."
|
6933 |
-
msgstr ""
|
6934 |
-
|
6935 |
-
#: ../addons/buy-creds/gateways/skrill.php:343
|
6936 |
-
msgid "Confirmation Note"
|
6937 |
-
msgstr ""
|
6938 |
-
|
6939 |
-
#: ../addons/buy-creds/gateways/skrill.php:345
|
6940 |
-
msgid ""
|
6941 |
-
"Optional text to show user once a transaction has been successfully "
|
6942 |
-
"completed. This text is shown by Skrill."
|
6943 |
-
msgstr ""
|
6944 |
-
|
6945 |
-
#: ../modules/mycred-module-network.php:61 ../modules/mycred-module-network.php:
|
6946 |
-
#: 62 ../addons/gateway/carts/mycred-woocommerce.php:29 ..
|
6947 |
-
#: addons/gateway/carts/mycred-marketpress.php:274
|
6948 |
-
msgid "myCRED"
|
6949 |
-
msgstr "myCRED"
|
6950 |
-
|
6951 |
-
#. URI of the plugin
|
6952 |
-
msgid "http://mycred.me"
|
6953 |
-
msgstr "http://mycred.me"
|
6954 |
-
|
6955 |
-
#. Author of the plugin
|
6956 |
-
msgid "Gabriel S Merovingi"
|
6957 |
-
msgstr "Gabriel S Merovingi"
|
6958 |
-
|
6959 |
-
#. Author URI of the plugin
|
6960 |
-
msgid "http://www.merovingi.com"
|
6961 |
-
msgstr "http://www.merovingi.com"
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: myCRED\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
+
"POT-Creation-Date: 2016-10-21 06:00+0000\n"
|
6 |
+
"PO-Revision-Date: 2016-10-21 06:00+0000\n"
|
7 |
+
"Last-Translator: mycreddemo <gabriel.s@merovingi.com>\n"
|
8 |
+
"Language-Team: English (United States)\n"
|
9 |
+
"Language: en-US\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
18 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
19 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
20 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
21 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
+
"X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
|
23 |
+
"content/plugins/mycred\n"
|
24 |
+
"X-Poedit-SearchPath-1: .\n"
|
25 |
+
"X-Loco-Target-Locale: en_US"
|
26 |
+
|
27 |
+
#: mycred.php:564
|
28 |
+
msgid "%s Log Import"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: mycred.php:565
|
32 |
+
msgid "Import log entries via a CSV file."
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: mycred.php:576
|
36 |
+
msgid "%s Balance Import"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: mycred.php:577
|
40 |
+
msgid "Import balances."
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: mycred.php:588
|
44 |
+
msgid "%s CubePoints Import"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: mycred.php:589 includes/importers/mycred-cubepoints.php:379
|
48 |
+
msgid "Import CubePoints log entries and / or balances."
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: mycred.php:631 modules/mycred-module-management.php:314
|
52 |
+
#: modules/mycred-module-settings.php:426 modules/mycred-module-log.php:466
|
53 |
+
#: addons/transfer/myCRED-addon-transfer.php:139
|
54 |
+
#: addons/ranks/myCRED-addon-ranks.php:986
|
55 |
+
#: addons/ranks/myCRED-addon-ranks.php:1570
|
56 |
+
#: addons/badges/myCRED-addon-badges.php:702
|
57 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:478
|
58 |
+
msgid "Processing..."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: mycred.php:632
|
62 |
+
msgid "Sent"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: mycred.php:633
|
66 |
+
msgid "Error - Try Again"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: mycred.php:765
|
70 |
+
msgid "No CubePoints log exists."
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: mycred.php:816 mycred.php:817
|
74 |
+
msgid "About %s"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: mycred.php:825 mycred.php:826
|
78 |
+
msgid "Awesome People"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: mycred.php:863 modules/mycred-module-management.php:556
|
82 |
+
#: addons/transfer/myCRED-addon-transfer.php:495
|
83 |
+
#: addons/transfer/includes/mycred-transfer-shortcodes.php:33
|
84 |
+
msgid "Balance"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: mycred.php:930 modules/mycred-module-management.php:471
|
88 |
+
#: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
|
89 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:460
|
90 |
+
msgid "History"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: mycred.php:986 mycred.php:1007
|
94 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:273
|
95 |
+
#: addons/banking/services/mycred-service-interest.php:477
|
96 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:537
|
97 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:605
|
98 |
+
msgid "Setup"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: mycred.php:988 modules/mycred-module-settings.php:21
|
102 |
+
#: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
|
103 |
+
#: modules/mycred-module-network.php:164
|
104 |
+
#: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
|
105 |
+
#: addons/buy-creds/modules/buycred-module-core.php:555
|
106 |
+
msgid "Settings"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: mycred.php:1029
|
110 |
+
msgid ""
|
111 |
+
"Make sure to backup your database and files before updating, in case "
|
112 |
+
"anything goes wrong!"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: abstracts/mycred-abstract-hook.php:90
|
116 |
+
msgid "This Hook has no settings"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: abstracts/mycred-abstract-hook.php:283
|
120 |
+
#: abstracts/mycred-abstract-hook.php:354 includes/mycred-functions.php:2672
|
121 |
+
msgid "No limit"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: abstracts/mycred-abstract-hook.php:284
|
125 |
+
msgid "/ Day"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: abstracts/mycred-abstract-hook.php:285
|
129 |
+
msgid "/ Week"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: abstracts/mycred-abstract-hook.php:286
|
133 |
+
msgid "/ Month"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: abstracts/mycred-abstract-hook.php:287
|
137 |
+
msgid "in Total"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: abstracts/mycred-abstract-hook.php:355
|
141 |
+
msgid "Once every 24 hours"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: abstracts/mycred-abstract-hook.php:356
|
145 |
+
msgid "Once every 7 days"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: abstracts/mycred-abstract-hook.php:357
|
149 |
+
msgid "Once per day (reset at midnight)"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: abstracts/mycred-abstract-hook.php:364
|
153 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:527
|
154 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:859
|
155 |
+
#: addons/badges/myCRED-addon-badges.php:880
|
156 |
+
#: addons/banking/abstracts/mycred-abstract-service.php:351
|
157 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
|
158 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
|
159 |
+
#: addons/buy-creds/modules/buycred-module-core.php:380
|
160 |
+
#: addons/buy-creds/modules/buycred-module-core.php:403
|
161 |
+
#: addons/buy-creds/gateways/zombaio.php:406
|
162 |
+
msgid "Select"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: abstracts/mycred-abstract-module.php:400
|
166 |
+
#: abstracts/mycred-abstract-module.php:410
|
167 |
+
msgid "Surprise"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: abstracts/mycred-abstract-module.php:528
|
171 |
+
#: modules/mycred-module-network.php:98
|
172 |
+
msgid "click to close"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: abstracts/mycred-abstract-module.php:529
|
176 |
+
#: modules/mycred-module-network.php:99
|
177 |
+
msgid "click to open"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: abstracts/mycred-abstract-module.php:562
|
181 |
+
#: modules/mycred-module-network.php:155
|
182 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1472
|
183 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:451
|
184 |
+
#: addons/buy-creds/modules/buycred-module-core.php:560
|
185 |
+
msgid "Settings Updated"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: modules/mycred-module-management.php:101
|
189 |
+
msgid "Update Balance"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: modules/mycred-module-management.php:114
|
193 |
+
msgid "User is excluded"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: modules/mycred-module-management.php:122
|
197 |
+
msgid "Log Entry can not be empty"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: modules/mycred-module-management.php:130 modules/mycred-module-log.php:225
|
201 |
+
msgid "Amount can not be zero"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: modules/mycred-module-management.php:184
|
205 |
+
msgid "Balance successfully updated"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: modules/mycred-module-management.php:189
|
209 |
+
msgid "Request declined"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: modules/mycred-module-management.php:224
|
213 |
+
msgid "No recent activity found."
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
|
217 |
+
#: modules/mycred-module-log.php:914 includes/shortcodes/mycred_history.php:59
|
218 |
+
#: includes/classes/class.query-export.php:263
|
219 |
+
#: includes/classes/class.query-export.php:399
|
220 |
+
#: includes/classes/class.query-log.php:370
|
221 |
+
#: includes/classes/class.query-log.php:383
|
222 |
+
#: addons/banking/services/mycred-service-payouts.php:740
|
223 |
+
#: addons/sell-content/includes/mycred-sell-shortcodes.php:185
|
224 |
+
#: addons/buy-creds/modules/buycred-module-core.php:752
|
225 |
+
msgid "Date"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: modules/mycred-module-management.php:236
|
229 |
+
#: addons/banking/services/mycred-service-interest.php:435
|
230 |
+
#: addons/banking/services/mycred-service-interest.php:460
|
231 |
+
#: addons/banking/services/mycred-service-payouts.php:746
|
232 |
+
msgid "Time"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: modules/mycred-module-management.php:237
|
236 |
+
#: modules/mycred-module-management.php:773 modules/mycred-module-log.php:93
|
237 |
+
#: modules/mycred-module-log.php:922
|
238 |
+
#: includes/classes/class.query-export.php:263
|
239 |
+
#: includes/classes/class.query-export.php:360
|
240 |
+
#: includes/classes/class.query-log.php:382
|
241 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:96
|
242 |
+
msgid "Reference"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: modules/mycred-module-management.php:238 modules/mycred-module-log.php:96
|
246 |
+
#: includes/shortcodes/mycred_history.php:61
|
247 |
+
#: includes/classes/class.query-export.php:263
|
248 |
+
#: includes/classes/class.query-export.php:406
|
249 |
+
#: includes/classes/class.query-log.php:372
|
250 |
+
#: includes/classes/class.query-log.php:385
|
251 |
+
msgid "Entry"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: modules/mycred-module-management.php:280
|
255 |
+
msgid "View complete history"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: modules/mycred-module-management.php:312
|
259 |
+
msgid "Edit Users Balance"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: modules/mycred-module-management.php:313
|
263 |
+
#: modules/mycred-module-settings.php:431 modules/mycred-module-log.php:465
|
264 |
+
#: addons/banking/myCRED-addon-banking.php:204
|
265 |
+
msgid "Close"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: modules/mycred-module-management.php:451
|
269 |
+
#: modules/mycred-module-management.php:569
|
270 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:268
|
271 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1130
|
272 |
+
msgid "Excluded"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: modules/mycred-module-management.php:461
|
276 |
+
#: addons/coupons/myCRED-addon-coupons.php:307
|
277 |
+
msgid "Total"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: modules/mycred-module-management.php:472
|
281 |
+
msgid "Adjust"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: modules/mycred-module-management.php:553
|
285 |
+
msgid "Balances"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: modules/mycred-module-management.php:581
|
289 |
+
#: modules/mycred-module-management.php:581
|
290 |
+
#: includes/classes/class.query-log.php:1074
|
291 |
+
msgid "Edit"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: modules/mycred-module-management.php:581
|
295 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
|
296 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:734
|
297 |
+
msgid "Cancel"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: modules/mycred-module-management.php:739
|
301 |
+
#: addons/banking/services/mycred-service-payouts.php:553
|
302 |
+
msgid "ID"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: modules/mycred-module-management.php:745
|
306 |
+
#: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
|
307 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1362
|
308 |
+
msgid "Username"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: modules/mycred-module-management.php:751
|
312 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:307
|
313 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:332
|
314 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:412
|
315 |
+
msgid "Current Balance"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: modules/mycred-module-management.php:757
|
319 |
+
msgid "Total Balance"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: modules/mycred-module-management.php:766
|
323 |
+
#: plugins/mycred-hook-affiliatewp.php:260
|
324 |
+
#: includes/shortcodes/mycred_exchange.php:69
|
325 |
+
#: includes/shortcodes/mycred_hook_table.php:80
|
326 |
+
#: includes/classes/class.query-export.php:263
|
327 |
+
#: includes/classes/class.query-export.php:383
|
328 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:92
|
329 |
+
#: addons/transfer/includes/mycred-transfer-shortcodes.php:32
|
330 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
|
331 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:289
|
332 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:631
|
333 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:749
|
334 |
+
msgid "Amount"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: modules/mycred-module-management.php:768
|
338 |
+
msgid "A positive or negative value"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: modules/mycred-module-management.php:783
|
342 |
+
msgid "Log under a custom reference"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: modules/mycred-module-management.php:789
|
346 |
+
msgid "lowercase without empty spaces"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: modules/mycred-module-management.php:794 modules/mycred-module-log.php:933
|
350 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:518
|
351 |
+
msgid "Log Entry"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: modules/mycred-module-management.php:795
|
355 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:79
|
356 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:101
|
357 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:105
|
358 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:113
|
359 |
+
msgid "optional"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: modules/mycred-module-management.php:802
|
363 |
+
msgid "Update"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: modules/mycred-module-management.php:805
|
367 |
+
msgid "Recent Activity"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: modules/mycred-module-settings.php:138
|
371 |
+
msgid "Accounts successfully reset"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: modules/mycred-module-settings.php:190
|
375 |
+
msgid "No users found to export"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: modules/mycred-module-settings.php:240
|
379 |
+
msgid "Invalid decimal value."
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: modules/mycred-module-settings.php:290
|
383 |
+
msgid "Log Updated"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: modules/mycred-module-settings.php:427
|
387 |
+
msgid ""
|
388 |
+
"Warning! All entries in your log will be permanently removed! This can not "
|
389 |
+
"be undone!"
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: modules/mycred-module-settings.php:428
|
393 |
+
msgid ""
|
394 |
+
"All log entries belonging to deleted users will be permanently deleted! This "
|
395 |
+
"can not be undone!"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: modules/mycred-module-settings.php:429
|
399 |
+
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: modules/mycred-module-settings.php:430
|
403 |
+
msgid "Done!"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: modules/mycred-module-settings.php:432
|
407 |
+
msgid "Export users %plural%"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: modules/mycred-module-settings.php:433
|
411 |
+
msgid ""
|
412 |
+
"In order to adjust the number of decimal places you want to use we must "
|
413 |
+
"update your log. It is highly recommended that you backup your current log "
|
414 |
+
"before continuing!"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: modules/mycred-module-settings.php:458
|
418 |
+
msgid "Update Database"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: modules/mycred-module-settings.php:469
|
422 |
+
#: modules/mycred-module-settings.php:481
|
423 |
+
msgid "No decimals"
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#: modules/mycred-module-settings.php:493
|
427 |
+
msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: modules/mycred-module-settings.php:529
|
431 |
+
msgid "%s Settings"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: modules/mycred-module-settings.php:529 modules/mycred-module-addons.php:368
|
435 |
+
msgid "Documentation"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: modules/mycred-module-settings.php:538
|
439 |
+
msgid "Core Settings"
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#: modules/mycred-module-settings.php:543 includes/mycred-setup.php:275
|
443 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:460
|
444 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:602
|
445 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
|
446 |
+
msgid "Labels"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: modules/mycred-module-settings.php:547 includes/mycred-setup.php:279
|
450 |
+
msgid "Singular"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: modules/mycred-module-settings.php:548
|
454 |
+
#: modules/mycred-module-settings.php:554
|
455 |
+
#: modules/mycred-module-settings.php:604
|
456 |
+
#: modules/mycred-module-settings.php:611
|
457 |
+
#: modules/mycred-module-settings.php:798
|
458 |
+
#: modules/mycred-module-settings.php:804 includes/mycred-setup.php:280
|
459 |
+
#: includes/mycred-setup.php:286 includes/mycred-setup.php:333
|
460 |
+
#: includes/mycred-setup.php:340
|
461 |
+
#: addons/banking/services/mycred-service-central.php:111
|
462 |
+
#: addons/banking/services/mycred-service-interest.php:482
|
463 |
+
#: addons/banking/services/mycred-service-interest.php:500
|
464 |
+
msgid "Required"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: modules/mycred-module-settings.php:553 includes/mycred-setup.php:285
|
468 |
+
msgid "Plural"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: modules/mycred-module-settings.php:558 includes/mycred-setup.php:290
|
472 |
+
msgid ""
|
473 |
+
"These labels are used throughout the admin area and when presenting points "
|
474 |
+
"to your users."
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: modules/mycred-module-settings.php:561 includes/mycred-setup.php:293
|
478 |
+
msgid "Format"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: modules/mycred-module-settings.php:565 includes/mycred-setup.php:297
|
482 |
+
msgid "Prefix"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: modules/mycred-module-settings.php:571 includes/mycred-setup.php:303
|
486 |
+
msgid "Separators"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: modules/mycred-module-settings.php:579 includes/mycred-setup.php:311
|
490 |
+
msgid "Decimals"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: modules/mycred-module-settings.php:585 includes/mycred-setup.php:317
|
494 |
+
msgid "Suffix"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: modules/mycred-module-settings.php:590
|
498 |
+
msgid "Set decimals to zero if you prefer to use whole numbers."
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: modules/mycred-module-settings.php:592
|
502 |
+
msgid "Tip"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: modules/mycred-module-settings.php:592
|
506 |
+
msgid ""
|
507 |
+
"As this is your main point type, the value you select here will be the "
|
508 |
+
"largest number of decimals your installation will support."
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: modules/mycred-module-settings.php:599 includes/mycred-setup.php:328
|
512 |
+
msgid "Security"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: modules/mycred-module-settings.php:603 includes/mycred-setup.php:332
|
516 |
+
msgid "Point Editors"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: modules/mycred-module-settings.php:605 includes/mycred-setup.php:334
|
520 |
+
msgid "The capability of users who can edit balances."
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: modules/mycred-module-settings.php:610 includes/mycred-setup.php:339
|
524 |
+
msgid "Point Administrators"
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: modules/mycred-module-settings.php:612 includes/mycred-setup.php:341
|
528 |
+
msgid "The capability of users who can edit settings."
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: modules/mycred-module-settings.php:618 includes/mycred-setup.php:346
|
532 |
+
msgid "Max. Amount"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: modules/mycred-module-settings.php:620 includes/mycred-setup.php:348
|
536 |
+
msgid "The maximum amount allowed to be paid out in a single instance."
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: modules/mycred-module-settings.php:625 includes/mycred-setup.php:353
|
540 |
+
msgid "Exclude by User ID"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: modules/mycred-module-settings.php:626 includes/mycred-setup.php:354
|
544 |
+
msgid "Optional"
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: modules/mycred-module-settings.php:627 includes/mycred-setup.php:355
|
548 |
+
msgid "Comma separated list of user IDs to exclude from using this point type."
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: modules/mycred-module-settings.php:631 includes/mycred-setup.php:359
|
552 |
+
msgid "Exclude point editors"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: modules/mycred-module-settings.php:634 includes/mycred-setup.php:362
|
556 |
+
msgid "Exclude point administrators"
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#: modules/mycred-module-settings.php:644
|
560 |
+
msgid "Other Settings"
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: modules/mycred-module-settings.php:646
|
564 |
+
msgid "Delete log entries when user is deleted."
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: modules/mycred-module-settings.php:665
|
568 |
+
msgid "Management"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: modules/mycred-module-settings.php:677 modules/mycred-module-log.php:433
|
572 |
+
msgid "Entries"
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: modules/mycred-module-settings.php:683
|
576 |
+
#: modules/mycred-module-settings.php:708
|
577 |
+
#: addons/ranks/myCRED-addon-ranks.php:1659
|
578 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:466
|
579 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:752
|
580 |
+
msgid "Actions"
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: modules/mycred-module-settings.php:686
|
584 |
+
msgid "Empty Log"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: modules/mycred-module-settings.php:696
|
588 |
+
msgid "Balance Meta Key"
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: modules/mycred-module-settings.php:702
|
592 |
+
#: addons/ranks/myCRED-addon-ranks.php:1076
|
593 |
+
#: addons/badges/myCRED-addon-badges.php:400
|
594 |
+
msgid "Users"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: modules/mycred-module-settings.php:710
|
598 |
+
msgid "Set all to zero"
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: modules/mycred-module-settings.php:727 includes/mycred-widgets.php:573
|
602 |
+
#: addons/transfer/myCRED-addon-transfer.php:383
|
603 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:437
|
604 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:108
|
605 |
+
#: addons/buy-creds/modules/buycred-module-core.php:336
|
606 |
+
msgid "Point Types"
|
607 |
+
msgstr ""
|
608 |
+
|
609 |
+
#: modules/mycred-module-settings.php:741
|
610 |
+
#: modules/mycred-module-settings.php:767
|
611 |
+
#: modules/mycred-module-settings.php:797
|
612 |
+
msgid "Meta Key"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: modules/mycred-module-settings.php:747
|
616 |
+
#: modules/mycred-module-settings.php:773
|
617 |
+
#: modules/mycred-module-settings.php:803
|
618 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:575
|
619 |
+
#: addons/gateway/carts/mycred-woocommerce.php:159
|
620 |
+
msgid "Label"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: modules/mycred-module-settings.php:754
|
624 |
+
#: modules/mycred-module-settings.php:780
|
625 |
+
#: includes/classes/class.query-log.php:492
|
626 |
+
#: includes/classes/class.query-log.php:1075
|
627 |
+
#: addons/banking/services/mycred-service-payouts.php:472
|
628 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
|
629 |
+
msgid "Delete"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: modules/mycred-module-settings.php:793
|
633 |
+
msgid "Add New Type"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: modules/mycred-module-settings.php:809
|
637 |
+
msgid ""
|
638 |
+
"The meta key must be lowercase and only contain letters or underscores. All "
|
639 |
+
"other characters will be deleted!"
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
#: modules/mycred-module-settings.php:821
|
643 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:551
|
644 |
+
#: addons/buy-creds/modules/buycred-module-core.php:613
|
645 |
+
msgid "Update Settings"
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: modules/mycred-module-settings.php:830
|
649 |
+
msgid "Identify users by"
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: modules/mycred-module-settings.php:836
|
653 |
+
msgid "User ID"
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: modules/mycred-module-settings.php:837
|
657 |
+
msgid "User Email"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: modules/mycred-module-settings.php:838
|
661 |
+
msgid "User Login"
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: modules/mycred-module-settings.php:846
|
665 |
+
msgid ""
|
666 |
+
"Use ID if you intend to use this export as a backup of your current site "
|
667 |
+
"while Email is recommended if you want to export to a different site."
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: modules/mycred-module-settings.php:849
|
671 |
+
msgid "Import Log Entry"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: modules/mycred-module-settings.php:851
|
675 |
+
msgid ""
|
676 |
+
"Optional log entry to use if you intend to import this file in a different "
|
677 |
+
"%s installation."
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: modules/mycred-module-settings.php:854 modules/mycred-module-export.php:236
|
681 |
+
#: modules/mycred-module-export.php:263 modules/mycred-module-export.php:313
|
682 |
+
msgid "Export"
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: modules/mycred-module-addons.php:25 modules/mycred-module-addons.php:26
|
686 |
+
#: includes/mycred-setup.php:171
|
687 |
+
msgid "Add-ons"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: modules/mycred-module-addons.php:175
|
691 |
+
msgid "Give your users badges based on their interaction with your website."
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: modules/mycred-module-addons.php:186
|
695 |
+
msgid ""
|
696 |
+
"Setup recurring payouts or offer / charge interest on user account balances."
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: modules/mycred-module-addons.php:197
|
700 |
+
msgid ""
|
701 |
+
"The <strong>buy</strong>CRED Add-on allows your users to buy points using "
|
702 |
+
"PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
|
703 |
+
"also let your users buy points for other members."
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: modules/mycred-module-addons.php:208
|
707 |
+
msgid ""
|
708 |
+
"The coupons add-on allows you to create coupons that users can use to add "
|
709 |
+
"points to their accounts."
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: modules/mycred-module-addons.php:219
|
713 |
+
msgid "Create email notices for any type of myCRED instance."
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: modules/mycred-module-addons.php:230
|
717 |
+
msgid ""
|
718 |
+
"Let your users pay using their <strong>my</strong>CRED points balance. "
|
719 |
+
"Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
|
720 |
+
"Bookings: Event Espresso and Events Manager (free & pro)."
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: modules/mycred-module-addons.php:241
|
724 |
+
msgid "Create pop-up notifications for when users gain or loose points."
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: modules/mycred-module-addons.php:253
|
728 |
+
msgid ""
|
729 |
+
"Create ranks for users reaching a certain number of %_plural% with the "
|
730 |
+
"option to add logos for each rank."
|
731 |
+
msgstr ""
|
732 |
+
|
733 |
+
#: modules/mycred-module-addons.php:264
|
734 |
+
msgid ""
|
735 |
+
"This add-on allows you to sell posts, pages or any public post types on your "
|
736 |
+
"website. You can either sell the entire content or using our shortcode, sell "
|
737 |
+
"parts of your content allowing you to offer \"teasers\"."
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: modules/mycred-module-addons.php:275
|
741 |
+
msgid ""
|
742 |
+
"Gives you access to your myCRED Statistics based on your users gains and "
|
743 |
+
"loses."
|
744 |
+
msgstr ""
|
745 |
+
|
746 |
+
#: modules/mycred-module-addons.php:286
|
747 |
+
msgid ""
|
748 |
+
"Allow your users to send or \"donate\" points to other members by either "
|
749 |
+
"using the mycred_transfer shortcode or the myCRED Transfer widget."
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: modules/mycred-module-addons.php:330
|
753 |
+
msgid "%s Add-ons"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: modules/mycred-module-addons.php:330
|
757 |
+
msgid "Get More Add-ons"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: modules/mycred-module-addons.php:337
|
761 |
+
msgid "Add-on Activated"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: modules/mycred-module-addons.php:340
|
765 |
+
msgid "Add-on Deactivated"
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
#: modules/mycred-module-addons.php:405
|
769 |
+
msgid "Activate Add-on"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: modules/mycred-module-addons.php:406
|
773 |
+
msgid "Activate"
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
#: modules/mycred-module-addons.php:412
|
777 |
+
msgid "Deactivate Add-on"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: modules/mycred-module-addons.php:413
|
781 |
+
msgid "Deactivate"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: modules/mycred-module-log.php:24 modules/mycred-module-log.php:25
|
785 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:515
|
786 |
+
msgid "Log"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: modules/mycred-module-log.php:92 modules/mycred-module-log.php:910
|
790 |
+
#: includes/shortcodes/mycred_history.php:58
|
791 |
+
#: includes/classes/class.query-export.php:263
|
792 |
+
#: includes/classes/class.query-export.php:371
|
793 |
+
#: includes/classes/class.query-log.php:369
|
794 |
+
#: includes/classes/class.query-log.php:381
|
795 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:332
|
796 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:565
|
797 |
+
msgid "User"
|
798 |
+
msgstr ""
|
799 |
+
|
800 |
+
#: modules/mycred-module-log.php:173
|
801 |
+
msgid "Row Deleted"
|
802 |
+
msgstr ""
|
803 |
+
|
804 |
+
#: modules/mycred-module-log.php:215
|
805 |
+
msgid "Invalid or empty reference"
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: modules/mycred-module-log.php:220
|
809 |
+
msgid "Log Entry cannot be empty"
|
810 |
+
msgstr ""
|
811 |
+
|
812 |
+
#: modules/mycred-module-log.php:232
|
813 |
+
msgid "Log entry not found"
|
814 |
+
msgstr ""
|
815 |
+
|
816 |
+
#: modules/mycred-module-log.php:241
|
817 |
+
msgid "Could not save the new log entry"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: modules/mycred-module-log.php:262
|
821 |
+
msgid "Log entry successfully updated"
|
822 |
+
msgstr ""
|
823 |
+
|
824 |
+
#: modules/mycred-module-log.php:307
|
825 |
+
msgid "1 Entry Deleted"
|
826 |
+
msgid_plural "%d Entries Deleted"
|
827 |
+
msgstr[0] ""
|
828 |
+
msgstr[1] ""
|
829 |
+
|
830 |
+
#: modules/mycred-module-log.php:464
|
831 |
+
msgid "Edit Log Entry"
|
832 |
+
msgstr ""
|
833 |
+
|
834 |
+
#: modules/mycred-module-log.php:468
|
835 |
+
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: modules/mycred-module-log.php:469
|
839 |
+
msgid "The log entry was successfully updated."
|
840 |
+
msgstr ""
|
841 |
+
|
842 |
+
#: modules/mycred-module-log.php:470
|
843 |
+
msgid "The selected log entry could not be deleted."
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: modules/mycred-module-log.php:502
|
847 |
+
msgid "Search results for"
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: modules/mycred-module-log.php:507
|
851 |
+
msgctxt "e.g. Log entries from April 12th 2016"
|
852 |
+
msgid "Log entries from %s"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: modules/mycred-module-log.php:554
|
856 |
+
msgid "%s Log"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: modules/mycred-module-log.php:565
|
860 |
+
msgid ""
|
861 |
+
"Warning. The required Mcrypt PHP Library is not installed on this server! "
|
862 |
+
"Certain hooks and shortcodes will not work correctly!"
|
863 |
+
msgstr ""
|
864 |
+
|
865 |
+
#: modules/mycred-module-log.php:670
|
866 |
+
msgid "My %s History"
|
867 |
+
msgstr ""
|
868 |
+
|
869 |
+
#: modules/mycred-module-log.php:929
|
870 |
+
msgid "Original Entry"
|
871 |
+
msgstr ""
|
872 |
+
|
873 |
+
#: modules/mycred-module-log.php:941
|
874 |
+
msgid "Delete Entry"
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
#: modules/mycred-module-log.php:946
|
878 |
+
msgid "Update Entry"
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
+
#: modules/mycred-module-network.php:71 modules/mycred-module-network.php:72
|
882 |
+
msgid "Network Settings"
|
883 |
+
msgstr ""
|
884 |
+
|
885 |
+
#: modules/mycred-module-network.php:135
|
886 |
+
msgid "%s Network"
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: modules/mycred-module-network.php:141
|
890 |
+
msgid "I am sorry but your network is too big to use these features."
|
891 |
+
msgstr ""
|
892 |
+
|
893 |
+
#: modules/mycred-module-network.php:151
|
894 |
+
msgid "Note! %s has not yet been setup."
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: modules/mycred-module-network.php:158
|
898 |
+
msgid "Configure network settings for %s."
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
+
#: modules/mycred-module-network.php:166
|
902 |
+
msgid "Master Template"
|
903 |
+
msgstr ""
|
904 |
+
|
905 |
+
#: modules/mycred-module-network.php:170 modules/mycred-module-network.php:184
|
906 |
+
#: addons/buy-creds/gateways/bitpay.php:299
|
907 |
+
msgid "Yes"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: modules/mycred-module-network.php:174 modules/mycred-module-network.php:188
|
911 |
+
#: addons/buy-creds/gateways/bitpay.php:298
|
912 |
+
msgid "No"
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
#: modules/mycred-module-network.php:177
|
916 |
+
msgid ""
|
917 |
+
"If enabled, %s will use your main site's settings for all other sites in "
|
918 |
+
"your network."
|
919 |
+
msgstr ""
|
920 |
+
|
921 |
+
#: modules/mycred-module-network.php:180
|
922 |
+
msgid "Central Logging"
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#: modules/mycred-module-network.php:191
|
926 |
+
msgid "If enabled, %s will log all site actions in your main site's log."
|
927 |
+
msgstr ""
|
928 |
+
|
929 |
+
#: modules/mycred-module-network.php:194
|
930 |
+
msgid "Site Block"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: modules/mycred-module-network.php:198
|
934 |
+
msgid "Comma separated list of blog ids where %s is to be disabled."
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#: modules/mycred-module-network.php:210
|
938 |
+
msgid "Save Network Settings"
|
939 |
+
msgstr ""
|
940 |
+
|
941 |
+
#: modules/mycred-module-export.php:285 modules/mycred-module-export.php:332
|
942 |
+
#: includes/classes/class.query-log.php:1140
|
943 |
+
msgid ""
|
944 |
+
"Log entries are exported to a CSV file and depending on the number of "
|
945 |
+
"entries selected, the process may take a few seconds."
|
946 |
+
msgstr ""
|
947 |
+
|
948 |
+
#: modules/mycred-module-export.php:353
|
949 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:253
|
950 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:337
|
951 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1115
|
952 |
+
msgid "Disabled"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: modules/mycred-module-export.php:354
|
956 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:338
|
957 |
+
msgid "Enabled"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: modules/mycred-module-export.php:358
|
961 |
+
msgid "Make both format options available."
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: modules/mycred-module-export.php:360
|
965 |
+
msgid "Exports"
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: modules/mycred-module-export.php:366
|
969 |
+
msgid "Front End Exports"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: modules/mycred-module-export.php:382 modules/mycred-module-export.php:430
|
973 |
+
msgid "Export Format"
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: modules/mycred-module-export.php:398 modules/mycred-module-export.php:446
|
977 |
+
msgid "File Name"
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
|
981 |
+
#: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
|
982 |
+
#: includes/importers/mycred-cubepoints.php:401
|
983 |
+
#: includes/classes/class.query-export.php:263
|
984 |
+
#: includes/classes/class.query-export.php:391
|
985 |
+
#: addons/ranks/myCRED-addon-ranks.php:1079
|
986 |
+
#: addons/ranks/myCRED-addon-ranks.php:1247
|
987 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:276
|
988 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:582
|
989 |
+
#: addons/coupons/myCRED-addon-coupons.php:254
|
990 |
+
#: addons/coupons/myCRED-addon-coupons.php:488
|
991 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:483
|
992 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:550
|
993 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611
|
994 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:383
|
995 |
+
#: addons/gateway/carts/mycred-woocommerce.php:119
|
996 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:573
|
997 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:751
|
998 |
+
msgid "Point Type"
|
999 |
+
msgstr ""
|
1000 |
+
|
1001 |
+
#: modules/mycred-module-export.php:407
|
1002 |
+
msgid ""
|
1003 |
+
"If enabled, users will only be able to export their own log entries! Export "
|
1004 |
+
"tools becomes available wherever you are using the mycred_history shortcode "
|
1005 |
+
"or in the users profile."
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: modules/mycred-module-export.php:414
|
1009 |
+
msgid "Back End Exports"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: modules/mycred-module-export.php:455
|
1013 |
+
msgid ""
|
1014 |
+
"Raw format should be used when you intend to use the export tool to backup "
|
1015 |
+
"or import entries in another installation. Formatted exports reflect what "
|
1016 |
+
"users see in their history archive."
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: modules/mycred-module-buddypress.php:31
|
1020 |
+
msgid "My History"
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: modules/mycred-module-buddypress.php:32
|
1024 |
+
msgid "%s's History"
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: modules/mycred-module-buddypress.php:131
|
1028 |
+
msgid "Current balance"
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: modules/mycred-module-buddypress.php:236
|
1032 |
+
#: modules/mycred-module-buddypress.php:249
|
1033 |
+
#: includes/classes/class.query-log.php:1194
|
1034 |
+
msgid "All"
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
+
#: modules/mycred-module-buddypress.php:237
|
1038 |
+
#: includes/classes/class.query-log.php:1195
|
1039 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:190
|
1040 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:320
|
1041 |
+
msgid "Today"
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: modules/mycred-module-buddypress.php:238
|
1045 |
+
#: includes/classes/class.query-log.php:1196
|
1046 |
+
msgid "Yesterday"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: modules/mycred-module-buddypress.php:239
|
1050 |
+
#: includes/classes/class.query-log.php:1197
|
1051 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:191
|
1052 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:321
|
1053 |
+
msgid "This Week"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: modules/mycred-module-buddypress.php:240
|
1057 |
+
#: includes/classes/class.query-log.php:1198
|
1058 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:192
|
1059 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:322
|
1060 |
+
msgid "This Month"
|
1061 |
+
msgstr ""
|
1062 |
+
|
1063 |
+
#: modules/mycred-module-buddypress.php:350
|
1064 |
+
msgid "Show:"
|
1065 |
+
msgstr ""
|
1066 |
+
|
1067 |
+
#: modules/mycred-module-buddypress.php:350
|
1068 |
+
msgid "Go"
|
1069 |
+
msgstr ""
|
1070 |
+
|
1071 |
+
#: modules/mycred-module-buddypress.php:402
|
1072 |
+
#: addons/badges/myCRED-addon-badges.php:1146
|
1073 |
+
#: addons/badges/myCRED-addon-badges.php:1182
|
1074 |
+
#: addons/gateway/carts/mycred-woocommerce.php:151
|
1075 |
+
msgid "Do not show"
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: modules/mycred-module-buddypress.php:403
|
1079 |
+
#: addons/badges/myCRED-addon-badges.php:1147
|
1080 |
+
msgid "Include in Profile Header"
|
1081 |
+
msgstr ""
|
1082 |
+
|
1083 |
+
#: modules/mycred-module-buddypress.php:404
|
1084 |
+
#: addons/ranks/myCRED-addon-ranks.php:1455
|
1085 |
+
#: addons/badges/myCRED-addon-badges.php:1148
|
1086 |
+
msgid "Include under the \"Profile\" tab"
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
#: modules/mycred-module-buddypress.php:405
|
1090 |
+
#: addons/badges/myCRED-addon-badges.php:1149
|
1091 |
+
msgid "Include under the \"Profile\" tab and Profile Header"
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: modules/mycred-module-buddypress.php:409
|
1095 |
+
#: addons/ranks/myCRED-addon-ranks.php:1453
|
1096 |
+
#: addons/ranks/myCRED-addon-ranks.php:1498
|
1097 |
+
msgid "Do not show."
|
1098 |
+
msgstr ""
|
1099 |
+
|
1100 |
+
#: modules/mycred-module-buddypress.php:410
|
1101 |
+
msgid "Show in Profile"
|
1102 |
+
msgstr ""
|
1103 |
+
|
1104 |
+
#: modules/mycred-module-buddypress.php:427
|
1105 |
+
msgid "%singular% Balance"
|
1106 |
+
msgstr ""
|
1107 |
+
|
1108 |
+
#: modules/mycred-module-buddypress.php:444
|
1109 |
+
msgid "Members and visitors can view other members %_singular% balance."
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
#: modules/mycred-module-buddypress.php:449
|
1113 |
+
#: addons/ranks/myCRED-addon-ranks.php:1475
|
1114 |
+
#: addons/ranks/myCRED-addon-ranks.php:1520
|
1115 |
+
#: addons/notifications/myCRED-addon-notifications.php:199
|
1116 |
+
msgid "Template"
|
1117 |
+
msgstr ""
|
1118 |
+
|
1119 |
+
#: modules/mycred-module-buddypress.php:454
|
1120 |
+
msgid "%plural% History"
|
1121 |
+
msgstr ""
|
1122 |
+
|
1123 |
+
#: modules/mycred-module-buddypress.php:471
|
1124 |
+
msgid "Members can view each others %_plural% history."
|
1125 |
+
msgstr ""
|
1126 |
+
|
1127 |
+
#: modules/mycred-module-buddypress.php:476
|
1128 |
+
msgid "Menu Title"
|
1129 |
+
msgstr ""
|
1130 |
+
|
1131 |
+
#: modules/mycred-module-buddypress.php:478
|
1132 |
+
msgid "Title shown to me"
|
1133 |
+
msgstr ""
|
1134 |
+
|
1135 |
+
#: modules/mycred-module-buddypress.php:483
|
1136 |
+
msgid "Title shown to others. Use %s to show the first name."
|
1137 |
+
msgstr ""
|
1138 |
+
|
1139 |
+
#: modules/mycred-module-buddypress.php:488
|
1140 |
+
msgid "Menu Position"
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: modules/mycred-module-buddypress.php:490
|
1144 |
+
msgid "Current menu positions:"
|
1145 |
+
msgstr ""
|
1146 |
+
|
1147 |
+
#: modules/mycred-module-buddypress.php:495
|
1148 |
+
msgid "History URL slug"
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: modules/mycred-module-buddypress.php:497
|
1152 |
+
msgid "Do not use empty spaces!"
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: modules/mycred-module-buddypress.php:502
|
1156 |
+
msgid "Number of history entries to show"
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: plugins/mycred-hook-invite-anyone.php:15
|
1160 |
+
msgid "Invite Anyone Plugin"
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: plugins/mycred-hook-invite-anyone.php:16
|
1164 |
+
msgid ""
|
1165 |
+
"Awards %_plural% for sending invitations and/or %_plural% if the invite is "
|
1166 |
+
"accepted."
|
1167 |
+
msgstr ""
|
1168 |
+
|
1169 |
+
#: plugins/mycred-hook-invite-anyone.php:204
|
1170 |
+
msgid "%plural% for Sending An Invite"
|
1171 |
+
msgstr ""
|
1172 |
+
|
1173 |
+
#: plugins/mycred-hook-invite-anyone.php:211
|
1174 |
+
#: plugins/mycred-hook-invite-anyone.php:232
|
1175 |
+
#: plugins/mycred-hook-wp-postratings.php:173
|
1176 |
+
#: plugins/mycred-hook-wp-postratings.php:192
|
1177 |
+
#: plugins/mycred-hook-gravityforms.php:165
|
1178 |
+
#: plugins/mycred-hook-simplepress.php:309
|
1179 |
+
#: plugins/mycred-hook-simplepress.php:322
|
1180 |
+
#: plugins/mycred-hook-simplepress.php:339
|
1181 |
+
#: plugins/mycred-hook-simplepress.php:357
|
1182 |
+
#: plugins/mycred-hook-buddypress.php:621
|
1183 |
+
#: plugins/mycred-hook-buddypress.php:638
|
1184 |
+
#: plugins/mycred-hook-buddypress.php:655
|
1185 |
+
#: plugins/mycred-hook-buddypress.php:672
|
1186 |
+
#: plugins/mycred-hook-buddypress.php:692
|
1187 |
+
#: plugins/mycred-hook-buddypress.php:705
|
1188 |
+
#: plugins/mycred-hook-buddypress.php:722
|
1189 |
+
#: plugins/mycred-hook-buddypress.php:735
|
1190 |
+
#: plugins/mycred-hook-buddypress.php:752
|
1191 |
+
#: plugins/mycred-hook-buddypress.php:765
|
1192 |
+
#: plugins/mycred-hook-buddypress.php:782
|
1193 |
+
#: plugins/mycred-hook-buddypress.php:799
|
1194 |
+
#: plugins/mycred-hook-buddypress.php:1429
|
1195 |
+
#: plugins/mycred-hook-buddypress.php:1442
|
1196 |
+
#: plugins/mycred-hook-buddypress.php:1459
|
1197 |
+
#: plugins/mycred-hook-buddypress.php:1476
|
1198 |
+
#: plugins/mycred-hook-buddypress.php:1493
|
1199 |
+
#: plugins/mycred-hook-buddypress.php:1510
|
1200 |
+
#: plugins/mycred-hook-buddypress.php:1528
|
1201 |
+
#: plugins/mycred-hook-buddypress.php:1541
|
1202 |
+
#: plugins/mycred-hook-buddypress.php:1558
|
1203 |
+
#: plugins/mycred-hook-buddypress.php:1575
|
1204 |
+
#: plugins/mycred-hook-buddypress.php:1592
|
1205 |
+
#: plugins/mycred-hook-affiliatewp.php:229
|
1206 |
+
#: plugins/mycred-hook-affiliatewp.php:246
|
1207 |
+
#: plugins/mycred-hook-sharethis.php:267
|
1208 |
+
#: plugins/mycred-hook-buddypress-media.php:316
|
1209 |
+
#: plugins/mycred-hook-buddypress-media.php:330
|
1210 |
+
#: plugins/mycred-hook-buddypress-media.php:344
|
1211 |
+
#: plugins/mycred-hook-buddypress-media.php:357
|
1212 |
+
#: plugins/mycred-hook-buddypress-media.php:367
|
1213 |
+
#: plugins/mycred-hook-buddypress-media.php:377
|
1214 |
+
#: plugins/mycred-hook-contact-form7.php:168
|
1215 |
+
#: plugins/mycred-hook-jetpack.php:545 plugins/mycred-hook-jetpack.php:558
|
1216 |
+
#: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:456
|
1217 |
+
#: plugins/mycred-hook-bbPress.php:473 plugins/mycred-hook-bbPress.php:491
|
1218 |
+
#: plugins/mycred-hook-bbPress.php:508 plugins/mycred-hook-bbPress.php:525
|
1219 |
+
#: plugins/mycred-hook-bbPress.php:551 plugins/mycred-hook-badgeOS.php:336
|
1220 |
+
#: addons/badges/myCRED-addon-badges.php:949
|
1221 |
+
msgid "Log template"
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: plugins/mycred-hook-invite-anyone.php:216
|
1225 |
+
#: plugins/mycred-hook-invite-anyone.php:219
|
1226 |
+
#: plugins/mycred-hook-invite-anyone.php:237
|
1227 |
+
#: plugins/mycred-hook-invite-anyone.php:240
|
1228 |
+
#: plugins/mycred-hook-wp-postratings.php:165
|
1229 |
+
#: plugins/mycred-hook-wp-postratings.php:184
|
1230 |
+
#: plugins/mycred-hook-gravityforms.php:160
|
1231 |
+
#: plugins/mycred-hook-simplepress.php:304
|
1232 |
+
#: plugins/mycred-hook-simplepress.php:334
|
1233 |
+
#: plugins/mycred-hook-buddypress.php:616
|
1234 |
+
#: plugins/mycred-hook-buddypress.php:633
|
1235 |
+
#: plugins/mycred-hook-buddypress.php:650
|
1236 |
+
#: plugins/mycred-hook-buddypress.php:667
|
1237 |
+
#: plugins/mycred-hook-buddypress.php:684
|
1238 |
+
#: plugins/mycred-hook-buddypress.php:717
|
1239 |
+
#: plugins/mycred-hook-buddypress.php:747
|
1240 |
+
#: plugins/mycred-hook-buddypress.php:777
|
1241 |
+
#: plugins/mycred-hook-buddypress.php:794
|
1242 |
+
#: plugins/mycred-hook-buddypress.php:1454
|
1243 |
+
#: plugins/mycred-hook-buddypress.php:1471
|
1244 |
+
#: plugins/mycred-hook-buddypress.php:1488
|
1245 |
+
#: plugins/mycred-hook-buddypress.php:1505
|
1246 |
+
#: plugins/mycred-hook-buddypress.php:1523
|
1247 |
+
#: plugins/mycred-hook-buddypress.php:1553
|
1248 |
+
#: plugins/mycred-hook-buddypress.php:1570
|
1249 |
+
#: plugins/mycred-hook-buddypress.php:1587
|
1250 |
+
#: plugins/mycred-hook-affiliatewp.php:241
|
1251 |
+
#: plugins/mycred-hook-events-manager-light.php:205
|
1252 |
+
#: plugins/mycred-hook-sharethis.php:262
|
1253 |
+
#: plugins/mycred-hook-buddypress-media.php:312
|
1254 |
+
#: plugins/mycred-hook-buddypress-media.php:326
|
1255 |
+
#: plugins/mycred-hook-buddypress-media.php:340
|
1256 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:222
|
1257 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:240
|
1258 |
+
#: plugins/mycred-hook-contact-form7.php:163
|
1259 |
+
#: plugins/mycred-hook-bbPress.php:438 plugins/mycred-hook-bbPress.php:468
|
1260 |
+
#: plugins/mycred-hook-bbPress.php:503 plugins/mycred-hook-bbPress.php:520
|
1261 |
+
#: plugins/mycred-hook-woocommerce.php:336
|
1262 |
+
#: includes/shortcodes/mycred_hook_table.php:81
|
1263 |
+
#: addons/transfer/myCRED-addon-transfer.php:478
|
1264 |
+
msgid "Limit"
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: plugins/mycred-hook-invite-anyone.php:224
|
1268 |
+
msgid "%plural% for Accepting An Invite"
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: plugins/mycred-hook-invite-anyone.php:228
|
1272 |
+
msgid "%plural% for each invited user that accepts an invitation."
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: plugins/mycred-hook-wp-polls.php:15
|
1276 |
+
msgid "WP-Polls"
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: plugins/mycred-hook-wp-polls.php:16
|
1280 |
+
msgid "Awards %_plural% for users voting in polls."
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: plugins/mycred-hook-wp-polls.php:154
|
1284 |
+
#: plugins/mycred-hook-events-manager-light.php:209
|
1285 |
+
#: plugins/mycred-hook-events-manager-light.php:222
|
1286 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:226
|
1287 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:244
|
1288 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:258
|
1289 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:271
|
1290 |
+
#: plugins/mycred-hook-woocommerce.php:340 plugins/mycred-hook-badgeOS.php:143
|
1291 |
+
#: plugins/mycred-hook-badgeOS.php:145 plugins/mycred-hook-badgeOS.php:156
|
1292 |
+
#: addons/coupons/myCRED-addon-coupons.php:661
|
1293 |
+
#: addons/banking/services/mycred-service-interest.php:510
|
1294 |
+
#: addons/banking/services/mycred-service-payouts.php:710
|
1295 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:400
|
1296 |
+
#: addons/gateway/carts/mycred-woocommerce.php:103
|
1297 |
+
#: addons/gateway/carts/mycred-woocommerce.php:175
|
1298 |
+
#: addons/buy-creds/modules/buycred-module-core.php:357
|
1299 |
+
#: addons/buy-creds/modules/buycred-module-core.php:420
|
1300 |
+
msgid "Log Template"
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: plugins/mycred-hook-wp-postratings.php:15
|
1304 |
+
msgid "Post Ratings"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: plugins/mycred-hook-wp-postratings.php:16
|
1308 |
+
msgid ""
|
1309 |
+
"Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
|
1310 |
+
"author and the user rating."
|
1311 |
+
msgstr ""
|
1312 |
+
|
1313 |
+
#: plugins/mycred-hook-wp-postratings.php:84
|
1314 |
+
msgid "Based on rating"
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
+
#: plugins/mycred-hook-wp-postratings.php:159
|
1318 |
+
#: includes/classes/class.query-log.php:1628
|
1319 |
+
msgid "Adding a Rating"
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: plugins/mycred-hook-wp-postratings.php:169
|
1323 |
+
#: plugins/mycred-hook-wp-postratings.php:188
|
1324 |
+
msgid "Use the Rating Value instead of the amount set here."
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: plugins/mycred-hook-wp-postratings.php:178
|
1328 |
+
#: includes/classes/class.query-log.php:1629
|
1329 |
+
msgid "Receiving a Rating"
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: plugins/mycred-hook-gravityforms.php:15
|
1333 |
+
msgid "Gravityform Submissions"
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: plugins/mycred-hook-gravityforms.php:16
|
1337 |
+
msgid "Awards %_plural% for successful form submissions."
|
1338 |
+
msgstr ""
|
1339 |
+
|
1340 |
+
#: plugins/mycred-hook-gravityforms.php:129
|
1341 |
+
#: plugins/mycred-hook-contact-form7.php:130
|
1342 |
+
msgid "No forms found."
|
1343 |
+
msgstr ""
|
1344 |
+
|
1345 |
+
#: plugins/mycred-hook-simplepress.php:16
|
1346 |
+
msgid "Awards %_plural% for Simple:Press actions."
|
1347 |
+
msgstr ""
|
1348 |
+
|
1349 |
+
#: plugins/mycred-hook-simplepress.php:298 plugins/mycred-hook-bbPress.php:462
|
1350 |
+
msgid "%plural% for New Topic"
|
1351 |
+
msgstr ""
|
1352 |
+
|
1353 |
+
#: plugins/mycred-hook-simplepress.php:315 plugins/mycred-hook-bbPress.php:484
|
1354 |
+
msgid "%plural% for Topic Deletion"
|
1355 |
+
msgstr ""
|
1356 |
+
|
1357 |
+
#: plugins/mycred-hook-simplepress.php:328
|
1358 |
+
msgid "%plural% for New Topic Post"
|
1359 |
+
msgstr ""
|
1360 |
+
|
1361 |
+
#: plugins/mycred-hook-simplepress.php:346
|
1362 |
+
msgid "Topic authors can receive %_plural% for posting on their own Topic"
|
1363 |
+
msgstr ""
|
1364 |
+
|
1365 |
+
#: plugins/mycred-hook-simplepress.php:350
|
1366 |
+
msgid "%plural% for Topic Post Deletion"
|
1367 |
+
msgstr ""
|
1368 |
+
|
1369 |
+
#: plugins/mycred-hook-buddypress.php:16
|
1370 |
+
msgid "BuddyPress: Members"
|
1371 |
+
msgstr ""
|
1372 |
+
|
1373 |
+
#: plugins/mycred-hook-buddypress.php:17
|
1374 |
+
msgid "Awards %_plural% for profile related actions."
|
1375 |
+
msgstr ""
|
1376 |
+
|
1377 |
+
#: plugins/mycred-hook-buddypress.php:24
|
1378 |
+
msgid "BuddyPress: Groups"
|
1379 |
+
msgstr ""
|
1380 |
+
|
1381 |
+
#: plugins/mycred-hook-buddypress.php:25
|
1382 |
+
msgid ""
|
1383 |
+
"Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
|
1384 |
+
"zero to disable a specific hook."
|
1385 |
+
msgstr ""
|
1386 |
+
|
1387 |
+
#: plugins/mycred-hook-buddypress.php:307
|
1388 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:591
|
1389 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:636
|
1390 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:727
|
1391 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:415
|
1392 |
+
msgid "Insufficient Funds"
|
1393 |
+
msgstr ""
|
1394 |
+
|
1395 |
+
#: plugins/mycred-hook-buddypress.php:610
|
1396 |
+
msgid "New Profile Activity"
|
1397 |
+
msgstr ""
|
1398 |
+
|
1399 |
+
#: plugins/mycred-hook-buddypress.php:627
|
1400 |
+
msgid "Deleted Profile Activity"
|
1401 |
+
msgstr ""
|
1402 |
+
|
1403 |
+
#: plugins/mycred-hook-buddypress.php:644
|
1404 |
+
msgid "New Profile Avatar"
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: plugins/mycred-hook-buddypress.php:661
|
1408 |
+
msgid "New Profile Cover Image"
|
1409 |
+
msgstr ""
|
1410 |
+
|
1411 |
+
#: plugins/mycred-hook-buddypress.php:678
|
1412 |
+
#: includes/classes/class.query-log.php:1564
|
1413 |
+
msgid "New Friendship"
|
1414 |
+
msgstr ""
|
1415 |
+
|
1416 |
+
#: plugins/mycred-hook-buddypress.php:688
|
1417 |
+
msgid ""
|
1418 |
+
"Users with zero balance can not add friends. Requires that you deduct "
|
1419 |
+
"%_plural% for adding a new friend."
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: plugins/mycred-hook-buddypress.php:698
|
1423 |
+
msgid "Ending Friendship"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: plugins/mycred-hook-buddypress.php:711
|
1427 |
+
msgid "New Comment"
|
1428 |
+
msgstr ""
|
1429 |
+
|
1430 |
+
#: plugins/mycred-hook-buddypress.php:728
|
1431 |
+
#: includes/classes/class.query-log.php:1552
|
1432 |
+
msgid "Deleted Comment"
|
1433 |
+
msgstr ""
|
1434 |
+
|
1435 |
+
#: plugins/mycred-hook-buddypress.php:741
|
1436 |
+
msgid "Favorit Activity"
|
1437 |
+
msgstr ""
|
1438 |
+
|
1439 |
+
#: plugins/mycred-hook-buddypress.php:758
|
1440 |
+
msgid "Removing Favorit Activity"
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: plugins/mycred-hook-buddypress.php:771
|
1444 |
+
msgid "New Private Message"
|
1445 |
+
msgstr ""
|
1446 |
+
|
1447 |
+
#: plugins/mycred-hook-buddypress.php:788
|
1448 |
+
#: includes/classes/class.query-log.php:1571
|
1449 |
+
msgid "Sending Gift"
|
1450 |
+
msgstr ""
|
1451 |
+
|
1452 |
+
#: plugins/mycred-hook-buddypress.php:1415
|
1453 |
+
msgid "%plural% for Creating Groups"
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: plugins/mycred-hook-buddypress.php:1419
|
1457 |
+
msgid ""
|
1458 |
+
"If you use a negative value and the user does not have enough %_plural% the "
|
1459 |
+
"\"Create Group\" button will be disabled."
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: plugins/mycred-hook-buddypress.php:1423
|
1463 |
+
msgid "Number of members before awarding %_plural%"
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: plugins/mycred-hook-buddypress.php:1425
|
1467 |
+
msgid "Use zero to award %_plural% when group is created."
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: plugins/mycred-hook-buddypress.php:1435
|
1471 |
+
msgid "%plural% for Deleting Groups"
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: plugins/mycred-hook-buddypress.php:1448
|
1475 |
+
msgid "%plural% for New Forum Topic"
|
1476 |
+
msgstr ""
|
1477 |
+
|
1478 |
+
#: plugins/mycred-hook-buddypress.php:1465
|
1479 |
+
msgid "%plural% for Editing Forum Topic"
|
1480 |
+
msgstr ""
|
1481 |
+
|
1482 |
+
#: plugins/mycred-hook-buddypress.php:1482
|
1483 |
+
msgid "%plural% for New Forum Post"
|
1484 |
+
msgstr ""
|
1485 |
+
|
1486 |
+
#: plugins/mycred-hook-buddypress.php:1499
|
1487 |
+
msgid "%plural% for Editing Forum Post"
|
1488 |
+
msgstr ""
|
1489 |
+
|
1490 |
+
#: plugins/mycred-hook-buddypress.php:1516
|
1491 |
+
msgid "%plural% for Joining Groups"
|
1492 |
+
msgstr ""
|
1493 |
+
|
1494 |
+
#: plugins/mycred-hook-buddypress.php:1520
|
1495 |
+
msgid ""
|
1496 |
+
"If you use a negative value and the user does not have enough %_plural% the "
|
1497 |
+
"\"Join Group\" button will be disabled."
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: plugins/mycred-hook-buddypress.php:1534
|
1501 |
+
msgid "%plural% for Leaving Groups"
|
1502 |
+
msgstr ""
|
1503 |
+
|
1504 |
+
#: plugins/mycred-hook-buddypress.php:1547
|
1505 |
+
msgid "%plural% for New Group Avatar"
|
1506 |
+
msgstr ""
|
1507 |
+
|
1508 |
+
#: plugins/mycred-hook-buddypress.php:1564
|
1509 |
+
msgid "%plural% for New Cover Image"
|
1510 |
+
msgstr ""
|
1511 |
+
|
1512 |
+
#: plugins/mycred-hook-buddypress.php:1581
|
1513 |
+
msgid "%plural% for New Group Comment"
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: plugins/mycred-hook-affiliatewp.php:15
|
1517 |
+
msgid "AffiliateWP"
|
1518 |
+
msgstr ""
|
1519 |
+
|
1520 |
+
#: plugins/mycred-hook-affiliatewp.php:16
|
1521 |
+
msgid ""
|
1522 |
+
"Awards %_plural% for affiliate signups, referring visitors and store sale "
|
1523 |
+
"referrals."
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: plugins/mycred-hook-affiliatewp.php:222
|
1527 |
+
msgid "Affiliate Signup"
|
1528 |
+
msgstr ""
|
1529 |
+
|
1530 |
+
#: plugins/mycred-hook-affiliatewp.php:235
|
1531 |
+
msgid "Referring Visitors"
|
1532 |
+
msgstr ""
|
1533 |
+
|
1534 |
+
#: plugins/mycred-hook-affiliatewp.php:252
|
1535 |
+
msgid "Referring Sales"
|
1536 |
+
msgstr ""
|
1537 |
+
|
1538 |
+
#: plugins/mycred-hook-affiliatewp.php:255
|
1539 |
+
msgid "Pay a set amount for all referrals."
|
1540 |
+
msgstr ""
|
1541 |
+
|
1542 |
+
#: plugins/mycred-hook-affiliatewp.php:256
|
1543 |
+
msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
|
1544 |
+
msgstr ""
|
1545 |
+
|
1546 |
+
#: plugins/mycred-hook-affiliatewp.php:257
|
1547 |
+
msgid "Apply an exchange rate against the referral amount."
|
1548 |
+
msgstr ""
|
1549 |
+
|
1550 |
+
#: plugins/mycred-hook-affiliatewp.php:265
|
1551 |
+
msgid "Log template - Payout"
|
1552 |
+
msgstr ""
|
1553 |
+
|
1554 |
+
#: plugins/mycred-hook-affiliatewp.php:270
|
1555 |
+
msgid "Log template - Refund"
|
1556 |
+
msgstr ""
|
1557 |
+
|
1558 |
+
#: plugins/mycred-hook-events-manager-light.php:15
|
1559 |
+
msgid "Events Manager"
|
1560 |
+
msgstr ""
|
1561 |
+
|
1562 |
+
#: plugins/mycred-hook-events-manager-light.php:16
|
1563 |
+
msgid "Awards %_plural% for users attending events."
|
1564 |
+
msgstr ""
|
1565 |
+
|
1566 |
+
#: plugins/mycred-hook-events-manager-light.php:199
|
1567 |
+
msgid "Attending Event"
|
1568 |
+
msgstr ""
|
1569 |
+
|
1570 |
+
#: plugins/mycred-hook-events-manager-light.php:216
|
1571 |
+
msgid "Cancelling Attendance"
|
1572 |
+
msgstr ""
|
1573 |
+
|
1574 |
+
#: plugins/mycred-hook-sharethis.php:15
|
1575 |
+
msgid "%plural% for Sharing"
|
1576 |
+
msgstr ""
|
1577 |
+
|
1578 |
+
#: plugins/mycred-hook-sharethis.php:16
|
1579 |
+
msgid ""
|
1580 |
+
"Awards %_plural% for users sharing / liking your website content to popular "
|
1581 |
+
"social media sites."
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: plugins/mycred-hook-sharethis.php:217
|
1585 |
+
msgid "Your ShareThis public key is not set."
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: plugins/mycred-hook-sharethis.php:222
|
1589 |
+
msgid "No ShareThis services detected. Please check your installation."
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: plugins/mycred-hook-buddypress-media.php:15
|
1593 |
+
msgid "rtMedia Galleries"
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: plugins/mycred-hook-buddypress-media.php:16
|
1597 |
+
msgid ""
|
1598 |
+
"Award / Deduct %_plural% for users creating albums or uploading new photos."
|
1599 |
+
msgstr ""
|
1600 |
+
|
1601 |
+
#: plugins/mycred-hook-buddypress-media.php:305
|
1602 |
+
msgid "New Media Upload"
|
1603 |
+
msgstr ""
|
1604 |
+
|
1605 |
+
#: plugins/mycred-hook-buddypress-media.php:308
|
1606 |
+
#: includes/classes/class.query-log.php:1586
|
1607 |
+
msgid "Photo Upload"
|
1608 |
+
msgstr ""
|
1609 |
+
|
1610 |
+
#: plugins/mycred-hook-buddypress-media.php:322
|
1611 |
+
#: includes/classes/class.query-log.php:1587
|
1612 |
+
msgid "Video Upload"
|
1613 |
+
msgstr ""
|
1614 |
+
|
1615 |
+
#: plugins/mycred-hook-buddypress-media.php:336
|
1616 |
+
#: includes/classes/class.query-log.php:1588
|
1617 |
+
msgid "Music Upload"
|
1618 |
+
msgstr ""
|
1619 |
+
|
1620 |
+
#: plugins/mycred-hook-buddypress-media.php:350
|
1621 |
+
msgid "Delete Media"
|
1622 |
+
msgstr ""
|
1623 |
+
|
1624 |
+
#: plugins/mycred-hook-buddypress-media.php:353
|
1625 |
+
msgid "Delete Photo"
|
1626 |
+
msgstr ""
|
1627 |
+
|
1628 |
+
#: plugins/mycred-hook-buddypress-media.php:363
|
1629 |
+
msgid "Delete Video"
|
1630 |
+
msgstr ""
|
1631 |
+
|
1632 |
+
#: plugins/mycred-hook-buddypress-media.php:373
|
1633 |
+
msgid "Delete Music"
|
1634 |
+
msgstr ""
|
1635 |
+
|
1636 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:15
|
1637 |
+
msgid "WP Favorite Posts"
|
1638 |
+
msgstr ""
|
1639 |
+
|
1640 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:16
|
1641 |
+
msgid "Awards %_plural% for users adding posts to their favorites."
|
1642 |
+
msgstr ""
|
1643 |
+
|
1644 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:216
|
1645 |
+
msgid "Adding Content to Favorites"
|
1646 |
+
msgstr ""
|
1647 |
+
|
1648 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:234
|
1649 |
+
msgid "Authors Content added to favorites"
|
1650 |
+
msgstr ""
|
1651 |
+
|
1652 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:252
|
1653 |
+
msgid "Removing Content from Favorites"
|
1654 |
+
msgstr ""
|
1655 |
+
|
1656 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:265
|
1657 |
+
msgid "Removing Content from Favorites (Author)"
|
1658 |
+
msgstr ""
|
1659 |
+
|
1660 |
+
#: plugins/mycred-hook-contact-form7.php:15
|
1661 |
+
msgid "Contact Form 7 Form Submissions"
|
1662 |
+
msgstr ""
|
1663 |
+
|
1664 |
+
#: plugins/mycred-hook-contact-form7.php:16
|
1665 |
+
msgid "Awards %_plural% for successful form submissions (by logged in users)."
|
1666 |
+
msgstr ""
|
1667 |
+
|
1668 |
+
#: plugins/mycred-hook-jetpack.php:15
|
1669 |
+
msgid "Jetpack Subscriptions"
|
1670 |
+
msgstr ""
|
1671 |
+
|
1672 |
+
#: plugins/mycred-hook-jetpack.php:16
|
1673 |
+
msgid ""
|
1674 |
+
"Awards %_plural% for users signing up for site or comment updates using "
|
1675 |
+
"Jetpack."
|
1676 |
+
msgstr ""
|
1677 |
+
|
1678 |
+
#: plugins/mycred-hook-jetpack.php:538
|
1679 |
+
msgid "Site Subscriptions"
|
1680 |
+
msgstr ""
|
1681 |
+
|
1682 |
+
#: plugins/mycred-hook-jetpack.php:551
|
1683 |
+
msgid "Comment Subscriptions"
|
1684 |
+
msgstr ""
|
1685 |
+
|
1686 |
+
#: plugins/mycred-hook-bbPress.php:16
|
1687 |
+
msgid "Awards %_plural% for bbPress actions."
|
1688 |
+
msgstr ""
|
1689 |
+
|
1690 |
+
#: plugins/mycred-hook-bbPress.php:432
|
1691 |
+
msgid "%plural% for New Forum"
|
1692 |
+
msgstr ""
|
1693 |
+
|
1694 |
+
#: plugins/mycred-hook-bbPress.php:449
|
1695 |
+
msgid "%plural% for Forum Deletion"
|
1696 |
+
msgstr ""
|
1697 |
+
|
1698 |
+
#: plugins/mycred-hook-bbPress.php:480
|
1699 |
+
msgid "Forum authors can receive %_plural% for creating new topics."
|
1700 |
+
msgstr ""
|
1701 |
+
|
1702 |
+
#: plugins/mycred-hook-bbPress.php:497
|
1703 |
+
msgid "%plural% for Favorited Topic"
|
1704 |
+
msgstr ""
|
1705 |
+
|
1706 |
+
#: plugins/mycred-hook-bbPress.php:514
|
1707 |
+
msgid "%plural% for New Reply"
|
1708 |
+
msgstr ""
|
1709 |
+
|
1710 |
+
#: plugins/mycred-hook-bbPress.php:532
|
1711 |
+
msgid "Topic authors can receive %_plural% for replying to their own Topic"
|
1712 |
+
msgstr ""
|
1713 |
+
|
1714 |
+
#: plugins/mycred-hook-bbPress.php:536
|
1715 |
+
msgid "Show users %_plural% balance in replies"
|
1716 |
+
msgstr ""
|
1717 |
+
|
1718 |
+
#: plugins/mycred-hook-bbPress.php:540
|
1719 |
+
msgid "Show users %_plural% balance in their bbPress profiles."
|
1720 |
+
msgstr ""
|
1721 |
+
|
1722 |
+
#: plugins/mycred-hook-bbPress.php:544
|
1723 |
+
msgid "%plural% for Reply Deletion"
|
1724 |
+
msgstr ""
|
1725 |
+
|
1726 |
+
#: plugins/mycred-hook-woocommerce.php:87
|
1727 |
+
msgid "Reward with %plural%"
|
1728 |
+
msgstr ""
|
1729 |
+
|
1730 |
+
#: plugins/mycred-hook-woocommerce.php:216
|
1731 |
+
msgid "WooCommerce Product Reviews"
|
1732 |
+
msgstr ""
|
1733 |
+
|
1734 |
+
#: plugins/mycred-hook-woocommerce.php:217
|
1735 |
+
msgid ""
|
1736 |
+
"Awards %_plural% for users leaving reviews on your WooCommerce products."
|
1737 |
+
msgstr ""
|
1738 |
+
|
1739 |
+
#: plugins/mycred-hook-badgeOS.php:15
|
1740 |
+
msgid "BadgeOS"
|
1741 |
+
msgstr ""
|
1742 |
+
|
1743 |
+
#: plugins/mycred-hook-badgeOS.php:16
|
1744 |
+
msgid ""
|
1745 |
+
"Default settings for each BadgeOS Achievement type. These settings may be "
|
1746 |
+
"overridden for individual achievement type."
|
1747 |
+
msgstr ""
|
1748 |
+
|
1749 |
+
#: plugins/mycred-hook-badgeOS.php:121
|
1750 |
+
msgid ""
|
1751 |
+
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
1752 |
+
"feature."
|
1753 |
+
msgstr ""
|
1754 |
+
|
1755 |
+
#: plugins/mycred-hook-badgeOS.php:137 plugins/mycred-hook-badgeOS.php:139
|
1756 |
+
msgid "%plural% to Award"
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: plugins/mycred-hook-badgeOS.php:141
|
1760 |
+
msgid "Use zero to disable"
|
1761 |
+
msgstr ""
|
1762 |
+
|
1763 |
+
#: plugins/mycred-hook-badgeOS.php:154
|
1764 |
+
msgid "Deduction Log Template"
|
1765 |
+
msgstr ""
|
1766 |
+
|
1767 |
+
#: plugins/mycred-hook-badgeOS.php:315
|
1768 |
+
msgid "Default %s for %s"
|
1769 |
+
msgstr ""
|
1770 |
+
|
1771 |
+
#: plugins/mycred-hook-badgeOS.php:322
|
1772 |
+
msgid "Use zero to disable users gaining %_plural%"
|
1773 |
+
msgstr ""
|
1774 |
+
|
1775 |
+
#: plugins/mycred-hook-badgeOS.php:326
|
1776 |
+
msgid "Default Log template"
|
1777 |
+
msgstr ""
|
1778 |
+
|
1779 |
+
#: includes/mycred-setup.php:50
|
1780 |
+
msgid "myCRED needs your attention."
|
1781 |
+
msgstr ""
|
1782 |
+
|
1783 |
+
#: includes/mycred-setup.php:50
|
1784 |
+
msgid "Run Setup"
|
1785 |
+
msgstr ""
|
1786 |
+
|
1787 |
+
#: includes/mycred-setup.php:63 includes/mycred-setup.php:64
|
1788 |
+
msgid "myCRED Setup"
|
1789 |
+
msgstr ""
|
1790 |
+
|
1791 |
+
#: includes/mycred-setup.php:105
|
1792 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:490
|
1793 |
+
msgid "%s Setup"
|
1794 |
+
msgstr ""
|
1795 |
+
|
1796 |
+
#: includes/mycred-setup.php:106
|
1797 |
+
msgid ""
|
1798 |
+
"Before you can begin using %s, you must setup your first point type. This "
|
1799 |
+
"includes what you want to call your points, how these points are presented "
|
1800 |
+
"and who has access to it."
|
1801 |
+
msgstr ""
|
1802 |
+
|
1803 |
+
#: includes/mycred-setup.php:111
|
1804 |
+
msgid "Your First Point Type"
|
1805 |
+
msgstr ""
|
1806 |
+
|
1807 |
+
#: includes/mycred-setup.php:127
|
1808 |
+
msgid "Advanced Settings"
|
1809 |
+
msgstr ""
|
1810 |
+
|
1811 |
+
#: includes/mycred-setup.php:133
|
1812 |
+
msgid "Change Default Point Type Key"
|
1813 |
+
msgstr ""
|
1814 |
+
|
1815 |
+
#: includes/mycred-setup.php:135
|
1816 |
+
msgid ""
|
1817 |
+
"You can change the meta key used to store the default point type using the "
|
1818 |
+
"MYCRED_DEFAULT_TYPE_KEY constant. Copy the above code to your wp-config.php "
|
1819 |
+
"file to use."
|
1820 |
+
msgstr ""
|
1821 |
+
|
1822 |
+
#: includes/mycred-setup.php:136
|
1823 |
+
msgid ""
|
1824 |
+
"If you intend to change the default meta key, you should do so before "
|
1825 |
+
"continuing on in this setup!"
|
1826 |
+
msgstr ""
|
1827 |
+
|
1828 |
+
#: includes/mycred-setup.php:139
|
1829 |
+
msgid "Whitelabel"
|
1830 |
+
msgstr ""
|
1831 |
+
|
1832 |
+
#: includes/mycred-setup.php:141
|
1833 |
+
msgid ""
|
1834 |
+
"You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
|
1835 |
+
"above code to your wp-config.php file to use."
|
1836 |
+
msgstr ""
|
1837 |
+
|
1838 |
+
#: includes/mycred-setup.php:149
|
1839 |
+
msgid "Create Point Type"
|
1840 |
+
msgstr ""
|
1841 |
+
|
1842 |
+
#: includes/mycred-setup.php:149
|
1843 |
+
msgid "Hide"
|
1844 |
+
msgstr ""
|
1845 |
+
|
1846 |
+
#: includes/mycred-setup.php:149 includes/mycred-setup.php:149
|
1847 |
+
msgid "Advanced"
|
1848 |
+
msgstr ""
|
1849 |
+
|
1850 |
+
#: includes/mycred-setup.php:155
|
1851 |
+
msgid "Processing ..."
|
1852 |
+
msgstr ""
|
1853 |
+
|
1854 |
+
#: includes/mycred-setup.php:160
|
1855 |
+
msgid "Setup Complete!"
|
1856 |
+
msgstr ""
|
1857 |
+
|
1858 |
+
#: includes/mycred-setup.php:161
|
1859 |
+
msgid "Congratulations! You are now ready to use myCRED. What's next?"
|
1860 |
+
msgstr ""
|
1861 |
+
|
1862 |
+
#: includes/mycred-setup.php:166
|
1863 |
+
msgid "Enabling Hooks"
|
1864 |
+
msgstr ""
|
1865 |
+
|
1866 |
+
#: includes/mycred-setup.php:167
|
1867 |
+
msgid ""
|
1868 |
+
"If you intend to give your users points for interacting with your website "
|
1869 |
+
"automatically, your next step should be to enable and setup the hooks you "
|
1870 |
+
"want to use."
|
1871 |
+
msgstr ""
|
1872 |
+
|
1873 |
+
#: includes/mycred-setup.php:168
|
1874 |
+
msgid "Setup Hooks"
|
1875 |
+
msgstr ""
|
1876 |
+
|
1877 |
+
#: includes/mycred-setup.php:172
|
1878 |
+
msgid ""
|
1879 |
+
"If you want to use advanced features such as Transfers, Point Purchases etc. "
|
1880 |
+
"your next step should be to enable and setup your add-ons."
|
1881 |
+
msgstr ""
|
1882 |
+
|
1883 |
+
#: includes/mycred-setup.php:173
|
1884 |
+
msgid "Setup Add-ons"
|
1885 |
+
msgstr ""
|
1886 |
+
|
1887 |
+
#: includes/mycred-setup.php:176
|
1888 |
+
msgid "Adjust Settings"
|
1889 |
+
msgstr ""
|
1890 |
+
|
1891 |
+
#: includes/mycred-setup.php:177
|
1892 |
+
msgid ""
|
1893 |
+
"If you need to make further changes to your settings or add new point types, "
|
1894 |
+
"you can visit your default point type's settings."
|
1895 |
+
msgstr ""
|
1896 |
+
|
1897 |
+
#: includes/mycred-setup.php:178
|
1898 |
+
msgid "View Settings"
|
1899 |
+
msgstr ""
|
1900 |
+
|
1901 |
+
#: includes/mycred-setup.php:322
|
1902 |
+
msgid "Set to decimals to zero if you prefer to use whole numbers."
|
1903 |
+
msgstr ""
|
1904 |
+
|
1905 |
+
#: includes/mycred-setup.php:442
|
1906 |
+
msgid "Please make sure you fill out all required fields!"
|
1907 |
+
msgstr ""
|
1908 |
+
|
1909 |
+
#: includes/mycred-remote.php:581
|
1910 |
+
msgid "This feature requires WordPress Permalinks to be setup and enabled!"
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: includes/mycred-remote.php:585
|
1914 |
+
msgid "Click Update Settings to load the Remote API settings."
|
1915 |
+
msgstr ""
|
1916 |
+
|
1917 |
+
#: includes/mycred-remote.php:588
|
1918 |
+
msgid "Allow Remote Access"
|
1919 |
+
msgstr ""
|
1920 |
+
|
1921 |
+
#: includes/mycred-remote.php:613
|
1922 |
+
msgid "Remote Access"
|
1923 |
+
msgstr ""
|
1924 |
+
|
1925 |
+
#: includes/mycred-remote.php:615 addons/buy-creds/gateways/bitpay.php:245
|
1926 |
+
msgid "API Key"
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
+
#: includes/mycred-remote.php:618
|
1930 |
+
msgid "Key"
|
1931 |
+
msgstr ""
|
1932 |
+
|
1933 |
+
#: includes/mycred-remote.php:619
|
1934 |
+
msgid "16, 24 or 32 characters"
|
1935 |
+
msgstr ""
|
1936 |
+
|
1937 |
+
#: includes/mycred-remote.php:620
|
1938 |
+
msgid "Required for this feature to work!<br />Minimum 12 characters."
|
1939 |
+
msgstr ""
|
1940 |
+
|
1941 |
+
#: includes/mycred-remote.php:623
|
1942 |
+
msgid "Key Length"
|
1943 |
+
msgstr ""
|
1944 |
+
|
1945 |
+
#: includes/mycred-remote.php:628
|
1946 |
+
msgid "Generate New Key"
|
1947 |
+
msgstr ""
|
1948 |
+
|
1949 |
+
#: includes/mycred-remote.php:630
|
1950 |
+
msgid "Warning!"
|
1951 |
+
msgstr ""
|
1952 |
+
|
1953 |
+
#: includes/mycred-remote.php:630
|
1954 |
+
msgid ""
|
1955 |
+
"Keep this key safe! Those you share this key with will be able to remotely "
|
1956 |
+
"deduct / add / transfer %plural%!"
|
1957 |
+
msgstr ""
|
1958 |
+
|
1959 |
+
#: includes/mycred-remote.php:632
|
1960 |
+
msgid "Incoming URI"
|
1961 |
+
msgstr ""
|
1962 |
+
|
1963 |
+
#: includes/mycred-remote.php:636
|
1964 |
+
msgid ""
|
1965 |
+
"The incoming call address. Remote calls made to any other URL will be "
|
1966 |
+
"ignored."
|
1967 |
+
msgstr ""
|
1968 |
+
|
1969 |
+
#: includes/mycred-remote.php:639
|
1970 |
+
msgid "Debug Mode"
|
1971 |
+
msgstr ""
|
1972 |
+
|
1973 |
+
#: includes/mycred-remote.php:642
|
1974 |
+
msgid ""
|
1975 |
+
"Remember to disable when not used to prevent mischievous calls from learning "
|
1976 |
+
"about your setup!"
|
1977 |
+
msgstr ""
|
1978 |
+
|
1979 |
+
#: includes/mycred-about.php:32
|
1980 |
+
msgid "Welcome to %s %s"
|
1981 |
+
msgstr ""
|
1982 |
+
|
1983 |
+
#: includes/mycred-overview.php:25
|
1984 |
+
msgid "%s Overview"
|
1985 |
+
msgstr ""
|
1986 |
+
|
1987 |
+
#: includes/mycred-overview.php:82
|
1988 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:136
|
1989 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:265
|
1990 |
+
msgid "Total amount in circulation"
|
1991 |
+
msgstr ""
|
1992 |
+
|
1993 |
+
#: includes/mycred-overview.php:85
|
1994 |
+
msgid "Awarded"
|
1995 |
+
msgstr ""
|
1996 |
+
|
1997 |
+
#: includes/mycred-overview.php:88
|
1998 |
+
msgid "Deducted"
|
1999 |
+
msgstr ""
|
2000 |
+
|
2001 |
+
#: includes/mycred-install.php:63
|
2002 |
+
msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
|
2003 |
+
msgstr ""
|
2004 |
+
|
2005 |
+
#: includes/mycred-install.php:68
|
2006 |
+
msgid "myCRED requires PHP 5.3 or higher. Version detected: "
|
2007 |
+
msgstr ""
|
2008 |
+
|
2009 |
+
#: includes/mycred-install.php:73
|
2010 |
+
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
2011 |
+
msgstr ""
|
2012 |
+
|
2013 |
+
#: includes/mycred-install.php:78
|
2014 |
+
msgid ""
|
2015 |
+
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
2016 |
+
"check your PHP configuration or contact your host and ask them to enable it "
|
2017 |
+
"for you!"
|
2018 |
+
msgstr ""
|
2019 |
+
|
2020 |
+
#: includes/mycred-install.php:83
|
2021 |
+
msgid ""
|
2022 |
+
"Sorry but your WordPress installation does not reach the minimum "
|
2023 |
+
"requirements for running myCRED. The following errors were given:"
|
2024 |
+
msgstr ""
|
2025 |
+
|
2026 |
+
#: includes/mycred-widgets.php:19
|
2027 |
+
msgid "(%s) My Balance"
|
2028 |
+
msgstr ""
|
2029 |
+
|
2030 |
+
#: includes/mycred-widgets.php:22
|
2031 |
+
msgid "Show the current users balance and history."
|
2032 |
+
msgstr ""
|
2033 |
+
|
2034 |
+
#: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
|
2035 |
+
#: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1366
|
2036 |
+
#: addons/gateway/carts/mycred-woocommerce.php:91
|
2037 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:78
|
2038 |
+
#: addons/sell-content/includes/mycred-sell-shortcodes.php:186
|
2039 |
+
#: addons/buy-creds/gateways/bank-transfer.php:161
|
2040 |
+
#: addons/buy-creds/gateways/skrill.php:333
|
2041 |
+
msgid "Title"
|
2042 |
+
msgstr ""
|
2043 |
+
|
2044 |
+
#: includes/mycred-widgets.php:192
|
2045 |
+
msgid "Balance Layout"
|
2046 |
+
msgstr ""
|
2047 |
+
|
2048 |
+
#: includes/mycred-widgets.php:199
|
2049 |
+
msgid "Include history"
|
2050 |
+
msgstr ""
|
2051 |
+
|
2052 |
+
#: includes/mycred-widgets.php:203
|
2053 |
+
msgid "History Title"
|
2054 |
+
msgstr ""
|
2055 |
+
|
2056 |
+
#: includes/mycred-widgets.php:207
|
2057 |
+
msgid "Number of entires"
|
2058 |
+
msgstr ""
|
2059 |
+
|
2060 |
+
#: includes/mycred-widgets.php:211 includes/mycred-widgets.php:386
|
2061 |
+
msgid "Row layout"
|
2062 |
+
msgstr ""
|
2063 |
+
|
2064 |
+
#: includes/mycred-widgets.php:218 includes/mycred-widgets.php:586
|
2065 |
+
msgid "Show message when not logged in"
|
2066 |
+
msgstr ""
|
2067 |
+
|
2068 |
+
#: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
|
2069 |
+
msgid "Message"
|
2070 |
+
msgstr ""
|
2071 |
+
|
2072 |
+
#: includes/mycred-widgets.php:282
|
2073 |
+
msgid "(%s) Leaderboard"
|
2074 |
+
msgstr ""
|
2075 |
+
|
2076 |
+
#: includes/mycred-widgets.php:285
|
2077 |
+
msgid "Leaderboard based on instances or balances."
|
2078 |
+
msgstr ""
|
2079 |
+
|
2080 |
+
#: includes/mycred-widgets.php:373
|
2081 |
+
msgid "Based On"
|
2082 |
+
msgstr ""
|
2083 |
+
|
2084 |
+
#: includes/mycred-widgets.php:375
|
2085 |
+
msgid ""
|
2086 |
+
"Use \"balance\" to base the leaderboard on your users current balances or "
|
2087 |
+
"use a specific reference."
|
2088 |
+
msgstr ""
|
2089 |
+
|
2090 |
+
#: includes/mycred-widgets.php:375
|
2091 |
+
msgid "Reference Guide"
|
2092 |
+
msgstr ""
|
2093 |
+
|
2094 |
+
#: includes/mycred-widgets.php:379
|
2095 |
+
msgid "Visible to non-members"
|
2096 |
+
msgstr ""
|
2097 |
+
|
2098 |
+
#: includes/mycred-widgets.php:382
|
2099 |
+
msgid "Number of users"
|
2100 |
+
msgstr ""
|
2101 |
+
|
2102 |
+
#: includes/mycred-widgets.php:391
|
2103 |
+
msgid "Offset"
|
2104 |
+
msgstr ""
|
2105 |
+
|
2106 |
+
#: includes/mycred-widgets.php:393
|
2107 |
+
msgid "Optional offset of order. Use zero to return the first in the list."
|
2108 |
+
msgstr ""
|
2109 |
+
|
2110 |
+
#: includes/mycred-widgets.php:396
|
2111 |
+
msgid "Order"
|
2112 |
+
msgstr ""
|
2113 |
+
|
2114 |
+
#: includes/mycred-widgets.php:401 includes/classes/class.query-log.php:553
|
2115 |
+
msgid "Ascending"
|
2116 |
+
msgstr ""
|
2117 |
+
|
2118 |
+
#: includes/mycred-widgets.php:402 includes/classes/class.query-log.php:553
|
2119 |
+
msgid "Descending"
|
2120 |
+
msgstr ""
|
2121 |
+
|
2122 |
+
#: includes/mycred-widgets.php:415
|
2123 |
+
msgid "Append current users position"
|
2124 |
+
msgstr ""
|
2125 |
+
|
2126 |
+
#: includes/mycred-widgets.php:416
|
2127 |
+
msgid ""
|
2128 |
+
"If the current user is not in this leaderboard, you can select to append "
|
2129 |
+
"them at the end with their current position."
|
2130 |
+
msgstr ""
|
2131 |
+
|
2132 |
+
#: includes/mycred-widgets.php:419
|
2133 |
+
msgid "Timeframe"
|
2134 |
+
msgstr ""
|
2135 |
+
|
2136 |
+
#: includes/mycred-widgets.php:421
|
2137 |
+
msgid ""
|
2138 |
+
"Option to limit the leaderboard based on a specific timeframe. Leave empty "
|
2139 |
+
"if not used."
|
2140 |
+
msgstr ""
|
2141 |
+
|
2142 |
+
#: includes/mycred-widgets.php:469
|
2143 |
+
msgid "(%s) Wallet"
|
2144 |
+
msgstr ""
|
2145 |
+
|
2146 |
+
#: includes/mycred-widgets.php:472
|
2147 |
+
msgid "Shows multiple balances."
|
2148 |
+
msgstr ""
|
2149 |
+
|
2150 |
+
#: includes/mycred-widgets.php:579
|
2151 |
+
msgid "Row Layout"
|
2152 |
+
msgstr ""
|
2153 |
+
|
2154 |
+
#: includes/mycred-functions.php:85
|
2155 |
+
msgid "Point"
|
2156 |
+
msgstr ""
|
2157 |
+
|
2158 |
+
#: includes/mycred-functions.php:86
|
2159 |
+
msgid "Points"
|
2160 |
+
msgstr ""
|
2161 |
+
|
2162 |
+
#: includes/mycred-functions.php:466
|
2163 |
+
msgid "Deleted"
|
2164 |
+
msgstr ""
|
2165 |
+
|
2166 |
+
#: includes/mycred-functions.php:607
|
2167 |
+
msgid "Deleted Item"
|
2168 |
+
msgstr ""
|
2169 |
+
|
2170 |
+
#: includes/mycred-functions.php:671
|
2171 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:861
|
2172 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:370
|
2173 |
+
msgid "General"
|
2174 |
+
msgstr ""
|
2175 |
+
|
2176 |
+
#: includes/mycred-functions.php:678
|
2177 |
+
msgid "User Related"
|
2178 |
+
msgstr ""
|
2179 |
+
|
2180 |
+
#: includes/mycred-functions.php:685
|
2181 |
+
msgid "Post Related"
|
2182 |
+
msgstr ""
|
2183 |
+
|
2184 |
+
#: includes/mycred-functions.php:692
|
2185 |
+
msgid "Comment Related"
|
2186 |
+
msgstr ""
|
2187 |
+
|
2188 |
+
#: includes/mycred-functions.php:699
|
2189 |
+
msgid "Widget Related"
|
2190 |
+
msgstr ""
|
2191 |
+
|
2192 |
+
#: includes/mycred-functions.php:706
|
2193 |
+
msgid "Amount Related"
|
2194 |
+
msgstr ""
|
2195 |
+
|
2196 |
+
#: includes/mycred-functions.php:713
|
2197 |
+
msgid "Video Related"
|
2198 |
+
msgstr ""
|
2199 |
+
|
2200 |
+
#: includes/mycred-functions.php:724
|
2201 |
+
msgid "and"
|
2202 |
+
msgstr ""
|
2203 |
+
|
2204 |
+
#: includes/mycred-functions.php:726
|
2205 |
+
msgid "Available Template Tags:"
|
2206 |
+
msgstr ""
|
2207 |
+
|
2208 |
+
#: includes/mycred-functions.php:2678
|
2209 |
+
msgid "per day"
|
2210 |
+
msgstr ""
|
2211 |
+
|
2212 |
+
#: includes/mycred-functions.php:2680
|
2213 |
+
msgid "per week"
|
2214 |
+
msgstr ""
|
2215 |
+
|
2216 |
+
#: includes/mycred-functions.php:2682
|
2217 |
+
msgid "per month"
|
2218 |
+
msgstr ""
|
2219 |
+
|
2220 |
+
#: includes/mycred-functions.php:2684
|
2221 |
+
msgid "in total"
|
2222 |
+
msgstr ""
|
2223 |
+
|
2224 |
+
#: includes/mycred-functions.php:2686 includes/mycred-functions.php:2690
|
2225 |
+
msgid "Maximum once"
|
2226 |
+
msgid_plural "Maximum %d times"
|
2227 |
+
msgstr[0] ""
|
2228 |
+
msgstr[1] ""
|
2229 |
+
|
2230 |
+
#: includes/mycred-functions.php:2717
|
2231 |
+
msgctxt "ex. 21st."
|
2232 |
+
msgid "%dst"
|
2233 |
+
msgstr ""
|
2234 |
+
|
2235 |
+
#: includes/mycred-functions.php:2724
|
2236 |
+
msgctxt "ex. 32nd."
|
2237 |
+
msgid "%dnd"
|
2238 |
+
msgstr ""
|
2239 |
+
|
2240 |
+
#: includes/mycred-functions.php:2731
|
2241 |
+
msgctxt "ex. 43rd."
|
2242 |
+
msgid "%drd"
|
2243 |
+
msgstr ""
|
2244 |
+
|
2245 |
+
#: includes/mycred-functions.php:2742
|
2246 |
+
msgctxt "ex. 50th"
|
2247 |
+
msgid "%dth"
|
2248 |
+
msgstr ""
|
2249 |
+
|
2250 |
+
#: includes/importers/mycred-cubepoints.php:298
|
2251 |
+
msgid "No balances were imported."
|
2252 |
+
msgstr ""
|
2253 |
+
|
2254 |
+
#: includes/importers/mycred-cubepoints.php:298
|
2255 |
+
msgid "No log entries were imported!"
|
2256 |
+
msgstr ""
|
2257 |
+
|
2258 |
+
#: includes/importers/mycred-cubepoints.php:306
|
2259 |
+
#: includes/importers/mycred-log-entries.php:168
|
2260 |
+
msgid ""
|
2261 |
+
"Import complete - A total of <strong>%d</strong> entries were successfully "
|
2262 |
+
"imported. <strong>%d</strong> was skipped."
|
2263 |
+
msgstr ""
|
2264 |
+
|
2265 |
+
#: includes/importers/mycred-cubepoints.php:320
|
2266 |
+
#: includes/importers/mycred-balances.php:212
|
2267 |
+
#: includes/importers/mycred-log-entries.php:180
|
2268 |
+
#: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
|
2269 |
+
msgid "View Log"
|
2270 |
+
msgstr ""
|
2271 |
+
|
2272 |
+
#: includes/importers/mycred-cubepoints.php:320
|
2273 |
+
#: includes/importers/mycred-balances.php:212
|
2274 |
+
#: includes/importers/mycred-log-entries.php:180
|
2275 |
+
msgid "Import More"
|
2276 |
+
msgstr ""
|
2277 |
+
|
2278 |
+
#: includes/importers/mycred-cubepoints.php:335
|
2279 |
+
msgid "No CubePoints log."
|
2280 |
+
msgstr ""
|
2281 |
+
|
2282 |
+
#: includes/importers/mycred-cubepoints.php:348
|
2283 |
+
msgid "Import CubePoints Log"
|
2284 |
+
msgstr ""
|
2285 |
+
|
2286 |
+
#: includes/importers/mycred-cubepoints.php:369
|
2287 |
+
msgid "Select what to import"
|
2288 |
+
msgstr ""
|
2289 |
+
|
2290 |
+
#: includes/importers/mycred-cubepoints.php:370
|
2291 |
+
msgid "Log Entries Only"
|
2292 |
+
msgstr ""
|
2293 |
+
|
2294 |
+
#: includes/importers/mycred-cubepoints.php:371
|
2295 |
+
msgid "CubePoints Balances Only"
|
2296 |
+
msgstr ""
|
2297 |
+
|
2298 |
+
#: includes/importers/mycred-cubepoints.php:372
|
2299 |
+
msgid "Log Entries and Balances"
|
2300 |
+
msgstr ""
|
2301 |
+
|
2302 |
+
#: includes/importers/mycred-cubepoints.php:387
|
2303 |
+
msgid "Import"
|
2304 |
+
msgstr ""
|
2305 |
+
|
2306 |
+
#: includes/importers/mycred-cubepoints.php:396
|
2307 |
+
msgid ""
|
2308 |
+
"Warning! Importing CubePoints balances will replace your users myCRED "
|
2309 |
+
"balance!"
|
2310 |
+
msgstr ""
|
2311 |
+
|
2312 |
+
#: includes/importers/mycred-balances.php:104
|
2313 |
+
#: includes/importers/mycred-balances.php:187
|
2314 |
+
#: includes/importers/mycred-balances.php:230
|
2315 |
+
#: includes/importers/mycred-balances.php:245
|
2316 |
+
#: includes/importers/mycred-log-entries.php:104
|
2317 |
+
#: includes/importers/mycred-log-entries.php:153
|
2318 |
+
#: includes/importers/mycred-log-entries.php:199
|
2319 |
+
#: includes/importers/mycred-log-entries.php:216
|
2320 |
+
msgid "Sorry, there has been an error."
|
2321 |
+
msgstr ""
|
2322 |
+
|
2323 |
+
#: includes/importers/mycred-balances.php:105
|
2324 |
+
#: includes/importers/mycred-log-entries.php:105
|
2325 |
+
msgid "The file does not exist, please try again."
|
2326 |
+
msgstr ""
|
2327 |
+
|
2328 |
+
#: includes/importers/mycred-balances.php:188
|
2329 |
+
#: includes/importers/mycred-log-entries.php:154
|
2330 |
+
msgid "The CSV is invalid."
|
2331 |
+
msgstr ""
|
2332 |
+
|
2333 |
+
#: includes/importers/mycred-balances.php:200
|
2334 |
+
msgid ""
|
2335 |
+
"Import complete - A total of <strong>%d</strong> balances were successfully "
|
2336 |
+
"imported. <strong>%d</strong> was skipped."
|
2337 |
+
msgstr ""
|
2338 |
+
|
2339 |
+
#: includes/importers/mycred-balances.php:261
|
2340 |
+
msgid "Import Balances"
|
2341 |
+
msgstr ""
|
2342 |
+
|
2343 |
+
#: includes/importers/mycred-balances.php:282
|
2344 |
+
msgid "Import balances from a CSV file."
|
2345 |
+
msgstr ""
|
2346 |
+
|
2347 |
+
#: includes/importers/mycred-balances.php:293
|
2348 |
+
#: includes/importers/mycred-log-entries.php:263
|
2349 |
+
msgid ""
|
2350 |
+
"Before you can upload your import file, you will need to fix the following "
|
2351 |
+
"error:"
|
2352 |
+
msgstr ""
|
2353 |
+
|
2354 |
+
#: includes/importers/mycred-balances.php:305
|
2355 |
+
#: includes/importers/mycred-log-entries.php:275
|
2356 |
+
msgid "Choose a file from your computer:"
|
2357 |
+
msgstr ""
|
2358 |
+
|
2359 |
+
#: includes/importers/mycred-balances.php:311
|
2360 |
+
#: includes/importers/mycred-log-entries.php:281
|
2361 |
+
msgid "Maximum size: %s"
|
2362 |
+
msgstr ""
|
2363 |
+
|
2364 |
+
#: includes/importers/mycred-balances.php:316
|
2365 |
+
#: includes/importers/mycred-log-entries.php:286
|
2366 |
+
msgid "OR enter path to file:"
|
2367 |
+
msgstr ""
|
2368 |
+
|
2369 |
+
#: includes/importers/mycred-balances.php:323
|
2370 |
+
#: includes/importers/mycred-log-entries.php:293
|
2371 |
+
msgid "Delimiter"
|
2372 |
+
msgstr ""
|
2373 |
+
|
2374 |
+
#: includes/importers/mycred-balances.php:327
|
2375 |
+
msgid "Method"
|
2376 |
+
msgstr ""
|
2377 |
+
|
2378 |
+
#: includes/importers/mycred-balances.php:329
|
2379 |
+
msgid "Replace current balances with the amount in this CSV file"
|
2380 |
+
msgstr ""
|
2381 |
+
|
2382 |
+
#: includes/importers/mycred-balances.php:330
|
2383 |
+
msgid "Adjust current balances according to the amount in this CSV file"
|
2384 |
+
msgstr ""
|
2385 |
+
|
2386 |
+
#: includes/importers/mycred-log-entries.php:232
|
2387 |
+
msgid "Import Log Entries"
|
2388 |
+
msgstr ""
|
2389 |
+
|
2390 |
+
#: includes/importers/mycred-log-entries.php:253
|
2391 |
+
msgid "Import log entries from a CSV file."
|
2392 |
+
msgstr ""
|
2393 |
+
|
2394 |
+
#: includes/shortcodes/mycred_exchange.php:27
|
2395 |
+
#: includes/shortcodes/mycred_hook_table.php:24
|
2396 |
+
msgid "Point type not found."
|
2397 |
+
msgstr ""
|
2398 |
+
|
2399 |
+
#: includes/shortcodes/mycred_exchange.php:33
|
2400 |
+
#: includes/shortcodes/mycred_exchange.php:41
|
2401 |
+
#: includes/shortcodes/mycred_exchange.php:136
|
2402 |
+
#: includes/shortcodes/mycred_exchange.php:156
|
2403 |
+
msgid "You are excluded from using %s."
|
2404 |
+
msgstr ""
|
2405 |
+
|
2406 |
+
#: includes/shortcodes/mycred_exchange.php:37
|
2407 |
+
#: includes/shortcodes/mycred_exchange.php:146
|
2408 |
+
msgid "Your balance is too low to use this feature."
|
2409 |
+
msgstr ""
|
2410 |
+
|
2411 |
+
#: includes/shortcodes/mycred_exchange.php:63
|
2412 |
+
msgid "Your current %s balance"
|
2413 |
+
msgstr ""
|
2414 |
+
|
2415 |
+
#: includes/shortcodes/mycred_exchange.php:70
|
2416 |
+
msgid "Minimum %s"
|
2417 |
+
msgstr ""
|
2418 |
+
|
2419 |
+
#: includes/shortcodes/mycred_exchange.php:75
|
2420 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:498
|
2421 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:578
|
2422 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:650
|
2423 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:389
|
2424 |
+
#: addons/gateway/carts/mycred-woocommerce.php:140
|
2425 |
+
msgid "Exchange Rate"
|
2426 |
+
msgstr ""
|
2427 |
+
|
2428 |
+
#: includes/shortcodes/mycred_exchange.php:76
|
2429 |
+
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
2430 |
+
msgstr ""
|
2431 |
+
|
2432 |
+
#: includes/shortcodes/mycred_exchange.php:124
|
2433 |
+
msgid "Point types not found."
|
2434 |
+
msgstr ""
|
2435 |
+
|
2436 |
+
#: includes/shortcodes/mycred_exchange.php:169
|
2437 |
+
msgid "You must exchange at least %s!"
|
2438 |
+
msgstr ""
|
2439 |
+
|
2440 |
+
#: includes/shortcodes/mycred_exchange.php:178
|
2441 |
+
#: addons/transfer/myCRED-addon-transfer.php:153
|
2442 |
+
msgid "Insufficient Funds. Please try a lower amount."
|
2443 |
+
msgstr ""
|
2444 |
+
|
2445 |
+
#: includes/shortcodes/mycred_exchange.php:191
|
2446 |
+
msgid "Exchange from %s"
|
2447 |
+
msgstr ""
|
2448 |
+
|
2449 |
+
#: includes/shortcodes/mycred_exchange.php:203
|
2450 |
+
msgid "Exchange to %s"
|
2451 |
+
msgstr ""
|
2452 |
+
|
2453 |
+
#: includes/shortcodes/mycred_exchange.php:211
|
2454 |
+
msgid "You have successfully exchanged %s into %s."
|
2455 |
+
msgstr ""
|
2456 |
+
|
2457 |
+
#: includes/shortcodes/mycred_hook_table.php:21
|
2458 |
+
msgid "No instances found for this point type"
|
2459 |
+
msgstr ""
|
2460 |
+
|
2461 |
+
#: includes/shortcodes/mycred_hook_table.php:79
|
2462 |
+
msgid "Instance"
|
2463 |
+
msgstr ""
|
2464 |
+
|
2465 |
+
#: includes/shortcodes/mycred_video.php:44
|
2466 |
+
msgid "A video ID is required for this shortcode"
|
2467 |
+
msgstr ""
|
2468 |
+
|
2469 |
+
#: includes/classes/class.query-export.php:263
|
2470 |
+
msgid "Reference ID"
|
2471 |
+
msgstr ""
|
2472 |
+
|
2473 |
+
#: includes/classes/class.query-export.php:263
|
2474 |
+
msgid "Data"
|
2475 |
+
msgstr ""
|
2476 |
+
|
2477 |
+
#: includes/classes/class.query-export.php:374
|
2478 |
+
#: includes/classes/class.query-log.php:979
|
2479 |
+
msgid "User Missing"
|
2480 |
+
msgstr ""
|
2481 |
+
|
2482 |
+
#: includes/classes/class.query-export.php:464
|
2483 |
+
msgid "Export log entries raw"
|
2484 |
+
msgstr ""
|
2485 |
+
|
2486 |
+
#: includes/classes/class.query-export.php:465
|
2487 |
+
msgid "Export log entries formatted"
|
2488 |
+
msgstr ""
|
2489 |
+
|
2490 |
+
#: includes/classes/class.query-export.php:482
|
2491 |
+
msgid "All Log Entries"
|
2492 |
+
msgstr ""
|
2493 |
+
|
2494 |
+
#: includes/classes/class.query-export.php:487
|
2495 |
+
msgid "Search Results"
|
2496 |
+
msgstr ""
|
2497 |
+
|
2498 |
+
#: includes/classes/class.query-export.php:492
|
2499 |
+
msgid "Users Log Entries"
|
2500 |
+
msgstr ""
|
2501 |
+
|
2502 |
+
#: includes/classes/class.query-export.php:493
|
2503 |
+
msgid "Export History"
|
2504 |
+
msgstr ""
|
2505 |
+
|
2506 |
+
#: includes/classes/class.query-log.php:427
|
2507 |
+
msgid "No log entries found"
|
2508 |
+
msgstr ""
|
2509 |
+
|
2510 |
+
#: includes/classes/class.query-log.php:489
|
2511 |
+
msgid "Bulk Actions"
|
2512 |
+
msgstr ""
|
2513 |
+
|
2514 |
+
#: includes/classes/class.query-log.php:490
|
2515 |
+
msgid "Export Raw"
|
2516 |
+
msgstr ""
|
2517 |
+
|
2518 |
+
#: includes/classes/class.query-log.php:491
|
2519 |
+
msgid "Export Formatted"
|
2520 |
+
msgstr ""
|
2521 |
+
|
2522 |
+
#: includes/classes/class.query-log.php:507
|
2523 |
+
msgid "Apply"
|
2524 |
+
msgstr ""
|
2525 |
+
|
2526 |
+
#: includes/classes/class.query-log.php:527
|
2527 |
+
msgid "Show all references"
|
2528 |
+
msgstr ""
|
2529 |
+
|
2530 |
+
#: includes/classes/class.query-log.php:544
|
2531 |
+
msgid "User ID, Username, Email or Nicename"
|
2532 |
+
msgstr ""
|
2533 |
+
|
2534 |
+
#: includes/classes/class.query-log.php:552
|
2535 |
+
msgid "Show in order"
|
2536 |
+
msgstr ""
|
2537 |
+
|
2538 |
+
#: includes/classes/class.query-log.php:573
|
2539 |
+
msgid "Filter"
|
2540 |
+
msgstr ""
|
2541 |
+
|
2542 |
+
#: includes/classes/class.query-log.php:609
|
2543 |
+
msgid "Log entries navigation"
|
2544 |
+
msgstr ""
|
2545 |
+
|
2546 |
+
#: includes/classes/class.query-log.php:734
|
2547 |
+
msgid "1 entry"
|
2548 |
+
msgid_plural "%d entries"
|
2549 |
+
msgstr[0] ""
|
2550 |
+
msgstr[1] ""
|
2551 |
+
|
2552 |
+
#: includes/classes/class.query-log.php:867
|
2553 |
+
#: includes/classes/class.query-log.php:888
|
2554 |
+
msgid "Select all"
|
2555 |
+
msgstr ""
|
2556 |
+
|
2557 |
+
#: includes/classes/class.query-log.php:971
|
2558 |
+
msgid "Select entry"
|
2559 |
+
msgstr ""
|
2560 |
+
|
2561 |
+
#: includes/classes/class.query-log.php:992
|
2562 |
+
msgid "Show more details"
|
2563 |
+
msgstr ""
|
2564 |
+
|
2565 |
+
#: includes/classes/class.query-log.php:1016
|
2566 |
+
msgid "Filter by Date"
|
2567 |
+
msgstr ""
|
2568 |
+
|
2569 |
+
#: includes/classes/class.query-log.php:1065
|
2570 |
+
msgid "Filter by User"
|
2571 |
+
msgstr ""
|
2572 |
+
|
2573 |
+
#: includes/classes/class.query-log.php:1067
|
2574 |
+
msgid "Filter by ID"
|
2575 |
+
msgstr ""
|
2576 |
+
|
2577 |
+
#: includes/classes/class.query-log.php:1147
|
2578 |
+
msgid "No export options available."
|
2579 |
+
msgstr ""
|
2580 |
+
|
2581 |
+
#: includes/classes/class.query-log.php:1178
|
2582 |
+
#: includes/classes/class.query-log.php:1180
|
2583 |
+
msgid "Search Log"
|
2584 |
+
msgstr ""
|
2585 |
+
|
2586 |
+
#: includes/classes/class.query-log.php:1179
|
2587 |
+
msgid "search log entries"
|
2588 |
+
msgstr ""
|
2589 |
+
|
2590 |
+
#: includes/classes/class.query-log.php:1543
|
2591 |
+
msgid "Website Registration"
|
2592 |
+
msgstr ""
|
2593 |
+
|
2594 |
+
#: includes/classes/class.query-log.php:1544
|
2595 |
+
msgid "Website Visit"
|
2596 |
+
msgstr ""
|
2597 |
+
|
2598 |
+
#: includes/classes/class.query-log.php:1545
|
2599 |
+
msgid "Viewing Content (Member)"
|
2600 |
+
msgstr ""
|
2601 |
+
|
2602 |
+
#: includes/classes/class.query-log.php:1546
|
2603 |
+
msgid "Viewing Content (Author)"
|
2604 |
+
msgstr ""
|
2605 |
+
|
2606 |
+
#: includes/classes/class.query-log.php:1547
|
2607 |
+
msgid "Logging in"
|
2608 |
+
msgstr ""
|
2609 |
+
|
2610 |
+
#: includes/classes/class.query-log.php:1548
|
2611 |
+
msgid "Publishing Content"
|
2612 |
+
msgstr ""
|
2613 |
+
|
2614 |
+
#: includes/classes/class.query-log.php:1549
|
2615 |
+
msgid "Approved Comment"
|
2616 |
+
msgstr ""
|
2617 |
+
|
2618 |
+
#: includes/classes/class.query-log.php:1550
|
2619 |
+
msgid "Unapproved Comment"
|
2620 |
+
msgstr ""
|
2621 |
+
|
2622 |
+
#: includes/classes/class.query-log.php:1551
|
2623 |
+
msgid "SPAM Comment"
|
2624 |
+
msgstr ""
|
2625 |
+
|
2626 |
+
#: includes/classes/class.query-log.php:1553
|
2627 |
+
msgid "Link Click"
|
2628 |
+
msgstr ""
|
2629 |
+
|
2630 |
+
#: includes/classes/class.query-log.php:1554
|
2631 |
+
msgid "Watching Video"
|
2632 |
+
msgstr ""
|
2633 |
+
|
2634 |
+
#: includes/classes/class.query-log.php:1555
|
2635 |
+
msgid "Visitor Referral"
|
2636 |
+
msgstr ""
|
2637 |
+
|
2638 |
+
#: includes/classes/class.query-log.php:1556
|
2639 |
+
msgid "Signup Referral"
|
2640 |
+
msgstr ""
|
2641 |
+
|
2642 |
+
#: includes/classes/class.query-log.php:1560
|
2643 |
+
msgid "New Profile Update"
|
2644 |
+
msgstr ""
|
2645 |
+
|
2646 |
+
#: includes/classes/class.query-log.php:1561
|
2647 |
+
msgid "Profile Update Removal"
|
2648 |
+
msgstr ""
|
2649 |
+
|
2650 |
+
#: includes/classes/class.query-log.php:1562
|
2651 |
+
msgid "Avatar Upload"
|
2652 |
+
msgstr ""
|
2653 |
+
|
2654 |
+
#: includes/classes/class.query-log.php:1563
|
2655 |
+
msgid "Profile Cover Upload"
|
2656 |
+
msgstr ""
|
2657 |
+
|
2658 |
+
#: includes/classes/class.query-log.php:1565
|
2659 |
+
msgid "Ended Friendship"
|
2660 |
+
msgstr ""
|
2661 |
+
|
2662 |
+
#: includes/classes/class.query-log.php:1566
|
2663 |
+
msgid "New Profile Comment"
|
2664 |
+
msgstr ""
|
2665 |
+
|
2666 |
+
#: includes/classes/class.query-log.php:1567
|
2667 |
+
msgid "Profile Comment Deletion"
|
2668 |
+
msgstr ""
|
2669 |
+
|
2670 |
+
#: includes/classes/class.query-log.php:1568
|
2671 |
+
msgid "Add Activity to Favorites"
|
2672 |
+
msgstr ""
|
2673 |
+
|
2674 |
+
#: includes/classes/class.query-log.php:1569
|
2675 |
+
msgid "Remove Activity from Favorites"
|
2676 |
+
msgstr ""
|
2677 |
+
|
2678 |
+
#: includes/classes/class.query-log.php:1570
|
2679 |
+
msgid "New Message"
|
2680 |
+
msgstr ""
|
2681 |
+
|
2682 |
+
#: includes/classes/class.query-log.php:1572
|
2683 |
+
msgid "New Group"
|
2684 |
+
msgstr ""
|
2685 |
+
|
2686 |
+
#: includes/classes/class.query-log.php:1573
|
2687 |
+
msgid "Deleted Group"
|
2688 |
+
msgstr ""
|
2689 |
+
|
2690 |
+
#: includes/classes/class.query-log.php:1574
|
2691 |
+
msgid "New Group Forum Topic"
|
2692 |
+
msgstr ""
|
2693 |
+
|
2694 |
+
#: includes/classes/class.query-log.php:1575
|
2695 |
+
msgid "Edit Group Forum Topic"
|
2696 |
+
msgstr ""
|
2697 |
+
|
2698 |
+
#: includes/classes/class.query-log.php:1576
|
2699 |
+
msgid "New Group Forum Post"
|
2700 |
+
msgstr ""
|
2701 |
+
|
2702 |
+
#: includes/classes/class.query-log.php:1577
|
2703 |
+
msgid "Edit Group Forum Post"
|
2704 |
+
msgstr ""
|
2705 |
+
|
2706 |
+
#: includes/classes/class.query-log.php:1578
|
2707 |
+
msgid "Joining Group"
|
2708 |
+
msgstr ""
|
2709 |
+
|
2710 |
+
#: includes/classes/class.query-log.php:1579
|
2711 |
+
msgid "Leaving Group"
|
2712 |
+
msgstr ""
|
2713 |
+
|
2714 |
+
#: includes/classes/class.query-log.php:1580
|
2715 |
+
msgid "New Group Avatar"
|
2716 |
+
msgstr ""
|
2717 |
+
|
2718 |
+
#: includes/classes/class.query-log.php:1581
|
2719 |
+
msgid "New Group Cover"
|
2720 |
+
msgstr ""
|
2721 |
+
|
2722 |
+
#: includes/classes/class.query-log.php:1582
|
2723 |
+
msgid "New Group Comment"
|
2724 |
+
msgstr ""
|
2725 |
+
|
2726 |
+
#: includes/classes/class.query-log.php:1592
|
2727 |
+
msgid "New Link"
|
2728 |
+
msgstr ""
|
2729 |
+
|
2730 |
+
#: includes/classes/class.query-log.php:1593
|
2731 |
+
msgid "Link Voting"
|
2732 |
+
msgstr ""
|
2733 |
+
|
2734 |
+
#: includes/classes/class.query-log.php:1594
|
2735 |
+
msgid "Link Update"
|
2736 |
+
msgstr ""
|
2737 |
+
|
2738 |
+
#: includes/classes/class.query-log.php:1598
|
2739 |
+
msgid "New Forum (bbPress)"
|
2740 |
+
msgstr ""
|
2741 |
+
|
2742 |
+
#: includes/classes/class.query-log.php:1599
|
2743 |
+
msgid "New Forum Topic (bbPress)"
|
2744 |
+
msgstr ""
|
2745 |
+
|
2746 |
+
#: includes/classes/class.query-log.php:1600
|
2747 |
+
msgid "Favorited Topic (bbPress)"
|
2748 |
+
msgstr ""
|
2749 |
+
|
2750 |
+
#: includes/classes/class.query-log.php:1601
|
2751 |
+
msgid "New Topic Reply (bbPress)"
|
2752 |
+
msgstr ""
|
2753 |
+
|
2754 |
+
#: includes/classes/class.query-log.php:1605
|
2755 |
+
msgid "Form Submission (Contact Form 7)"
|
2756 |
+
msgstr ""
|
2757 |
+
|
2758 |
+
#: includes/classes/class.query-log.php:1608
|
2759 |
+
msgid "Form Submission (Gravity Form)"
|
2760 |
+
msgstr ""
|
2761 |
+
|
2762 |
+
#: includes/classes/class.query-log.php:1611
|
2763 |
+
msgid "New Forum Topic (SimplePress)"
|
2764 |
+
msgstr ""
|
2765 |
+
|
2766 |
+
#: includes/classes/class.query-log.php:1612
|
2767 |
+
msgid "New Forum Post (SimplePress)"
|
2768 |
+
msgstr ""
|
2769 |
+
|
2770 |
+
#: includes/classes/class.query-log.php:1621
|
2771 |
+
msgid "Affiliate Signup (AffiliateWP)"
|
2772 |
+
msgstr ""
|
2773 |
+
|
2774 |
+
#: includes/classes/class.query-log.php:1622
|
2775 |
+
msgid "Referred Visit (AffiliateWP)"
|
2776 |
+
msgstr ""
|
2777 |
+
|
2778 |
+
#: includes/classes/class.query-log.php:1623
|
2779 |
+
msgid "Affiliate Referral (AffiliateWP)"
|
2780 |
+
msgstr ""
|
2781 |
+
|
2782 |
+
#: includes/classes/class.query-log.php:1624
|
2783 |
+
msgid "Referral Refund (AffiliateWP)"
|
2784 |
+
msgstr ""
|
2785 |
+
|
2786 |
+
#: includes/classes/class.query-log.php:1633
|
2787 |
+
msgid "Poll Voting"
|
2788 |
+
msgstr ""
|
2789 |
+
|
2790 |
+
#: includes/classes/class.query-log.php:1636
|
2791 |
+
msgid "Sending an Invite"
|
2792 |
+
msgstr ""
|
2793 |
+
|
2794 |
+
#: includes/classes/class.query-log.php:1637
|
2795 |
+
msgid "Accepting an Invite"
|
2796 |
+
msgstr ""
|
2797 |
+
|
2798 |
+
#: includes/classes/class.query-log.php:1643
|
2799 |
+
#: addons/banking/myCRED-addon-banking.php:150
|
2800 |
+
msgid "Compound Interest"
|
2801 |
+
msgstr ""
|
2802 |
+
|
2803 |
+
#: includes/classes/class.query-log.php:1644
|
2804 |
+
msgid "Recurring Payout"
|
2805 |
+
msgstr ""
|
2806 |
+
|
2807 |
+
#: includes/classes/class.query-log.php:1648
|
2808 |
+
msgid "Badge Reward"
|
2809 |
+
msgstr ""
|
2810 |
+
|
2811 |
+
#: includes/classes/class.query-log.php:1651
|
2812 |
+
msgid "buyCRED Purchase (PayPal Standard)"
|
2813 |
+
msgstr ""
|
2814 |
+
|
2815 |
+
#: includes/classes/class.query-log.php:1652
|
2816 |
+
msgid "buyCRED Purchase (Skrill)"
|
2817 |
+
msgstr ""
|
2818 |
+
|
2819 |
+
#: includes/classes/class.query-log.php:1653
|
2820 |
+
msgid "buyCRED Purchase (Zombaio)"
|
2821 |
+
msgstr ""
|
2822 |
+
|
2823 |
+
#: includes/classes/class.query-log.php:1654
|
2824 |
+
msgid "buyCRED Purchase (NETBilling)"
|
2825 |
+
msgstr ""
|
2826 |
+
|
2827 |
+
#: includes/classes/class.query-log.php:1655
|
2828 |
+
msgid "buyCRED Purchase (BitPay)"
|
2829 |
+
msgstr ""
|
2830 |
+
|
2831 |
+
#: includes/classes/class.query-log.php:1660
|
2832 |
+
msgid "Coupon Purchase"
|
2833 |
+
msgstr ""
|
2834 |
+
|
2835 |
+
#: includes/classes/class.query-log.php:1664
|
2836 |
+
msgid "Store Purchase (WooCommerce)"
|
2837 |
+
msgstr ""
|
2838 |
+
|
2839 |
+
#: includes/classes/class.query-log.php:1665
|
2840 |
+
msgid "Store Reward (WooCommerce)"
|
2841 |
+
msgstr ""
|
2842 |
+
|
2843 |
+
#: includes/classes/class.query-log.php:1666
|
2844 |
+
msgid "Product Review (WooCommerce)"
|
2845 |
+
msgstr ""
|
2846 |
+
|
2847 |
+
#: includes/classes/class.query-log.php:1669
|
2848 |
+
msgid "Store Purchase (MarketPress)"
|
2849 |
+
msgstr ""
|
2850 |
+
|
2851 |
+
#: includes/classes/class.query-log.php:1670
|
2852 |
+
msgid "Store Reward (MarketPress)"
|
2853 |
+
msgstr ""
|
2854 |
+
|
2855 |
+
#: includes/classes/class.query-log.php:1673
|
2856 |
+
msgid "Store Purchase (WP E-Commerce)"
|
2857 |
+
msgstr ""
|
2858 |
+
|
2859 |
+
#: includes/classes/class.query-log.php:1679
|
2860 |
+
msgid "Event Payment (Event Espresso)"
|
2861 |
+
msgstr ""
|
2862 |
+
|
2863 |
+
#: includes/classes/class.query-log.php:1680
|
2864 |
+
msgid "Event Sale (Event Espresso)"
|
2865 |
+
msgstr ""
|
2866 |
+
|
2867 |
+
#: includes/classes/class.query-log.php:1684
|
2868 |
+
msgid "Event Payment (Events Manager)"
|
2869 |
+
msgstr ""
|
2870 |
+
|
2871 |
+
#: includes/classes/class.query-log.php:1685
|
2872 |
+
msgid "Event Sale (Events Manager)"
|
2873 |
+
msgstr ""
|
2874 |
+
|
2875 |
+
#: includes/classes/class.query-log.php:1689
|
2876 |
+
msgid "Content Purchase"
|
2877 |
+
msgstr ""
|
2878 |
+
|
2879 |
+
#: includes/classes/class.query-log.php:1690
|
2880 |
+
msgid "Content Sale"
|
2881 |
+
msgstr ""
|
2882 |
+
|
2883 |
+
#: includes/classes/class.query-log.php:1694
|
2884 |
+
#: addons/transfer/myCRED-addon-transfer.php:48
|
2885 |
+
msgid "Transfer"
|
2886 |
+
msgstr ""
|
2887 |
+
|
2888 |
+
#: includes/classes/class.query-log.php:1698
|
2889 |
+
msgid "Manual Adjustment by Admin"
|
2890 |
+
msgstr ""
|
2891 |
+
|
2892 |
+
#: addons/banking/myCRED-addon-banking.php:45
|
2893 |
+
#: addons/banking/myCRED-addon-banking.php:46
|
2894 |
+
#: addons/banking/myCRED-addon-banking.php:47
|
2895 |
+
msgid "Banking"
|
2896 |
+
msgstr ""
|
2897 |
+
|
2898 |
+
#: addons/banking/myCRED-addon-banking.php:141
|
2899 |
+
msgid "Central Banking"
|
2900 |
+
msgstr ""
|
2901 |
+
|
2902 |
+
#: addons/banking/myCRED-addon-banking.php:142
|
2903 |
+
msgid ""
|
2904 |
+
"Instead of creating %_plural% out of thin-air, all payouts are made from a "
|
2905 |
+
"nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
|
2906 |
+
"deposited back into this account. If the central bank runs out of %_plural%, "
|
2907 |
+
"no %_plural% will be paid out."
|
2908 |
+
msgstr ""
|
2909 |
+
|
2910 |
+
#: addons/banking/myCRED-addon-banking.php:151
|
2911 |
+
msgid ""
|
2912 |
+
"Offer your users interest on the %_plural% they earn on your website. The "
|
2913 |
+
"interest is compounded daily."
|
2914 |
+
msgstr ""
|
2915 |
+
|
2916 |
+
#: addons/banking/myCRED-addon-banking.php:159
|
2917 |
+
msgid "Recurring Payouts"
|
2918 |
+
msgstr ""
|
2919 |
+
|
2920 |
+
#: addons/banking/myCRED-addon-banking.php:160
|
2921 |
+
msgid "Setup mass %_singular% payouts for your users."
|
2922 |
+
msgstr ""
|
2923 |
+
|
2924 |
+
#: addons/banking/myCRED-addon-banking.php:202
|
2925 |
+
msgid "New Recurring Payout"
|
2926 |
+
msgstr ""
|
2927 |
+
|
2928 |
+
#: addons/banking/myCRED-addon-banking.php:203
|
2929 |
+
msgid "Edit Recurring Payout"
|
2930 |
+
msgstr ""
|
2931 |
+
|
2932 |
+
#: addons/banking/myCRED-addon-banking.php:205
|
2933 |
+
msgid "Please fill out all required fields that are highlighted in red."
|
2934 |
+
msgstr ""
|
2935 |
+
|
2936 |
+
#: addons/banking/myCRED-addon-banking.php:206
|
2937 |
+
msgid "Are you sure you want to remove this schedule? This can not be undone!"
|
2938 |
+
msgstr ""
|
2939 |
+
|
2940 |
+
#: addons/banking/myCRED-addon-banking.php:253
|
2941 |
+
msgid "%s Banking"
|
2942 |
+
msgstr ""
|
2943 |
+
|
2944 |
+
#: addons/banking/myCRED-addon-banking.php:271
|
2945 |
+
msgid "Warning"
|
2946 |
+
msgstr ""
|
2947 |
+
|
2948 |
+
#: addons/banking/myCRED-addon-banking.php:271
|
2949 |
+
msgid ""
|
2950 |
+
"This banking service uses the WordPress CRON to schedule events. If the "
|
2951 |
+
"WordPress CRON is disabled, this service will not work correctly."
|
2952 |
+
msgstr ""
|
2953 |
+
|
2954 |
+
#: addons/banking/myCRED-addon-banking.php:273
|
2955 |
+
#: addons/buy-creds/modules/buycred-module-core.php:581
|
2956 |
+
msgid "Enable"
|
2957 |
+
msgstr ""
|
2958 |
+
|
2959 |
+
#: addons/banking/myCRED-addon-banking.php:292
|
2960 |
+
msgid "Update Changes"
|
2961 |
+
msgstr ""
|
2962 |
+
|
2963 |
+
#: addons/transfer/myCRED-addon-transfer.php:41
|
2964 |
+
msgid "You do not have enough %plural% to send."
|
2965 |
+
msgstr ""
|
2966 |
+
|
2967 |
+
#: addons/transfer/myCRED-addon-transfer.php:42
|
2968 |
+
msgid "You have exceeded your %limit% transfer limit."
|
2969 |
+
msgstr ""
|
2970 |
+
|
2971 |
+
#: addons/transfer/myCRED-addon-transfer.php:146
|
2972 |
+
msgid "Transaction completed."
|
2973 |
+
msgstr ""
|
2974 |
+
|
2975 |
+
#: addons/transfer/myCRED-addon-transfer.php:147
|
2976 |
+
msgid ""
|
2977 |
+
"Security token could not be verified. Please contact your site administrator!"
|
2978 |
+
msgstr ""
|
2979 |
+
|
2980 |
+
#: addons/transfer/myCRED-addon-transfer.php:148
|
2981 |
+
#: addons/transfer/myCRED-addon-transfer.php:155
|
2982 |
+
msgid "Communications error. Please try again later."
|
2983 |
+
msgstr ""
|
2984 |
+
|
2985 |
+
#: addons/transfer/myCRED-addon-transfer.php:149
|
2986 |
+
msgid "Recipient not found. Please try again."
|
2987 |
+
msgstr ""
|
2988 |
+
|
2989 |
+
#: addons/transfer/myCRED-addon-transfer.php:150
|
2990 |
+
msgid "Transaction declined by recipient."
|
2991 |
+
msgstr ""
|
2992 |
+
|
2993 |
+
#: addons/transfer/myCRED-addon-transfer.php:151
|
2994 |
+
msgid "Incorrect amount. Please try again."
|
2995 |
+
msgstr ""
|
2996 |
+
|
2997 |
+
#: addons/transfer/myCRED-addon-transfer.php:152
|
2998 |
+
msgid ""
|
2999 |
+
"This myCRED Add-on has not yet been setup! No transfers are allowed until "
|
3000 |
+
"this has been done!"
|
3001 |
+
msgstr ""
|
3002 |
+
|
3003 |
+
#: addons/transfer/myCRED-addon-transfer.php:154
|
3004 |
+
msgid "Transfer Limit exceeded."
|
3005 |
+
msgstr ""
|
3006 |
+
|
3007 |
+
#: addons/transfer/myCRED-addon-transfer.php:156
|
3008 |
+
msgid "The selected point type can not be transferred."
|
3009 |
+
msgstr ""
|
3010 |
+
|
3011 |
+
#: addons/transfer/myCRED-addon-transfer.php:360
|
3012 |
+
msgid "No limits."
|
3013 |
+
msgstr ""
|
3014 |
+
|
3015 |
+
#: addons/transfer/myCRED-addon-transfer.php:361
|
3016 |
+
msgid "Impose daily limit."
|
3017 |
+
msgstr ""
|
3018 |
+
|
3019 |
+
#: addons/transfer/myCRED-addon-transfer.php:362
|
3020 |
+
msgid "Impose weekly limit."
|
3021 |
+
msgstr ""
|
3022 |
+
|
3023 |
+
#: addons/transfer/myCRED-addon-transfer.php:369
|
3024 |
+
msgid "User Login (user_login)"
|
3025 |
+
msgstr ""
|
3026 |
+
|
3027 |
+
#: addons/transfer/myCRED-addon-transfer.php:370
|
3028 |
+
msgid "User Email (user_email)"
|
3029 |
+
msgstr ""
|
3030 |
+
|
3031 |
+
#: addons/transfer/myCRED-addon-transfer.php:378
|
3032 |
+
msgid "Transfers"
|
3033 |
+
msgstr ""
|
3034 |
+
|
3035 |
+
#: addons/transfer/myCRED-addon-transfer.php:388
|
3036 |
+
msgid "Select the point types that users can transfer."
|
3037 |
+
msgstr ""
|
3038 |
+
|
3039 |
+
#: addons/transfer/myCRED-addon-transfer.php:398
|
3040 |
+
msgid "Log template for sending"
|
3041 |
+
msgstr ""
|
3042 |
+
|
3043 |
+
#: addons/transfer/myCRED-addon-transfer.php:405
|
3044 |
+
msgid "Log template for receiving"
|
3045 |
+
msgstr ""
|
3046 |
+
|
3047 |
+
#: addons/transfer/myCRED-addon-transfer.php:412
|
3048 |
+
msgid "Autofill Recipient"
|
3049 |
+
msgstr ""
|
3050 |
+
|
3051 |
+
#: addons/transfer/myCRED-addon-transfer.php:426
|
3052 |
+
msgid "Select what user details recipients should be autofilled by."
|
3053 |
+
msgstr ""
|
3054 |
+
|
3055 |
+
#: addons/transfer/myCRED-addon-transfer.php:429
|
3056 |
+
msgid "Reload"
|
3057 |
+
msgstr ""
|
3058 |
+
|
3059 |
+
#: addons/transfer/myCRED-addon-transfer.php:432
|
3060 |
+
msgid "Reload page on successful transfers."
|
3061 |
+
msgstr ""
|
3062 |
+
|
3063 |
+
#: addons/transfer/myCRED-addon-transfer.php:435
|
3064 |
+
#: addons/coupons/myCRED-addon-coupons.php:250
|
3065 |
+
#: addons/banking/services/mycred-service-payouts.php:599
|
3066 |
+
#: addons/banking/services/mycred-service-payouts.php:760
|
3067 |
+
msgid "Limits"
|
3068 |
+
msgstr ""
|
3069 |
+
|
3070 |
+
#: addons/transfer/myCRED-addon-transfer.php:456
|
3071 |
+
msgid "Limit Amount"
|
3072 |
+
msgstr ""
|
3073 |
+
|
3074 |
+
#: addons/transfer/myCRED-addon-transfer.php:460
|
3075 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:553
|
3076 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:525
|
3077 |
+
msgid "Templates"
|
3078 |
+
msgstr ""
|
3079 |
+
|
3080 |
+
#: addons/transfer/myCRED-addon-transfer.php:463
|
3081 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:573
|
3082 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:538
|
3083 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:411
|
3084 |
+
msgid "Visitors"
|
3085 |
+
msgstr ""
|
3086 |
+
|
3087 |
+
#: addons/transfer/myCRED-addon-transfer.php:464
|
3088 |
+
msgid ""
|
3089 |
+
"The template to use when the transfer shortcode or widget is viewed by "
|
3090 |
+
"someone who is not logged in."
|
3091 |
+
msgstr ""
|
3092 |
+
|
3093 |
+
#: addons/transfer/myCRED-addon-transfer.php:479
|
3094 |
+
msgid ""
|
3095 |
+
"The template to use if you select to show the transfer limit in the transfer "
|
3096 |
+
"shortcode or widget. Ignored if there is no limit enforced."
|
3097 |
+
msgstr ""
|
3098 |
+
|
3099 |
+
#: addons/transfer/myCRED-addon-transfer.php:496
|
3100 |
+
msgid ""
|
3101 |
+
"The template to use if you select to show the users balance in the transfer "
|
3102 |
+
"shortcode or widget. Ignored if balances are not shown."
|
3103 |
+
msgstr ""
|
3104 |
+
|
3105 |
+
#: addons/transfer/myCRED-addon-transfer.php:512
|
3106 |
+
msgid "Default Button Label"
|
3107 |
+
msgstr ""
|
3108 |
+
|
3109 |
+
#: addons/transfer/myCRED-addon-transfer.php:514
|
3110 |
+
msgid ""
|
3111 |
+
"The default transfer button label. You can override this in the shortcode or "
|
3112 |
+
"widget if needed."
|
3113 |
+
msgstr ""
|
3114 |
+
|
3115 |
+
#: addons/transfer/myCRED-addon-transfer.php:517
|
3116 |
+
msgid "Insufficient Funds Warning"
|
3117 |
+
msgstr ""
|
3118 |
+
|
3119 |
+
#: addons/transfer/myCRED-addon-transfer.php:521
|
3120 |
+
msgid "Message to show the user if they try to send more then they can afford."
|
3121 |
+
msgstr ""
|
3122 |
+
|
3123 |
+
#: addons/transfer/myCRED-addon-transfer.php:524
|
3124 |
+
msgid "Limit Reached Warning"
|
3125 |
+
msgstr ""
|
3126 |
+
|
3127 |
+
#: addons/transfer/myCRED-addon-transfer.php:528
|
3128 |
+
msgid ""
|
3129 |
+
"Message to show the user once they reach their transfer limit. Ignored if no "
|
3130 |
+
"limits are enforced."
|
3131 |
+
msgstr ""
|
3132 |
+
|
3133 |
+
#: addons/ranks/myCRED-addon-ranks.php:216
|
3134 |
+
msgid "Ranks for %s"
|
3135 |
+
msgstr ""
|
3136 |
+
|
3137 |
+
#: addons/ranks/myCRED-addon-ranks.php:218
|
3138 |
+
#: addons/ranks/myCRED-addon-ranks.php:227
|
3139 |
+
#: addons/ranks/myCRED-addon-ranks.php:237
|
3140 |
+
#: addons/ranks/myCRED-addon-ranks.php:339
|
3141 |
+
#: addons/ranks/myCRED-addon-ranks.php:340
|
3142 |
+
#: addons/ranks/myCRED-addon-ranks.php:724
|
3143 |
+
#: addons/ranks/myCRED-addon-ranks.php:1358
|
3144 |
+
#: addons/ranks/myCRED-addon-ranks.php:1648
|
3145 |
+
msgid "Ranks"
|
3146 |
+
msgstr ""
|
3147 |
+
|
3148 |
+
#: addons/ranks/myCRED-addon-ranks.php:222
|
3149 |
+
#: addons/ranks/myCRED-addon-ranks.php:724
|
3150 |
+
#: addons/ranks/myCRED-addon-ranks.php:873
|
3151 |
+
#: addons/ranks/myCRED-addon-ranks.php:876
|
3152 |
+
#: addons/ranks/myCRED-addon-ranks.php:904
|
3153 |
+
msgid "Rank"
|
3154 |
+
msgstr ""
|
3155 |
+
|
3156 |
+
#: addons/ranks/myCRED-addon-ranks.php:223
|
3157 |
+
#: addons/ranks/myCRED-addon-ranks.php:224
|
3158 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:126
|
3159 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:127
|
3160 |
+
#: addons/badges/myCRED-addon-badges.php:150
|
3161 |
+
#: addons/badges/myCRED-addon-badges.php:151
|
3162 |
+
#: addons/banking/services/mycred-service-payouts.php:896
|
3163 |
+
msgid "Add New"
|
3164 |
+
msgstr ""
|
3165 |
+
|
3166 |
+
#: addons/ranks/myCRED-addon-ranks.php:225
|
3167 |
+
msgid "Edit Rank"
|
3168 |
+
msgstr ""
|
3169 |
+
|
3170 |
+
#: addons/ranks/myCRED-addon-ranks.php:226
|
3171 |
+
msgid "New Rank"
|
3172 |
+
msgstr ""
|
3173 |
+
|
3174 |
+
#: addons/ranks/myCRED-addon-ranks.php:228
|
3175 |
+
msgid "View Rank"
|
3176 |
+
msgstr ""
|
3177 |
+
|
3178 |
+
#: addons/ranks/myCRED-addon-ranks.php:229
|
3179 |
+
msgid "Search Ranks"
|
3180 |
+
msgstr ""
|
3181 |
+
|
3182 |
+
#: addons/ranks/myCRED-addon-ranks.php:230
|
3183 |
+
#: addons/ranks/myCRED-addon-ranks.php:1368
|
3184 |
+
msgid "Rank Logo"
|
3185 |
+
msgstr ""
|
3186 |
+
|
3187 |
+
#: addons/ranks/myCRED-addon-ranks.php:231
|
3188 |
+
msgid "Set rank logo"
|
3189 |
+
msgstr ""
|
3190 |
+
|
3191 |
+
#: addons/ranks/myCRED-addon-ranks.php:232
|
3192 |
+
msgid "Remove rank logo"
|
3193 |
+
msgstr ""
|
3194 |
+
|
3195 |
+
#: addons/ranks/myCRED-addon-ranks.php:233
|
3196 |
+
msgid "Use as Logo"
|
3197 |
+
msgstr ""
|
3198 |
+
|
3199 |
+
#: addons/ranks/myCRED-addon-ranks.php:234
|
3200 |
+
#: addons/ranks/myCRED-addon-ranks.php:1285
|
3201 |
+
msgid "No ranks found"
|
3202 |
+
msgstr ""
|
3203 |
+
|
3204 |
+
#: addons/ranks/myCRED-addon-ranks.php:235
|
3205 |
+
msgid "No ranks found in Trash"
|
3206 |
+
msgstr ""
|
3207 |
+
|
3208 |
+
#: addons/ranks/myCRED-addon-ranks.php:283
|
3209 |
+
#: addons/ranks/myCRED-addon-ranks.php:284
|
3210 |
+
#: addons/ranks/myCRED-addon-ranks.php:285
|
3211 |
+
#: addons/ranks/myCRED-addon-ranks.php:286
|
3212 |
+
#: addons/ranks/myCRED-addon-ranks.php:287
|
3213 |
+
#: addons/ranks/myCRED-addon-ranks.php:290
|
3214 |
+
#: addons/ranks/myCRED-addon-ranks.php:291
|
3215 |
+
msgid "Rank Updated."
|
3216 |
+
msgstr ""
|
3217 |
+
|
3218 |
+
#: addons/ranks/myCRED-addon-ranks.php:288
|
3219 |
+
msgid "Rank Enabled."
|
3220 |
+
msgstr ""
|
3221 |
+
|
3222 |
+
#: addons/ranks/myCRED-addon-ranks.php:289
|
3223 |
+
msgid "Rank Saved."
|
3224 |
+
msgstr ""
|
3225 |
+
|
3226 |
+
#: addons/ranks/myCRED-addon-ranks.php:481
|
3227 |
+
msgid "Completed - Total of %d users effected"
|
3228 |
+
msgstr ""
|
3229 |
+
|
3230 |
+
#: addons/ranks/myCRED-addon-ranks.php:895
|
3231 |
+
msgid "No ranks exists."
|
3232 |
+
msgstr ""
|
3233 |
+
|
3234 |
+
#: addons/ranks/myCRED-addon-ranks.php:987
|
3235 |
+
msgid "Warning! All ranks will be deleted! This can not be undone!"
|
3236 |
+
msgstr ""
|
3237 |
+
|
3238 |
+
#: addons/ranks/myCRED-addon-ranks.php:988
|
3239 |
+
msgid "Are you sure you want to re-assign user ranks?"
|
3240 |
+
msgstr ""
|
3241 |
+
|
3242 |
+
#: addons/ranks/myCRED-addon-ranks.php:1073
|
3243 |
+
#: addons/ranks/myCRED-addon-ranks.php:1174
|
3244 |
+
msgid "Rank Title"
|
3245 |
+
msgstr ""
|
3246 |
+
|
3247 |
+
#: addons/ranks/myCRED-addon-ranks.php:1074
|
3248 |
+
msgid "Logo"
|
3249 |
+
msgstr ""
|
3250 |
+
|
3251 |
+
#: addons/ranks/myCRED-addon-ranks.php:1075
|
3252 |
+
#: addons/badges/myCRED-addon-badges.php:828
|
3253 |
+
#: addons/badges/myCRED-addon-badges.php:829
|
3254 |
+
msgid "Requirement"
|
3255 |
+
msgstr ""
|
3256 |
+
|
3257 |
+
#: addons/ranks/myCRED-addon-ranks.php:1101
|
3258 |
+
msgid "No Logo Set"
|
3259 |
+
msgstr ""
|
3260 |
+
|
3261 |
+
#: addons/ranks/myCRED-addon-ranks.php:1116
|
3262 |
+
#: addons/ranks/myCRED-addon-ranks.php:1121
|
3263 |
+
msgid "Any Value"
|
3264 |
+
msgstr ""
|
3265 |
+
|
3266 |
+
#: addons/ranks/myCRED-addon-ranks.php:1118
|
3267 |
+
#: addons/buy-creds/modules/buycred-module-core.php:327
|
3268 |
+
msgid "Minimum %plural%"
|
3269 |
+
msgstr ""
|
3270 |
+
|
3271 |
+
#: addons/ranks/myCRED-addon-ranks.php:1123
|
3272 |
+
msgid "Maximum %plural%"
|
3273 |
+
msgstr ""
|
3274 |
+
|
3275 |
+
#: addons/ranks/myCRED-addon-ranks.php:1189
|
3276 |
+
msgid "Rank Setup"
|
3277 |
+
msgstr ""
|
3278 |
+
|
3279 |
+
#: addons/ranks/myCRED-addon-ranks.php:1230
|
3280 |
+
msgid "Minimum Balance Requirement"
|
3281 |
+
msgstr ""
|
3282 |
+
|
3283 |
+
#: addons/ranks/myCRED-addon-ranks.php:1236
|
3284 |
+
msgid "Maximum Balance Requirement"
|
3285 |
+
msgstr ""
|
3286 |
+
|
3287 |
+
#: addons/ranks/myCRED-addon-ranks.php:1274
|
3288 |
+
#: addons/ranks/myCRED-addon-ranks.php:1275
|
3289 |
+
msgid "Not Set"
|
3290 |
+
msgstr ""
|
3291 |
+
|
3292 |
+
#: addons/ranks/myCRED-addon-ranks.php:1363
|
3293 |
+
msgid "Rank Features"
|
3294 |
+
msgstr ""
|
3295 |
+
|
3296 |
+
#: addons/ranks/myCRED-addon-ranks.php:1367
|
3297 |
+
msgid "%plural% requirement"
|
3298 |
+
msgstr ""
|
3299 |
+
|
3300 |
+
#: addons/ranks/myCRED-addon-ranks.php:1370
|
3301 |
+
msgid "Content"
|
3302 |
+
msgstr ""
|
3303 |
+
|
3304 |
+
#: addons/ranks/myCRED-addon-ranks.php:1372
|
3305 |
+
msgid "Excerpt"
|
3306 |
+
msgstr ""
|
3307 |
+
|
3308 |
+
#: addons/ranks/myCRED-addon-ranks.php:1374
|
3309 |
+
msgid "Comments"
|
3310 |
+
msgstr ""
|
3311 |
+
|
3312 |
+
#: addons/ranks/myCRED-addon-ranks.php:1376
|
3313 |
+
msgid "Page Attributes"
|
3314 |
+
msgstr ""
|
3315 |
+
|
3316 |
+
#: addons/ranks/myCRED-addon-ranks.php:1378
|
3317 |
+
msgid "Custom Fields"
|
3318 |
+
msgstr ""
|
3319 |
+
|
3320 |
+
#: addons/ranks/myCRED-addon-ranks.php:1382
|
3321 |
+
msgid "Public"
|
3322 |
+
msgstr ""
|
3323 |
+
|
3324 |
+
#: addons/ranks/myCRED-addon-ranks.php:1386
|
3325 |
+
msgid ""
|
3326 |
+
"If you want to create a template archive for each rank, you must select to "
|
3327 |
+
"have ranks public. Defaults to disabled."
|
3328 |
+
msgstr ""
|
3329 |
+
|
3330 |
+
#: addons/ranks/myCRED-addon-ranks.php:1389
|
3331 |
+
msgid "Archive URL"
|
3332 |
+
msgstr ""
|
3333 |
+
|
3334 |
+
#: addons/ranks/myCRED-addon-ranks.php:1393
|
3335 |
+
msgid "Ignored if Ranks are not public"
|
3336 |
+
msgstr ""
|
3337 |
+
|
3338 |
+
#: addons/ranks/myCRED-addon-ranks.php:1396
|
3339 |
+
msgid "Display Order"
|
3340 |
+
msgstr ""
|
3341 |
+
|
3342 |
+
#: addons/ranks/myCRED-addon-ranks.php:1404
|
3343 |
+
msgid "Ascending - Lowest rank to highest"
|
3344 |
+
msgstr ""
|
3345 |
+
|
3346 |
+
#: addons/ranks/myCRED-addon-ranks.php:1405
|
3347 |
+
msgid "Descending - Highest rank to lowest"
|
3348 |
+
msgstr ""
|
3349 |
+
|
3350 |
+
#: addons/ranks/myCRED-addon-ranks.php:1416
|
3351 |
+
msgid ""
|
3352 |
+
"Select in what order ranks should be displayed in your admin area and/or "
|
3353 |
+
"front if ranks are \"Public\""
|
3354 |
+
msgstr ""
|
3355 |
+
|
3356 |
+
#: addons/ranks/myCRED-addon-ranks.php:1422
|
3357 |
+
msgid "Rank Basis"
|
3358 |
+
msgstr ""
|
3359 |
+
|
3360 |
+
#: addons/ranks/myCRED-addon-ranks.php:1425
|
3361 |
+
msgid "Users are ranked according to their current balance."
|
3362 |
+
msgstr ""
|
3363 |
+
|
3364 |
+
#: addons/ranks/myCRED-addon-ranks.php:1428
|
3365 |
+
msgid ""
|
3366 |
+
"Users are ranked according to the total amount of %_plural% they have "
|
3367 |
+
"accumulated."
|
3368 |
+
msgstr ""
|
3369 |
+
|
3370 |
+
#: addons/ranks/myCRED-addon-ranks.php:1432
|
3371 |
+
#: addons/ranks/myCRED-addon-ranks.php:1437
|
3372 |
+
msgid "Calculate Totals"
|
3373 |
+
msgstr ""
|
3374 |
+
|
3375 |
+
#: addons/ranks/myCRED-addon-ranks.php:1435
|
3376 |
+
msgid ""
|
3377 |
+
"Use this button to calculate or recalculate your users totals. If not used, "
|
3378 |
+
"the users current balance will be used as a starting point."
|
3379 |
+
msgstr ""
|
3380 |
+
|
3381 |
+
#: addons/ranks/myCRED-addon-ranks.php:1435
|
3382 |
+
msgid ""
|
3383 |
+
"Once a users total has been calculated, they will be assigned to their "
|
3384 |
+
"appropriate roles. For this reason, it is highly recommended that you first "
|
3385 |
+
"setup your ranks!"
|
3386 |
+
msgstr ""
|
3387 |
+
|
3388 |
+
#: addons/ranks/myCRED-addon-ranks.php:1436
|
3389 |
+
msgid ""
|
3390 |
+
"Depending on your log size and number of users this process may take a while."
|
3391 |
+
" Please do not leave, click \"Update Settings\" or re-fresh this page until "
|
3392 |
+
"this is completed!"
|
3393 |
+
msgstr ""
|
3394 |
+
|
3395 |
+
#: addons/ranks/myCRED-addon-ranks.php:1454
|
3396 |
+
msgid "Include in Profile Header."
|
3397 |
+
msgstr ""
|
3398 |
+
|
3399 |
+
#: addons/ranks/myCRED-addon-ranks.php:1456
|
3400 |
+
msgid "Include under the \"Profile\" tab and Profile Header."
|
3401 |
+
msgstr ""
|
3402 |
+
|
3403 |
+
#: addons/ranks/myCRED-addon-ranks.php:1460
|
3404 |
+
msgid "Rank in BuddyPress"
|
3405 |
+
msgstr ""
|
3406 |
+
|
3407 |
+
#: addons/ranks/myCRED-addon-ranks.php:1477
|
3408 |
+
#: addons/ranks/myCRED-addon-ranks.php:1522
|
3409 |
+
msgid ""
|
3410 |
+
"Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
|
3411 |
+
"for the title and %rank_logo% to show the rank logo. HTML is allowed."
|
3412 |
+
msgstr ""
|
3413 |
+
|
3414 |
+
#: addons/ranks/myCRED-addon-ranks.php:1499
|
3415 |
+
msgid "Include in Topic Replies"
|
3416 |
+
msgstr ""
|
3417 |
+
|
3418 |
+
#: addons/ranks/myCRED-addon-ranks.php:1500
|
3419 |
+
#: addons/badges/myCRED-addon-badges.php:1183
|
3420 |
+
msgid "Include in Profile"
|
3421 |
+
msgstr ""
|
3422 |
+
|
3423 |
+
#: addons/ranks/myCRED-addon-ranks.php:1501
|
3424 |
+
msgid "Include in Topic Replies and Profile"
|
3425 |
+
msgstr ""
|
3426 |
+
|
3427 |
+
#: addons/ranks/myCRED-addon-ranks.php:1505
|
3428 |
+
msgid "Rank in bbPress"
|
3429 |
+
msgstr ""
|
3430 |
+
|
3431 |
+
#: addons/ranks/myCRED-addon-ranks.php:1584
|
3432 |
+
msgid "Script Communication Error"
|
3433 |
+
msgstr ""
|
3434 |
+
|
3435 |
+
#: addons/ranks/myCRED-addon-ranks.php:1651
|
3436 |
+
msgid "User Meta Key"
|
3437 |
+
msgstr ""
|
3438 |
+
|
3439 |
+
#: addons/ranks/myCRED-addon-ranks.php:1655
|
3440 |
+
msgid "No. of ranks"
|
3441 |
+
msgstr ""
|
3442 |
+
|
3443 |
+
#: addons/ranks/myCRED-addon-ranks.php:1660
|
3444 |
+
msgid "Remove All Ranks"
|
3445 |
+
msgstr ""
|
3446 |
+
|
3447 |
+
#: addons/ranks/myCRED-addon-ranks.php:1660
|
3448 |
+
msgid "Assign Ranks to Users"
|
3449 |
+
msgstr ""
|
3450 |
+
|
3451 |
+
#: addons/notifications/myCRED-addon-notifications.php:191
|
3452 |
+
msgid "Notifications"
|
3453 |
+
msgstr ""
|
3454 |
+
|
3455 |
+
#: addons/notifications/myCRED-addon-notifications.php:193
|
3456 |
+
msgid "Styling"
|
3457 |
+
msgstr ""
|
3458 |
+
|
3459 |
+
#: addons/notifications/myCRED-addon-notifications.php:196
|
3460 |
+
msgid "Use the included CSS Styling for notifications."
|
3461 |
+
msgstr ""
|
3462 |
+
|
3463 |
+
#: addons/notifications/myCRED-addon-notifications.php:203
|
3464 |
+
msgid ""
|
3465 |
+
"Use %entry% to show the log entry in the notice and %amount% for the amount."
|
3466 |
+
msgstr ""
|
3467 |
+
|
3468 |
+
#: addons/notifications/myCRED-addon-notifications.php:203
|
3469 |
+
msgid "Restore to default"
|
3470 |
+
msgstr ""
|
3471 |
+
|
3472 |
+
#: addons/notifications/myCRED-addon-notifications.php:206
|
3473 |
+
msgid "Transient Lifespan"
|
3474 |
+
msgstr ""
|
3475 |
+
|
3476 |
+
#: addons/notifications/myCRED-addon-notifications.php:210
|
3477 |
+
msgid ""
|
3478 |
+
"The number of days a users notification is saved before being automatically "
|
3479 |
+
"deleted."
|
3480 |
+
msgstr ""
|
3481 |
+
|
3482 |
+
#: addons/notifications/myCRED-addon-notifications.php:213
|
3483 |
+
msgid "Duration"
|
3484 |
+
msgstr ""
|
3485 |
+
|
3486 |
+
#: addons/notifications/myCRED-addon-notifications.php:217
|
3487 |
+
msgid ""
|
3488 |
+
"Number of seconds before a notice is automatically removed after being shown "
|
3489 |
+
"to user. Use zero to disable."
|
3490 |
+
msgstr ""
|
3491 |
+
|
3492 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:124
|
3493 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:130
|
3494 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:136
|
3495 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:192
|
3496 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:193
|
3497 |
+
msgid "Email Notifications"
|
3498 |
+
msgstr ""
|
3499 |
+
|
3500 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:125
|
3501 |
+
msgid "Email Notification"
|
3502 |
+
msgstr ""
|
3503 |
+
|
3504 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:128
|
3505 |
+
msgid "Edit Email Notification"
|
3506 |
+
msgstr ""
|
3507 |
+
|
3508 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:129
|
3509 |
+
msgid "New Email Notification"
|
3510 |
+
msgstr ""
|
3511 |
+
|
3512 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:132
|
3513 |
+
msgid "Search Email Notifications"
|
3514 |
+
msgstr ""
|
3515 |
+
|
3516 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:133
|
3517 |
+
msgid "No email notifications found"
|
3518 |
+
msgstr ""
|
3519 |
+
|
3520 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:134
|
3521 |
+
msgid "No email notifications found in Trash"
|
3522 |
+
msgstr ""
|
3523 |
+
|
3524 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:167
|
3525 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:168
|
3526 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:169
|
3527 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:170
|
3528 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:173
|
3529 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:174
|
3530 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:175
|
3531 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:176
|
3532 |
+
msgid "Email Notice Updated."
|
3533 |
+
msgstr ""
|
3534 |
+
|
3535 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:172
|
3536 |
+
msgid "Email Notice Activated."
|
3537 |
+
msgstr ""
|
3538 |
+
|
3539 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:254
|
3540 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:271
|
3541 |
+
msgid "Email Subject"
|
3542 |
+
msgstr ""
|
3543 |
+
|
3544 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:272
|
3545 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:493
|
3546 |
+
#: addons/banking/services/mycred-service-payouts.php:565
|
3547 |
+
#: addons/banking/services/mycred-service-payouts.php:880
|
3548 |
+
msgid "Status"
|
3549 |
+
msgstr ""
|
3550 |
+
|
3551 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:298
|
3552 |
+
msgid "Not Active"
|
3553 |
+
msgstr ""
|
3554 |
+
|
3555 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:301
|
3556 |
+
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
3557 |
+
msgstr ""
|
3558 |
+
|
3559 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:306
|
3560 |
+
#: addons/banking/services/mycred-service-payouts.php:31
|
3561 |
+
msgid "Active"
|
3562 |
+
msgstr ""
|
3563 |
+
|
3564 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:308
|
3565 |
+
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
3566 |
+
msgstr ""
|
3567 |
+
|
3568 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:321
|
3569 |
+
msgid "Email is sent when"
|
3570 |
+
msgstr ""
|
3571 |
+
|
3572 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:323
|
3573 |
+
msgid "Missing instance for this notice!"
|
3574 |
+
msgstr ""
|
3575 |
+
|
3576 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:332
|
3577 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:334
|
3578 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:336
|
3579 |
+
msgid "Sent To"
|
3580 |
+
msgstr ""
|
3581 |
+
|
3582 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:334
|
3583 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:568
|
3584 |
+
msgid "Administrator"
|
3585 |
+
msgstr ""
|
3586 |
+
|
3587 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:336
|
3588 |
+
msgid "Both Administrator and User"
|
3589 |
+
msgstr ""
|
3590 |
+
|
3591 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:347
|
3592 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:588
|
3593 |
+
msgid "All types"
|
3594 |
+
msgstr ""
|
3595 |
+
|
3596 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:384
|
3597 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1400
|
3598 |
+
msgid "Email Settings"
|
3599 |
+
msgstr ""
|
3600 |
+
|
3601 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:393
|
3602 |
+
msgid "Available Template Tags"
|
3603 |
+
msgstr ""
|
3604 |
+
|
3605 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:404
|
3606 |
+
msgid "Email Header"
|
3607 |
+
msgstr ""
|
3608 |
+
|
3609 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:490
|
3610 |
+
msgid ""
|
3611 |
+
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
|
3612 |
+
"you are not yet ready to use this email notice!"
|
3613 |
+
msgstr ""
|
3614 |
+
|
3615 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:492
|
3616 |
+
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
3617 |
+
msgstr ""
|
3618 |
+
|
3619 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:494
|
3620 |
+
msgid "This email notice is active."
|
3621 |
+
msgstr ""
|
3622 |
+
|
3623 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:520
|
3624 |
+
msgid "Send this email notice when..."
|
3625 |
+
msgstr ""
|
3626 |
+
|
3627 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:563
|
3628 |
+
msgid "Recipient:"
|
3629 |
+
msgstr ""
|
3630 |
+
|
3631 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:571
|
3632 |
+
msgid "Both"
|
3633 |
+
msgstr ""
|
3634 |
+
|
3635 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:607
|
3636 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1403
|
3637 |
+
msgid "Senders Name:"
|
3638 |
+
msgstr ""
|
3639 |
+
|
3640 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:611
|
3641 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1407
|
3642 |
+
msgid "Senders Email:"
|
3643 |
+
msgstr ""
|
3644 |
+
|
3645 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:615
|
3646 |
+
msgid "Reply-To Email:"
|
3647 |
+
msgstr ""
|
3648 |
+
|
3649 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:640
|
3650 |
+
msgid "CSS Styling"
|
3651 |
+
msgstr ""
|
3652 |
+
|
3653 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:663
|
3654 |
+
msgid "Site Related"
|
3655 |
+
msgstr ""
|
3656 |
+
|
3657 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:669
|
3658 |
+
msgid "Your websites title"
|
3659 |
+
msgstr ""
|
3660 |
+
|
3661 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:677
|
3662 |
+
msgid "Your websites address"
|
3663 |
+
msgstr ""
|
3664 |
+
|
3665 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:685
|
3666 |
+
msgid "Your websites tagline (description)"
|
3667 |
+
msgstr ""
|
3668 |
+
|
3669 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:693
|
3670 |
+
msgid "Your websites admin email"
|
3671 |
+
msgstr ""
|
3672 |
+
|
3673 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:701
|
3674 |
+
msgid "Total number of blog members"
|
3675 |
+
msgstr ""
|
3676 |
+
|
3677 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:706
|
3678 |
+
msgid "Instance Related"
|
3679 |
+
msgstr ""
|
3680 |
+
|
3681 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:712
|
3682 |
+
msgid "The users new balance"
|
3683 |
+
msgstr ""
|
3684 |
+
|
3685 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:720
|
3686 |
+
msgid "The users old balance"
|
3687 |
+
msgstr ""
|
3688 |
+
|
3689 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:728
|
3690 |
+
msgid "The amount of points gained or lost in this instance"
|
3691 |
+
msgstr ""
|
3692 |
+
|
3693 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:736
|
3694 |
+
msgid "The log entry"
|
3695 |
+
msgstr ""
|
3696 |
+
|
3697 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:741
|
3698 |
+
msgid "You can also use %s."
|
3699 |
+
msgstr ""
|
3700 |
+
|
3701 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:741
|
3702 |
+
msgid "user related template tags"
|
3703 |
+
msgstr ""
|
3704 |
+
|
3705 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:862
|
3706 |
+
msgid "users balance changes"
|
3707 |
+
msgstr ""
|
3708 |
+
|
3709 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:863
|
3710 |
+
msgid "user gains %_plural%"
|
3711 |
+
msgstr ""
|
3712 |
+
|
3713 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:864
|
3714 |
+
msgid "user lose %_plural%"
|
3715 |
+
msgstr ""
|
3716 |
+
|
3717 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:865
|
3718 |
+
msgid "users balance reaches zero"
|
3719 |
+
msgstr ""
|
3720 |
+
|
3721 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:866
|
3722 |
+
msgid "users balance goes minus"
|
3723 |
+
msgstr ""
|
3724 |
+
|
3725 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:872
|
3726 |
+
msgid "Badge Add-on"
|
3727 |
+
msgstr ""
|
3728 |
+
|
3729 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:873
|
3730 |
+
msgid "user gains a badge"
|
3731 |
+
msgstr ""
|
3732 |
+
|
3733 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:880
|
3734 |
+
msgid "Sell Content Add-on"
|
3735 |
+
msgstr ""
|
3736 |
+
|
3737 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:881
|
3738 |
+
msgid "user buys content"
|
3739 |
+
msgstr ""
|
3740 |
+
|
3741 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:882
|
3742 |
+
msgid "authors content gets sold"
|
3743 |
+
msgstr ""
|
3744 |
+
|
3745 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:889
|
3746 |
+
msgid "buyCREDs Add-on"
|
3747 |
+
msgstr ""
|
3748 |
+
|
3749 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:890
|
3750 |
+
msgid "user buys %_plural%"
|
3751 |
+
msgstr ""
|
3752 |
+
|
3753 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:897
|
3754 |
+
msgid "Transfer Add-on"
|
3755 |
+
msgstr ""
|
3756 |
+
|
3757 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:898
|
3758 |
+
msgid "user sends %_plural%"
|
3759 |
+
msgstr ""
|
3760 |
+
|
3761 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:899
|
3762 |
+
msgid "user receives %_plural%"
|
3763 |
+
msgstr ""
|
3764 |
+
|
3765 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:906
|
3766 |
+
msgid "Ranks Add-on"
|
3767 |
+
msgstr ""
|
3768 |
+
|
3769 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:907
|
3770 |
+
msgid "user is demoted"
|
3771 |
+
msgstr ""
|
3772 |
+
|
3773 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:908
|
3774 |
+
msgid "user is promoted"
|
3775 |
+
msgstr ""
|
3776 |
+
|
3777 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1337
|
3778 |
+
#: addons/coupons/myCRED-addon-coupons.php:112
|
3779 |
+
msgid "Email Notices"
|
3780 |
+
msgstr ""
|
3781 |
+
|
3782 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1339
|
3783 |
+
msgid ""
|
3784 |
+
"Settings that apply to all email notices and can not be overridden for "
|
3785 |
+
"individual emails."
|
3786 |
+
msgstr ""
|
3787 |
+
|
3788 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1340
|
3789 |
+
msgid "Email Format"
|
3790 |
+
msgstr ""
|
3791 |
+
|
3792 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1343
|
3793 |
+
msgid "Plain text emails only."
|
3794 |
+
msgstr ""
|
3795 |
+
|
3796 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1346
|
3797 |
+
msgid "HTML or Plain text emails."
|
3798 |
+
msgstr ""
|
3799 |
+
|
3800 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1349
|
3801 |
+
msgid "Filters"
|
3802 |
+
msgstr ""
|
3803 |
+
|
3804 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1353
|
3805 |
+
msgid ""
|
3806 |
+
"Allow WordPress and Third Party Plugins to filter the email subject before "
|
3807 |
+
"an email is sent."
|
3808 |
+
msgstr ""
|
3809 |
+
|
3810 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1357
|
3811 |
+
msgid ""
|
3812 |
+
"Allow WordPress and Third Party Plugins to filter the email content before "
|
3813 |
+
"an email is sent."
|
3814 |
+
msgstr ""
|
3815 |
+
|
3816 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1363
|
3817 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1370
|
3818 |
+
msgid "Email Schedule"
|
3819 |
+
msgstr ""
|
3820 |
+
|
3821 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1365
|
3822 |
+
msgid "WordPress Cron is disabled. Emails will be sent immediately."
|
3823 |
+
msgstr ""
|
3824 |
+
|
3825 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1374
|
3826 |
+
msgid "Send emails immediately"
|
3827 |
+
msgstr ""
|
3828 |
+
|
3829 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1378
|
3830 |
+
msgid "Send emails once an hour"
|
3831 |
+
msgstr ""
|
3832 |
+
|
3833 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1382
|
3834 |
+
msgid "Send emails once a day"
|
3835 |
+
msgstr ""
|
3836 |
+
|
3837 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1385
|
3838 |
+
msgid "Subscriptions"
|
3839 |
+
msgstr ""
|
3840 |
+
|
3841 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1387
|
3842 |
+
msgid ""
|
3843 |
+
"Use the %s shortcode to allow users to subscribe / unsubscribe to email "
|
3844 |
+
"updates."
|
3845 |
+
msgstr ""
|
3846 |
+
|
3847 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1392
|
3848 |
+
msgid "SMTP Override"
|
3849 |
+
msgstr ""
|
3850 |
+
|
3851 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1396
|
3852 |
+
msgid ""
|
3853 |
+
"SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
|
3854 |
+
"use a SMTP plugin for emails."
|
3855 |
+
msgstr ""
|
3856 |
+
|
3857 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1399
|
3858 |
+
msgid ""
|
3859 |
+
"Default email settings. These settings can be individually overridden when "
|
3860 |
+
"editing emails."
|
3861 |
+
msgstr ""
|
3862 |
+
|
3863 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1411
|
3864 |
+
msgid "Reply-To:"
|
3865 |
+
msgstr ""
|
3866 |
+
|
3867 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1415
|
3868 |
+
msgid "Default Email Content"
|
3869 |
+
msgstr ""
|
3870 |
+
|
3871 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1419
|
3872 |
+
msgid "Default email content."
|
3873 |
+
msgstr ""
|
3874 |
+
|
3875 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1422
|
3876 |
+
msgid "Default Email Styling"
|
3877 |
+
msgstr ""
|
3878 |
+
|
3879 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1426
|
3880 |
+
msgid "Ignored if HTML is not allowed in emails."
|
3881 |
+
msgstr ""
|
3882 |
+
|
3883 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1523
|
3884 |
+
msgid "Unsubscribe"
|
3885 |
+
msgstr ""
|
3886 |
+
|
3887 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1524
|
3888 |
+
msgid "Email Notice"
|
3889 |
+
msgstr ""
|
3890 |
+
|
3891 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1545
|
3892 |
+
msgid "There are no email notifications yet."
|
3893 |
+
msgstr ""
|
3894 |
+
|
3895 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1552
|
3896 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:506
|
3897 |
+
msgid "Save Changes"
|
3898 |
+
msgstr ""
|
3899 |
+
|
3900 |
+
#: addons/stats/myCRED-addon-stats.php:58
|
3901 |
+
msgid "Statistics"
|
3902 |
+
msgstr ""
|
3903 |
+
|
3904 |
+
#: addons/stats/myCRED-addon-stats.php:172
|
3905 |
+
msgid "Statistics Color"
|
3906 |
+
msgstr ""
|
3907 |
+
|
3908 |
+
#: addons/stats/myCRED-addon-stats.php:176
|
3909 |
+
msgid "Positive Values"
|
3910 |
+
msgstr ""
|
3911 |
+
|
3912 |
+
#: addons/stats/myCRED-addon-stats.php:182
|
3913 |
+
msgid "Negative Values"
|
3914 |
+
msgstr ""
|
3915 |
+
|
3916 |
+
#: addons/stats/myCRED-addon-stats.php:248
|
3917 |
+
msgid "Overview"
|
3918 |
+
msgstr ""
|
3919 |
+
|
3920 |
+
#: addons/stats/myCRED-addon-stats.php:310
|
3921 |
+
msgid "Refresh"
|
3922 |
+
msgstr ""
|
3923 |
+
|
3924 |
+
#: addons/stats/myCRED-addon-stats.php:417
|
3925 |
+
msgid "Your log is empty. No statistics can be shown."
|
3926 |
+
msgstr ""
|
3927 |
+
|
3928 |
+
#: addons/badges/myCRED-addon-badges.php:148
|
3929 |
+
#: addons/badges/myCRED-addon-badges.php:154
|
3930 |
+
#: addons/badges/myCRED-addon-badges.php:160
|
3931 |
+
#: addons/badges/myCRED-addon-badges.php:295
|
3932 |
+
#: addons/badges/myCRED-addon-badges.php:296
|
3933 |
+
#: addons/badges/myCRED-addon-badges.php:1134
|
3934 |
+
#: addons/badges/myCRED-addon-badges.php:1256
|
3935 |
+
#: addons/badges/myCRED-addon-badges.php:1259
|
3936 |
+
msgid "Badges"
|
3937 |
+
msgstr ""
|
3938 |
+
|
3939 |
+
#: addons/badges/myCRED-addon-badges.php:149
|
3940 |
+
msgid "Badge"
|
3941 |
+
msgstr ""
|
3942 |
+
|
3943 |
+
#: addons/badges/myCRED-addon-badges.php:152
|
3944 |
+
msgid "Edit Badge"
|
3945 |
+
msgstr ""
|
3946 |
+
|
3947 |
+
#: addons/badges/myCRED-addon-badges.php:153
|
3948 |
+
msgid "New Badge"
|
3949 |
+
msgstr ""
|
3950 |
+
|
3951 |
+
#: addons/badges/myCRED-addon-badges.php:155
|
3952 |
+
msgid "View Badge"
|
3953 |
+
msgstr ""
|
3954 |
+
|
3955 |
+
#: addons/badges/myCRED-addon-badges.php:156
|
3956 |
+
msgid "Search Badge"
|
3957 |
+
msgstr ""
|
3958 |
+
|
3959 |
+
#: addons/badges/myCRED-addon-badges.php:157
|
3960 |
+
msgid "No badges found"
|
3961 |
+
msgstr ""
|
3962 |
+
|
3963 |
+
#: addons/badges/myCRED-addon-badges.php:158
|
3964 |
+
msgid "No badges found in Trash"
|
3965 |
+
msgstr ""
|
3966 |
+
|
3967 |
+
#: addons/badges/myCRED-addon-badges.php:270
|
3968 |
+
#: addons/badges/myCRED-addon-badges.php:271
|
3969 |
+
#: addons/badges/myCRED-addon-badges.php:272
|
3970 |
+
#: addons/badges/myCRED-addon-badges.php:273
|
3971 |
+
#: addons/badges/myCRED-addon-badges.php:277
|
3972 |
+
#: addons/badges/myCRED-addon-badges.php:278
|
3973 |
+
#: addons/badges/myCRED-addon-badges.php:279
|
3974 |
+
msgid "Badge Updated."
|
3975 |
+
msgstr ""
|
3976 |
+
|
3977 |
+
#: addons/badges/myCRED-addon-badges.php:275
|
3978 |
+
msgid "Badge Enabled."
|
3979 |
+
msgstr ""
|
3980 |
+
|
3981 |
+
#: addons/badges/myCRED-addon-badges.php:276
|
3982 |
+
msgid "Badge Saved."
|
3983 |
+
msgstr ""
|
3984 |
+
|
3985 |
+
#: addons/badges/myCRED-addon-badges.php:396
|
3986 |
+
#: addons/badges/myCRED-addon-badges.php:480
|
3987 |
+
msgid "Badge Name"
|
3988 |
+
msgstr ""
|
3989 |
+
|
3990 |
+
#: addons/badges/myCRED-addon-badges.php:397
|
3991 |
+
msgid "Default Image"
|
3992 |
+
msgstr ""
|
3993 |
+
|
3994 |
+
#: addons/badges/myCRED-addon-badges.php:398
|
3995 |
+
msgid "First Level"
|
3996 |
+
msgstr ""
|
3997 |
+
|
3998 |
+
#: addons/badges/myCRED-addon-badges.php:399
|
3999 |
+
msgid "Requirements"
|
4000 |
+
msgstr ""
|
4001 |
+
|
4002 |
+
#: addons/badges/myCRED-addon-badges.php:510
|
4003 |
+
#: addons/badges/myCRED-addon-badges.php:801
|
4004 |
+
msgid "Add Level"
|
4005 |
+
msgstr ""
|
4006 |
+
|
4007 |
+
#: addons/badges/myCRED-addon-badges.php:511
|
4008 |
+
#: addons/badges/myCRED-addon-badges.php:802
|
4009 |
+
msgid "Remove Level"
|
4010 |
+
msgstr ""
|
4011 |
+
|
4012 |
+
#: addons/badges/myCRED-addon-badges.php:512
|
4013 |
+
#: addons/badges/myCRED-addon-badges.php:755
|
4014 |
+
#: addons/badges/myCRED-addon-badges.php:818
|
4015 |
+
#: addons/badges/myCRED-addon-badges.php:823
|
4016 |
+
msgid "Set Image"
|
4017 |
+
msgstr ""
|
4018 |
+
|
4019 |
+
#: addons/badges/myCRED-addon-badges.php:513
|
4020 |
+
#: addons/badges/myCRED-addon-badges.php:755
|
4021 |
+
#: addons/badges/myCRED-addon-badges.php:823
|
4022 |
+
msgid "Change Image"
|
4023 |
+
msgstr ""
|
4024 |
+
|
4025 |
+
#: addons/badges/myCRED-addon-badges.php:514
|
4026 |
+
msgid "Are you sure you want to remove this level?"
|
4027 |
+
msgstr ""
|
4028 |
+
|
4029 |
+
#: addons/badges/myCRED-addon-badges.php:515
|
4030 |
+
#: addons/badges/myCRED-addon-badges.php:819
|
4031 |
+
#: addons/badges/myCRED-addon-badges.php:1288
|
4032 |
+
msgid "Level"
|
4033 |
+
msgstr ""
|
4034 |
+
|
4035 |
+
#: addons/badges/myCRED-addon-badges.php:516
|
4036 |
+
msgid "Badge Image"
|
4037 |
+
msgstr ""
|
4038 |
+
|
4039 |
+
#: addons/badges/myCRED-addon-badges.php:517
|
4040 |
+
msgid "Use as Badge"
|
4041 |
+
msgstr ""
|
4042 |
+
|
4043 |
+
#: addons/badges/myCRED-addon-badges.php:518
|
4044 |
+
#: addons/badges/myCRED-addon-badges.php:921
|
4045 |
+
#: addons/badges/includes/mycred-badge-functions.php:271
|
4046 |
+
msgctxt "Comparison of badge requirements. A AND B"
|
4047 |
+
msgid "AND"
|
4048 |
+
msgstr ""
|
4049 |
+
|
4050 |
+
#: addons/badges/myCRED-addon-badges.php:519
|
4051 |
+
#: addons/badges/myCRED-addon-badges.php:921
|
4052 |
+
#: addons/badges/includes/mycred-badge-functions.php:269
|
4053 |
+
msgctxt "Comparison of badge requirements. A OR B"
|
4054 |
+
msgid "OR"
|
4055 |
+
msgstr ""
|
4056 |
+
|
4057 |
+
#: addons/badges/myCRED-addon-badges.php:571
|
4058 |
+
msgid "Badge Setup"
|
4059 |
+
msgstr ""
|
4060 |
+
|
4061 |
+
#: addons/badges/myCRED-addon-badges.php:580
|
4062 |
+
msgid "Default Badge Image"
|
4063 |
+
msgstr ""
|
4064 |
+
|
4065 |
+
#: addons/badges/myCRED-addon-badges.php:678
|
4066 |
+
msgid "Assign Badge"
|
4067 |
+
msgstr ""
|
4068 |
+
|
4069 |
+
#: addons/badges/myCRED-addon-badges.php:679
|
4070 |
+
msgid "Remove Connections"
|
4071 |
+
msgstr ""
|
4072 |
+
|
4073 |
+
#: addons/badges/myCRED-addon-badges.php:722
|
4074 |
+
#: addons/badges/includes/mycred-badge-functions.php:287
|
4075 |
+
msgid "This badge is manually awarded."
|
4076 |
+
msgstr ""
|
4077 |
+
|
4078 |
+
#: addons/badges/myCRED-addon-badges.php:758
|
4079 |
+
msgid "Optional image to show when a user has not earned this badge."
|
4080 |
+
msgstr ""
|
4081 |
+
|
4082 |
+
#: addons/badges/myCRED-addon-badges.php:777
|
4083 |
+
msgid "Time(s)"
|
4084 |
+
msgstr ""
|
4085 |
+
|
4086 |
+
#: addons/badges/myCRED-addon-badges.php:778
|
4087 |
+
msgid "In total"
|
4088 |
+
msgstr ""
|
4089 |
+
|
4090 |
+
#: addons/badges/myCRED-addon-badges.php:825
|
4091 |
+
msgid "Level %d"
|
4092 |
+
msgstr ""
|
4093 |
+
|
4094 |
+
#: addons/badges/myCRED-addon-badges.php:849
|
4095 |
+
msgid "Select Point Type"
|
4096 |
+
msgstr ""
|
4097 |
+
|
4098 |
+
#: addons/badges/myCRED-addon-badges.php:863
|
4099 |
+
msgid "Select Reference"
|
4100 |
+
msgstr ""
|
4101 |
+
|
4102 |
+
#: addons/badges/myCRED-addon-badges.php:939
|
4103 |
+
msgid "Reward"
|
4104 |
+
msgstr ""
|
4105 |
+
|
4106 |
+
#: addons/badges/myCRED-addon-badges.php:1163
|
4107 |
+
#: addons/badges/myCRED-addon-badges.php:1199
|
4108 |
+
msgid "Show all badges, including badges users have not yet earned."
|
4109 |
+
msgstr ""
|
4110 |
+
|
4111 |
+
#: addons/badges/myCRED-addon-badges.php:1184
|
4112 |
+
msgid "Include in Forum Replies"
|
4113 |
+
msgstr ""
|
4114 |
+
|
4115 |
+
#: addons/badges/myCRED-addon-badges.php:1185
|
4116 |
+
msgid "Include in Profile and Forum Replies"
|
4117 |
+
msgstr ""
|
4118 |
+
|
4119 |
+
#: addons/badges/myCRED-addon-badges.php:1251
|
4120 |
+
msgid "No image set"
|
4121 |
+
msgstr ""
|
4122 |
+
|
4123 |
+
#: addons/badges/myCRED-addon-badges.php:1283
|
4124 |
+
msgid "Select a level"
|
4125 |
+
msgstr ""
|
4126 |
+
|
4127 |
+
#: addons/badges/myCRED-addon-badges.php:1297
|
4128 |
+
msgid "Earned"
|
4129 |
+
msgstr ""
|
4130 |
+
|
4131 |
+
#: addons/badges/myCRED-addon-badges.php:1406
|
4132 |
+
msgid "A total of %d users have received this badge."
|
4133 |
+
msgstr ""
|
4134 |
+
|
4135 |
+
#: addons/badges/myCRED-addon-badges.php:1408
|
4136 |
+
msgid "No users has yet earned this badge."
|
4137 |
+
msgstr ""
|
4138 |
+
|
4139 |
+
#: addons/badges/myCRED-addon-badges.php:1433
|
4140 |
+
msgid "No connections where removed."
|
4141 |
+
msgstr ""
|
4142 |
+
|
4143 |
+
#: addons/badges/myCRED-addon-badges.php:1435
|
4144 |
+
msgid "%s connections where removed."
|
4145 |
+
msgstr ""
|
4146 |
+
|
4147 |
+
#: addons/coupons/myCRED-addon-coupons.php:100
|
4148 |
+
#: addons/coupons/myCRED-addon-coupons.php:106
|
4149 |
+
#: addons/coupons/myCRED-addon-coupons.php:168
|
4150 |
+
#: addons/coupons/myCRED-addon-coupons.php:169
|
4151 |
+
#: addons/coupons/myCRED-addon-coupons.php:659
|
4152 |
+
msgid "Coupons"
|
4153 |
+
msgstr ""
|
4154 |
+
|
4155 |
+
#: addons/coupons/myCRED-addon-coupons.php:101
|
4156 |
+
msgid "Coupon"
|
4157 |
+
msgstr ""
|
4158 |
+
|
4159 |
+
#: addons/coupons/myCRED-addon-coupons.php:102
|
4160 |
+
#: addons/coupons/myCRED-addon-coupons.php:103
|
4161 |
+
msgid "Create New"
|
4162 |
+
msgstr ""
|
4163 |
+
|
4164 |
+
#: addons/coupons/myCRED-addon-coupons.php:104
|
4165 |
+
msgid "Edit Coupon"
|
4166 |
+
msgstr ""
|
4167 |
+
|
4168 |
+
#: addons/coupons/myCRED-addon-coupons.php:105
|
4169 |
+
msgid "New Coupon"
|
4170 |
+
msgstr ""
|
4171 |
+
|
4172 |
+
#: addons/coupons/myCRED-addon-coupons.php:108
|
4173 |
+
msgid "Search coupons"
|
4174 |
+
msgstr ""
|
4175 |
+
|
4176 |
+
#: addons/coupons/myCRED-addon-coupons.php:109
|
4177 |
+
msgid "No coupons found"
|
4178 |
+
msgstr ""
|
4179 |
+
|
4180 |
+
#: addons/coupons/myCRED-addon-coupons.php:110
|
4181 |
+
msgid "No coupons found in Trash"
|
4182 |
+
msgstr ""
|
4183 |
+
|
4184 |
+
#: addons/coupons/myCRED-addon-coupons.php:143
|
4185 |
+
#: addons/coupons/myCRED-addon-coupons.php:144
|
4186 |
+
#: addons/coupons/myCRED-addon-coupons.php:145
|
4187 |
+
#: addons/coupons/myCRED-addon-coupons.php:146
|
4188 |
+
#: addons/coupons/myCRED-addon-coupons.php:149
|
4189 |
+
#: addons/coupons/myCRED-addon-coupons.php:150
|
4190 |
+
#: addons/coupons/myCRED-addon-coupons.php:151
|
4191 |
+
#: addons/coupons/myCRED-addon-coupons.php:152
|
4192 |
+
msgid "Coupon updated."
|
4193 |
+
msgstr ""
|
4194 |
+
|
4195 |
+
#: addons/coupons/myCRED-addon-coupons.php:148
|
4196 |
+
msgid "Coupon published."
|
4197 |
+
msgstr ""
|
4198 |
+
|
4199 |
+
#: addons/coupons/myCRED-addon-coupons.php:230
|
4200 |
+
#: addons/coupons/myCRED-addon-coupons.php:247
|
4201 |
+
msgid "Coupon Code"
|
4202 |
+
msgstr ""
|
4203 |
+
|
4204 |
+
#: addons/coupons/myCRED-addon-coupons.php:248
|
4205 |
+
#: addons/coupons/myCRED-addon-coupons.php:481
|
4206 |
+
msgid "Value"
|
4207 |
+
msgstr ""
|
4208 |
+
|
4209 |
+
#: addons/coupons/myCRED-addon-coupons.php:249
|
4210 |
+
msgid "Used"
|
4211 |
+
msgstr ""
|
4212 |
+
|
4213 |
+
#: addons/coupons/myCRED-addon-coupons.php:251
|
4214 |
+
#: addons/sell-content/includes/mycred-sell-shortcodes.php:188
|
4215 |
+
msgid "Expires"
|
4216 |
+
msgstr ""
|
4217 |
+
|
4218 |
+
#: addons/coupons/myCRED-addon-coupons.php:296
|
4219 |
+
msgid "1 time"
|
4220 |
+
msgid_plural "%d times"
|
4221 |
+
msgstr[0] ""
|
4222 |
+
msgstr[1] ""
|
4223 |
+
|
4224 |
+
#: addons/coupons/myCRED-addon-coupons.php:307
|
4225 |
+
msgid "Per User"
|
4226 |
+
msgstr ""
|
4227 |
+
|
4228 |
+
#: addons/coupons/myCRED-addon-coupons.php:316
|
4229 |
+
#: addons/sell-content/includes/mycred-sell-shortcodes.php:231
|
4230 |
+
msgid "Never"
|
4231 |
+
msgstr ""
|
4232 |
+
|
4233 |
+
#: addons/coupons/myCRED-addon-coupons.php:322
|
4234 |
+
msgid "Expired"
|
4235 |
+
msgstr ""
|
4236 |
+
|
4237 |
+
#: addons/coupons/myCRED-addon-coupons.php:326
|
4238 |
+
msgid "In %s time"
|
4239 |
+
msgstr ""
|
4240 |
+
|
4241 |
+
#: addons/coupons/myCRED-addon-coupons.php:425
|
4242 |
+
msgid "Coupon Setup"
|
4243 |
+
msgstr ""
|
4244 |
+
|
4245 |
+
#: addons/coupons/myCRED-addon-coupons.php:434
|
4246 |
+
msgid "Coupon Limits"
|
4247 |
+
msgstr ""
|
4248 |
+
|
4249 |
+
#: addons/coupons/myCRED-addon-coupons.php:443
|
4250 |
+
msgid "Coupon Requirements"
|
4251 |
+
msgstr ""
|
4252 |
+
|
4253 |
+
#: addons/coupons/myCRED-addon-coupons.php:453
|
4254 |
+
msgid "Coupon Usage"
|
4255 |
+
msgstr ""
|
4256 |
+
|
4257 |
+
#: addons/coupons/myCRED-addon-coupons.php:483
|
4258 |
+
msgid "The amount of %plural% this coupon is worth."
|
4259 |
+
msgstr ""
|
4260 |
+
|
4261 |
+
#: addons/coupons/myCRED-addon-coupons.php:492
|
4262 |
+
msgid "Select the point type that this coupon is applied."
|
4263 |
+
msgstr ""
|
4264 |
+
|
4265 |
+
#: addons/coupons/myCRED-addon-coupons.php:504
|
4266 |
+
msgid "Expire"
|
4267 |
+
msgstr ""
|
4268 |
+
|
4269 |
+
#: addons/coupons/myCRED-addon-coupons.php:506
|
4270 |
+
msgid ""
|
4271 |
+
"Optional date when this coupon expires. Expired coupons will be trashed."
|
4272 |
+
msgstr ""
|
4273 |
+
|
4274 |
+
#: addons/coupons/myCRED-addon-coupons.php:534
|
4275 |
+
msgid "Global Maximum"
|
4276 |
+
msgstr ""
|
4277 |
+
|
4278 |
+
#: addons/coupons/myCRED-addon-coupons.php:536
|
4279 |
+
msgid "The maximum number of times this coupon can be used."
|
4280 |
+
msgstr ""
|
4281 |
+
|
4282 |
+
#: addons/coupons/myCRED-addon-coupons.php:541
|
4283 |
+
msgid "User Maximum"
|
4284 |
+
msgstr ""
|
4285 |
+
|
4286 |
+
#: addons/coupons/myCRED-addon-coupons.php:543
|
4287 |
+
msgid "The maximum number of times this coupon can be used by a user."
|
4288 |
+
msgstr ""
|
4289 |
+
|
4290 |
+
#: addons/coupons/myCRED-addon-coupons.php:574
|
4291 |
+
#: addons/banking/services/mycred-service-interest.php:499
|
4292 |
+
msgid "Minimum Balance"
|
4293 |
+
msgstr ""
|
4294 |
+
|
4295 |
+
#: addons/coupons/myCRED-addon-coupons.php:579
|
4296 |
+
msgid ""
|
4297 |
+
"Optional minimum balance a user must have in order to use this coupon. Use "
|
4298 |
+
"zero to disable."
|
4299 |
+
msgstr ""
|
4300 |
+
|
4301 |
+
#: addons/coupons/myCRED-addon-coupons.php:586
|
4302 |
+
msgid "Maximum Balance"
|
4303 |
+
msgstr ""
|
4304 |
+
|
4305 |
+
#: addons/coupons/myCRED-addon-coupons.php:591
|
4306 |
+
msgid ""
|
4307 |
+
"Optional maximum balance a user can have in order to use this coupon. Use "
|
4308 |
+
"zero to disable."
|
4309 |
+
msgstr ""
|
4310 |
+
|
4311 |
+
#: addons/coupons/myCRED-addon-coupons.php:665
|
4312 |
+
msgid ""
|
4313 |
+
"Log entry for successful coupon redemption. Use %coupon% to show the coupon "
|
4314 |
+
"code."
|
4315 |
+
msgstr ""
|
4316 |
+
|
4317 |
+
#: addons/coupons/myCRED-addon-coupons.php:668
|
4318 |
+
msgid "Invalid Coupon Message"
|
4319 |
+
msgstr ""
|
4320 |
+
|
4321 |
+
#: addons/coupons/myCRED-addon-coupons.php:672
|
4322 |
+
msgid "Message to show when users try to use a coupon that does not exists."
|
4323 |
+
msgstr ""
|
4324 |
+
|
4325 |
+
#: addons/coupons/myCRED-addon-coupons.php:675
|
4326 |
+
msgid "Expired Coupon Message"
|
4327 |
+
msgstr ""
|
4328 |
+
|
4329 |
+
#: addons/coupons/myCRED-addon-coupons.php:679
|
4330 |
+
msgid "Message to show when users try to use that has expired."
|
4331 |
+
msgstr ""
|
4332 |
+
|
4333 |
+
#: addons/coupons/myCRED-addon-coupons.php:682
|
4334 |
+
msgid "User Limit Message"
|
4335 |
+
msgstr ""
|
4336 |
+
|
4337 |
+
#: addons/coupons/myCRED-addon-coupons.php:686
|
4338 |
+
msgid "Message to show when the user limit has been reached for the coupon."
|
4339 |
+
msgstr ""
|
4340 |
+
|
4341 |
+
#: addons/coupons/myCRED-addon-coupons.php:689
|
4342 |
+
msgid "Minimum Balance Message"
|
4343 |
+
msgstr ""
|
4344 |
+
|
4345 |
+
#: addons/coupons/myCRED-addon-coupons.php:693
|
4346 |
+
msgid ""
|
4347 |
+
"Message to show when a user does not meet the minimum balance requirement. "
|
4348 |
+
"(if used)"
|
4349 |
+
msgstr ""
|
4350 |
+
|
4351 |
+
#: addons/coupons/myCRED-addon-coupons.php:696
|
4352 |
+
msgid "Maximum Balance Message"
|
4353 |
+
msgstr ""
|
4354 |
+
|
4355 |
+
#: addons/coupons/myCRED-addon-coupons.php:700
|
4356 |
+
msgid ""
|
4357 |
+
"Message to show when a user does not meet the maximum balance requirement. "
|
4358 |
+
"(if used)"
|
4359 |
+
msgstr ""
|
4360 |
+
|
4361 |
+
#: addons/coupons/myCRED-addon-coupons.php:703
|
4362 |
+
msgid "Success Message"
|
4363 |
+
msgstr ""
|
4364 |
+
|
4365 |
+
#: addons/coupons/myCRED-addon-coupons.php:707
|
4366 |
+
msgid ""
|
4367 |
+
"Message to show when a coupon was successfully deposited to a users account."
|
4368 |
+
msgstr ""
|
4369 |
+
|
4370 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:128
|
4371 |
+
msgid "Sell Content Add-on Update Required"
|
4372 |
+
msgstr ""
|
4373 |
+
|
4374 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:129
|
4375 |
+
msgid ""
|
4376 |
+
"Before continuing to use this add-on you must setup and save your settings."
|
4377 |
+
msgstr ""
|
4378 |
+
|
4379 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:235
|
4380 |
+
msgid "Users profit share when their content is purchased."
|
4381 |
+
msgstr ""
|
4382 |
+
|
4383 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:238
|
4384 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:241
|
4385 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:506
|
4386 |
+
msgid "Profit Share"
|
4387 |
+
msgstr ""
|
4388 |
+
|
4389 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:251
|
4390 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:266
|
4391 |
+
msgctxt "Points Name"
|
4392 |
+
msgid "%s Profit Share"
|
4393 |
+
msgstr ""
|
4394 |
+
|
4395 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:254
|
4396 |
+
msgid "Not accepted as payment."
|
4397 |
+
msgstr ""
|
4398 |
+
|
4399 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:269
|
4400 |
+
msgctxt "Points Name"
|
4401 |
+
msgid "User can not pay using %s"
|
4402 |
+
msgstr ""
|
4403 |
+
|
4404 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:281
|
4405 |
+
msgctxt "Buying Points"
|
4406 |
+
msgid "%s Profit Share"
|
4407 |
+
msgstr ""
|
4408 |
+
|
4409 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:284
|
4410 |
+
msgid "Leave empty to use the default."
|
4411 |
+
msgstr ""
|
4412 |
+
|
4413 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:365
|
4414 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:830
|
4415 |
+
msgid "Sell Content"
|
4416 |
+
msgstr ""
|
4417 |
+
|
4418 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:367
|
4419 |
+
msgid "Post Types"
|
4420 |
+
msgstr ""
|
4421 |
+
|
4422 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:369
|
4423 |
+
msgid "Select all the post types you want to sell."
|
4424 |
+
msgstr ""
|
4425 |
+
|
4426 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:385
|
4427 |
+
msgid "You must select at least one post type to sell."
|
4428 |
+
msgstr ""
|
4429 |
+
|
4430 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:439
|
4431 |
+
msgid "Select all the point types accepted as payment."
|
4432 |
+
msgstr ""
|
4433 |
+
|
4434 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:458
|
4435 |
+
msgid "You must select at least one point type to accept as payment."
|
4436 |
+
msgstr ""
|
4437 |
+
|
4438 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:497
|
4439 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:903
|
4440 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:495
|
4441 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:336
|
4442 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:339
|
4443 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:153
|
4444 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:156
|
4445 |
+
msgid "Price"
|
4446 |
+
msgstr ""
|
4447 |
+
|
4448 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:501
|
4449 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:909
|
4450 |
+
msgid "Expiration"
|
4451 |
+
msgstr ""
|
4452 |
+
|
4453 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:502
|
4454 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:849
|
4455 |
+
#: addons/sell-content/includes/mycred-sell-shortcodes.php:181
|
4456 |
+
msgid "Hour(s)"
|
4457 |
+
msgstr ""
|
4458 |
+
|
4459 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:503
|
4460 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:508
|
4461 |
+
#: addons/banking/services/mycred-service-payouts.php:768
|
4462 |
+
#: addons/banking/services/mycred-service-payouts.php:775
|
4463 |
+
msgid "Use zero to disable."
|
4464 |
+
msgstr ""
|
4465 |
+
|
4466 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:513
|
4467 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:548
|
4468 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:473
|
4469 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:619
|
4470 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:703
|
4471 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:88
|
4472 |
+
msgid "Button Label"
|
4473 |
+
msgstr ""
|
4474 |
+
|
4475 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:515
|
4476 |
+
msgid "Use %price% to show the price set for each post."
|
4477 |
+
msgstr ""
|
4478 |
+
|
4479 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:518
|
4480 |
+
msgid "Button CSS Classes"
|
4481 |
+
msgstr ""
|
4482 |
+
|
4483 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:524
|
4484 |
+
msgid "Payment log entry template"
|
4485 |
+
msgstr ""
|
4486 |
+
|
4487 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:529
|
4488 |
+
msgid "Profit Share payout log entry template"
|
4489 |
+
msgstr ""
|
4490 |
+
|
4491 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:531
|
4492 |
+
msgid "Only used if profit sharing is enabled for this point type."
|
4493 |
+
msgstr ""
|
4494 |
+
|
4495 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:542
|
4496 |
+
msgid "Transactions"
|
4497 |
+
msgstr ""
|
4498 |
+
|
4499 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:545
|
4500 |
+
msgid "Reload page after successful payments."
|
4501 |
+
msgstr ""
|
4502 |
+
|
4503 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:550
|
4504 |
+
msgid ""
|
4505 |
+
"Option to show a custom button label while the payment is being processed. "
|
4506 |
+
"HTML is allowed."
|
4507 |
+
msgstr ""
|
4508 |
+
|
4509 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:556
|
4510 |
+
msgid "Members"
|
4511 |
+
msgstr ""
|
4512 |
+
|
4513 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:557
|
4514 |
+
msgid ""
|
4515 |
+
"The template to use when a content is viewed by a member that is logged in "
|
4516 |
+
"and can afford to pay. Only applied to content that is set for sale."
|
4517 |
+
msgstr ""
|
4518 |
+
|
4519 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:574
|
4520 |
+
msgid ""
|
4521 |
+
"The template to use when a content is viewed by someone who is not logged in."
|
4522 |
+
" Only applied to content that is set for sale."
|
4523 |
+
msgstr ""
|
4524 |
+
|
4525 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:592
|
4526 |
+
msgid ""
|
4527 |
+
"The template to use when a content is viewed by a member that is logged but "
|
4528 |
+
"can not afford to buy. Only applied to content that is set for sale."
|
4529 |
+
msgstr ""
|
4530 |
+
|
4531 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:886
|
4532 |
+
msgid "Never expires"
|
4533 |
+
msgstr ""
|
4534 |
+
|
4535 |
+
#: addons/banking/services/mycred-service-central.php:110
|
4536 |
+
msgid "Central Bank Account"
|
4537 |
+
msgstr ""
|
4538 |
+
|
4539 |
+
#: addons/banking/services/mycred-service-central.php:113
|
4540 |
+
msgid "The ID of the user representing the central bank."
|
4541 |
+
msgstr ""
|
4542 |
+
|
4543 |
+
#: addons/banking/services/mycred-service-central.php:117
|
4544 |
+
msgid "Ignore Manual Adjustments"
|
4545 |
+
msgstr ""
|
4546 |
+
|
4547 |
+
#: addons/banking/services/mycred-service-interest.php:28
|
4548 |
+
msgid "%plural% interest rate payment"
|
4549 |
+
msgstr ""
|
4550 |
+
|
4551 |
+
#: addons/banking/services/mycred-service-interest.php:429
|
4552 |
+
msgid "Daily Compound Schedule"
|
4553 |
+
msgstr ""
|
4554 |
+
|
4555 |
+
#: addons/banking/services/mycred-service-interest.php:432
|
4556 |
+
#: addons/banking/services/mycred-service-interest.php:457
|
4557 |
+
#: addons/banking/services/mycred-service-payouts.php:728
|
4558 |
+
msgid "Year"
|
4559 |
+
msgstr ""
|
4560 |
+
|
4561 |
+
#: addons/banking/services/mycred-service-interest.php:433
|
4562 |
+
#: addons/banking/services/mycred-service-interest.php:458
|
4563 |
+
#: addons/banking/services/mycred-service-payouts.php:734
|
4564 |
+
#: addons/banking/includes/mycred-banking-functions.php:95
|
4565 |
+
msgid "Month"
|
4566 |
+
msgstr ""
|
4567 |
+
|
4568 |
+
#: addons/banking/services/mycred-service-interest.php:434
|
4569 |
+
#: addons/banking/services/mycred-service-interest.php:459
|
4570 |
+
#: addons/banking/includes/mycred-banking-functions.php:85
|
4571 |
+
msgid "Day"
|
4572 |
+
msgstr ""
|
4573 |
+
|
4574 |
+
#: addons/banking/services/mycred-service-interest.php:454
|
4575 |
+
msgid "Payout Schedule"
|
4576 |
+
msgstr ""
|
4577 |
+
|
4578 |
+
#: addons/banking/services/mycred-service-interest.php:481
|
4579 |
+
#: addons/banking/services/mycred-service-interest.php:652
|
4580 |
+
msgid "Interest Rate"
|
4581 |
+
msgstr ""
|
4582 |
+
|
4583 |
+
#: addons/banking/services/mycred-service-interest.php:493
|
4584 |
+
msgid "Payout Frequency"
|
4585 |
+
msgstr ""
|
4586 |
+
|
4587 |
+
#: addons/banking/services/mycred-service-interest.php:506
|
4588 |
+
msgid "Payout Log Table"
|
4589 |
+
msgstr ""
|
4590 |
+
|
4591 |
+
#: addons/banking/services/mycred-service-interest.php:519
|
4592 |
+
msgid ""
|
4593 |
+
"Changing the payout period once the service is enabled, will only take "
|
4594 |
+
"effect once the currently scheduled payout runs. To change this, you will "
|
4595 |
+
"also need to adjust the payout schedule above."
|
4596 |
+
msgstr ""
|
4597 |
+
|
4598 |
+
#: addons/banking/services/mycred-service-interest.php:524
|
4599 |
+
msgid "Exclude by ID"
|
4600 |
+
msgstr ""
|
4601 |
+
|
4602 |
+
#: addons/banking/services/mycred-service-interest.php:528
|
4603 |
+
#: addons/banking/services/mycred-service-interest.php:529
|
4604 |
+
#: addons/banking/services/mycred-service-payouts.php:791
|
4605 |
+
msgid "Comma separated list of user IDs"
|
4606 |
+
msgstr ""
|
4607 |
+
|
4608 |
+
#: addons/banking/services/mycred-service-interest.php:535
|
4609 |
+
msgid "Exclude by Role"
|
4610 |
+
msgstr ""
|
4611 |
+
|
4612 |
+
#: addons/banking/services/mycred-service-interest.php:539
|
4613 |
+
msgid "Roles to exclude"
|
4614 |
+
msgstr ""
|
4615 |
+
|
4616 |
+
#: addons/banking/services/mycred-service-interest.php:655
|
4617 |
+
msgid "Leave empty to pay the default rate."
|
4618 |
+
msgstr ""
|
4619 |
+
|
4620 |
+
#: addons/banking/services/mycred-service-payouts.php:30
|
4621 |
+
msgid "Waiting to Start"
|
4622 |
+
msgstr ""
|
4623 |
+
|
4624 |
+
#: addons/banking/services/mycred-service-payouts.php:32
|
4625 |
+
msgid "Running"
|
4626 |
+
msgstr ""
|
4627 |
+
|
4628 |
+
#: addons/banking/services/mycred-service-payouts.php:33
|
4629 |
+
msgid "Finished"
|
4630 |
+
msgstr ""
|
4631 |
+
|
4632 |
+
#: addons/banking/services/mycred-service-payouts.php:34
|
4633 |
+
msgid "Stopped"
|
4634 |
+
msgstr ""
|
4635 |
+
|
4636 |
+
#: addons/banking/services/mycred-service-payouts.php:446
|
4637 |
+
msgid "Not yet started"
|
4638 |
+
msgstr ""
|
4639 |
+
|
4640 |
+
#: addons/banking/services/mycred-service-payouts.php:457
|
4641 |
+
msgid "Currently Running"
|
4642 |
+
msgstr ""
|
4643 |
+
|
4644 |
+
#: addons/banking/services/mycred-service-payouts.php:472
|
4645 |
+
msgid "View Schedule"
|
4646 |
+
msgstr ""
|
4647 |
+
|
4648 |
+
#: addons/banking/services/mycred-service-payouts.php:472
|
4649 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
|
4650 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
|
4651 |
+
msgid "View"
|
4652 |
+
msgstr ""
|
4653 |
+
|
4654 |
+
#: addons/banking/services/mycred-service-payouts.php:472
|
4655 |
+
msgid "Delete Schedule"
|
4656 |
+
msgstr ""
|
4657 |
+
|
4658 |
+
#: addons/banking/services/mycred-service-payouts.php:523
|
4659 |
+
#: addons/banking/services/mycred-service-payouts.php:766
|
4660 |
+
msgid "Min. Balance"
|
4661 |
+
msgstr ""
|
4662 |
+
|
4663 |
+
#: addons/banking/services/mycred-service-payouts.php:526
|
4664 |
+
#: addons/banking/services/mycred-service-payouts.php:773
|
4665 |
+
msgid "Max. Balance"
|
4666 |
+
msgstr ""
|
4667 |
+
|
4668 |
+
#: addons/banking/services/mycred-service-payouts.php:531
|
4669 |
+
msgid "Exclude Users"
|
4670 |
+
msgstr ""
|
4671 |
+
|
4672 |
+
#: addons/banking/services/mycred-service-payouts.php:533
|
4673 |
+
msgid "Include Users"
|
4674 |
+
msgstr ""
|
4675 |
+
|
4676 |
+
#: addons/banking/services/mycred-service-payouts.php:540
|
4677 |
+
msgid "Exclude Roles"
|
4678 |
+
msgstr ""
|
4679 |
+
|
4680 |
+
#: addons/banking/services/mycred-service-payouts.php:542
|
4681 |
+
msgid "Include Roles"
|
4682 |
+
msgstr ""
|
4683 |
+
|
4684 |
+
#: addons/banking/services/mycred-service-payouts.php:559
|
4685 |
+
#: addons/banking/services/mycred-service-payouts.php:879
|
4686 |
+
msgid "Job Title"
|
4687 |
+
msgstr ""
|
4688 |
+
|
4689 |
+
#: addons/banking/services/mycred-service-payouts.php:573
|
4690 |
+
msgid "Start Date"
|
4691 |
+
msgstr ""
|
4692 |
+
|
4693 |
+
#: addons/banking/services/mycred-service-payouts.php:573
|
4694 |
+
msgid "Last Run"
|
4695 |
+
msgstr ""
|
4696 |
+
|
4697 |
+
#: addons/banking/services/mycred-service-payouts.php:579
|
4698 |
+
msgid "Eligible"
|
4699 |
+
msgstr ""
|
4700 |
+
|
4701 |
+
#: addons/banking/services/mycred-service-payouts.php:580
|
4702 |
+
msgid "1 User"
|
4703 |
+
msgid_plural "%d Users"
|
4704 |
+
msgstr[0] ""
|
4705 |
+
msgstr[1] ""
|
4706 |
+
|
4707 |
+
#: addons/banking/services/mycred-service-payouts.php:585
|
4708 |
+
msgid "Runs"
|
4709 |
+
msgstr ""
|
4710 |
+
|
4711 |
+
#: addons/banking/services/mycred-service-payouts.php:586
|
4712 |
+
msgid "Infinite"
|
4713 |
+
msgstr ""
|
4714 |
+
|
4715 |
+
#: addons/banking/services/mycred-service-payouts.php:591
|
4716 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:396
|
4717 |
+
msgid "Payout"
|
4718 |
+
msgstr ""
|
4719 |
+
|
4720 |
+
#: addons/banking/services/mycred-service-payouts.php:609
|
4721 |
+
msgid "Will payout even if the central bank account has run out of funds."
|
4722 |
+
msgstr ""
|
4723 |
+
|
4724 |
+
#: addons/banking/services/mycred-service-payouts.php:614
|
4725 |
+
msgid "Paid Out"
|
4726 |
+
msgstr ""
|
4727 |
+
|
4728 |
+
#: addons/banking/services/mycred-service-payouts.php:615
|
4729 |
+
msgid "Completed"
|
4730 |
+
msgstr ""
|
4731 |
+
|
4732 |
+
#: addons/banking/services/mycred-service-payouts.php:616
|
4733 |
+
msgid "Misses"
|
4734 |
+
msgstr ""
|
4735 |
+
|
4736 |
+
#: addons/banking/services/mycred-service-payouts.php:617
|
4737 |
+
msgid "Runs Left"
|
4738 |
+
msgstr ""
|
4739 |
+
|
4740 |
+
#: addons/banking/services/mycred-service-payouts.php:637
|
4741 |
+
msgid ""
|
4742 |
+
"A miss is when a payout was declined by the plugin. This can be due to "
|
4743 |
+
"custom code declining the payout or if the user is excluded."
|
4744 |
+
msgstr ""
|
4745 |
+
|
4746 |
+
#: addons/banking/services/mycred-service-payouts.php:682
|
4747 |
+
msgid "Schedule Title"
|
4748 |
+
msgstr ""
|
4749 |
+
|
4750 |
+
#: addons/banking/services/mycred-service-payouts.php:694
|
4751 |
+
#: addons/banking/services/mycred-service-payouts.php:881
|
4752 |
+
msgid "Frequency"
|
4753 |
+
msgstr ""
|
4754 |
+
|
4755 |
+
#: addons/banking/services/mycred-service-payouts.php:715
|
4756 |
+
msgid "Payout even if the central bank account runs out of funds."
|
4757 |
+
msgstr ""
|
4758 |
+
|
4759 |
+
#: addons/banking/services/mycred-service-payouts.php:722
|
4760 |
+
msgid "First Payout"
|
4761 |
+
msgstr ""
|
4762 |
+
|
4763 |
+
#: addons/banking/services/mycred-service-payouts.php:754
|
4764 |
+
msgid "Repeat"
|
4765 |
+
msgstr ""
|
4766 |
+
|
4767 |
+
#: addons/banking/services/mycred-service-payouts.php:756
|
4768 |
+
msgid "Use -1 for infinite runs."
|
4769 |
+
msgstr ""
|
4770 |
+
|
4771 |
+
#: addons/banking/services/mycred-service-payouts.php:784
|
4772 |
+
msgid "Limit by ID"
|
4773 |
+
msgstr ""
|
4774 |
+
|
4775 |
+
#: addons/banking/services/mycred-service-payouts.php:798
|
4776 |
+
msgid "Limit by Role(s)"
|
4777 |
+
msgstr ""
|
4778 |
+
|
4779 |
+
#: addons/banking/services/mycred-service-payouts.php:825
|
4780 |
+
msgid "Schedule"
|
4781 |
+
msgstr ""
|
4782 |
+
|
4783 |
+
#: addons/banking/services/mycred-service-payouts.php:846
|
4784 |
+
msgid "Include:"
|
4785 |
+
msgstr ""
|
4786 |
+
|
4787 |
+
#: addons/banking/services/mycred-service-payouts.php:847
|
4788 |
+
msgid "Exclude:"
|
4789 |
+
msgstr ""
|
4790 |
+
|
4791 |
+
#: addons/banking/services/mycred-service-payouts.php:872
|
4792 |
+
msgid ""
|
4793 |
+
"As long as this service remains disabled, none of your scheduled payouts "
|
4794 |
+
"will run!"
|
4795 |
+
msgstr ""
|
4796 |
+
|
4797 |
+
#: addons/banking/services/mycred-service-payouts.php:875
|
4798 |
+
msgid "Schedules"
|
4799 |
+
msgstr ""
|
4800 |
+
|
4801 |
+
#: addons/banking/services/mycred-service-payouts.php:882
|
4802 |
+
msgid "Last Ran"
|
4803 |
+
msgstr ""
|
4804 |
+
|
4805 |
+
#: addons/banking/services/mycred-service-payouts.php:883
|
4806 |
+
msgid "Next Run"
|
4807 |
+
msgstr ""
|
4808 |
+
|
4809 |
+
#: addons/banking/services/mycred-service-payouts.php:891
|
4810 |
+
msgid "No schedules found."
|
4811 |
+
msgstr ""
|
4812 |
+
|
4813 |
+
#: addons/banking/services/mycred-service-payouts.php:955
|
4814 |
+
msgid "Schedule Added"
|
4815 |
+
msgstr ""
|
4816 |
+
|
4817 |
+
#: addons/banking/services/mycred-service-payouts.php:962
|
4818 |
+
msgid ""
|
4819 |
+
"While the recurring payout has been successfully saved, based on the limits "
|
4820 |
+
"you set, right now there are no users that are eligible for a payout!"
|
4821 |
+
msgstr ""
|
4822 |
+
|
4823 |
+
#: addons/banking/services/mycred-service-payouts.php:974
|
4824 |
+
#: addons/banking/services/mycred-service-payouts.php:988
|
4825 |
+
msgid "Schedule not found. Please refresh this page and try again."
|
4826 |
+
msgstr ""
|
4827 |
+
|
4828 |
+
#: addons/banking/services/mycred-service-payouts.php:993
|
4829 |
+
msgid "Schedule Deleted"
|
4830 |
+
msgstr ""
|
4831 |
+
|
4832 |
+
#: addons/banking/includes/mycred-banking-functions.php:79
|
4833 |
+
msgid "Hourly"
|
4834 |
+
msgstr ""
|
4835 |
+
|
4836 |
+
#: addons/banking/includes/mycred-banking-functions.php:80
|
4837 |
+
msgid "Hour"
|
4838 |
+
msgstr ""
|
4839 |
+
|
4840 |
+
#: addons/banking/includes/mycred-banking-functions.php:84
|
4841 |
+
msgid "Daily"
|
4842 |
+
msgstr ""
|
4843 |
+
|
4844 |
+
#: addons/banking/includes/mycred-banking-functions.php:89
|
4845 |
+
msgid "Weekly"
|
4846 |
+
msgstr ""
|
4847 |
+
|
4848 |
+
#: addons/banking/includes/mycred-banking-functions.php:90
|
4849 |
+
msgid "Week"
|
4850 |
+
msgstr ""
|
4851 |
+
|
4852 |
+
#: addons/banking/includes/mycred-banking-functions.php:94
|
4853 |
+
msgid "Monthly"
|
4854 |
+
msgstr ""
|
4855 |
+
|
4856 |
+
#: addons/banking/includes/mycred-banking-functions.php:99
|
4857 |
+
msgid "Quarterly"
|
4858 |
+
msgstr ""
|
4859 |
+
|
4860 |
+
#: addons/banking/includes/mycred-banking-functions.php:100
|
4861 |
+
msgid "Quarter"
|
4862 |
+
msgstr ""
|
4863 |
+
|
4864 |
+
#: addons/banking/includes/mycred-banking-functions.php:104
|
4865 |
+
msgid "Semiannually"
|
4866 |
+
msgstr ""
|
4867 |
+
|
4868 |
+
#: addons/banking/includes/mycred-banking-functions.php:105
|
4869 |
+
msgid "Semiannual"
|
4870 |
+
msgstr ""
|
4871 |
+
|
4872 |
+
#: addons/banking/includes/mycred-banking-functions.php:109
|
4873 |
+
msgid "Annually"
|
4874 |
+
msgstr ""
|
4875 |
+
|
4876 |
+
#: addons/banking/includes/mycred-banking-functions.php:110
|
4877 |
+
msgid "Annual"
|
4878 |
+
msgstr ""
|
4879 |
+
|
4880 |
+
#: addons/banking/includes/mycred-banking-functions.php:283
|
4881 |
+
msgid "A title must be set."
|
4882 |
+
msgstr ""
|
4883 |
+
|
4884 |
+
#: addons/banking/includes/mycred-banking-functions.php:290
|
4885 |
+
msgid "The amount to payout can not be zero."
|
4886 |
+
msgstr ""
|
4887 |
+
|
4888 |
+
#: addons/banking/includes/mycred-banking-functions.php:296
|
4889 |
+
msgid "Start date can not be in the past."
|
4890 |
+
msgstr ""
|
4891 |
+
|
4892 |
+
#: addons/banking/includes/mycred-banking-functions.php:303
|
4893 |
+
msgid "Repeat can not be zero."
|
4894 |
+
msgstr ""
|
4895 |
+
|
4896 |
+
#: addons/banking/includes/mycred-banking-functions.php:309
|
4897 |
+
msgid "Duplicate schedule."
|
4898 |
+
msgstr ""
|
4899 |
+
|
4900 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:26
|
4901 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:540
|
4902 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:626
|
4903 |
+
#: addons/buy-creds/modules/buycred-module-core.php:673
|
4904 |
+
msgid "Payments"
|
4905 |
+
msgstr ""
|
4906 |
+
|
4907 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:27
|
4908 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:35
|
4909 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39
|
4910 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:733
|
4911 |
+
msgid "Pay Now"
|
4912 |
+
msgstr ""
|
4913 |
+
|
4914 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:32
|
4915 |
+
msgid "Payment for Event Registration"
|
4916 |
+
msgstr ""
|
4917 |
+
|
4918 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:311
|
4919 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:336
|
4920 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:416
|
4921 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:120
|
4922 |
+
msgid "Total Cost"
|
4923 |
+
msgstr ""
|
4924 |
+
|
4925 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:315
|
4926 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:340
|
4927 |
+
msgid "Balance After Purchase"
|
4928 |
+
msgstr ""
|
4929 |
+
|
4930 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:380
|
4931 |
+
msgid "Activate %s"
|
4932 |
+
msgstr ""
|
4933 |
+
|
4934 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:389
|
4935 |
+
msgid "Deactivate %s"
|
4936 |
+
msgstr ""
|
4937 |
+
|
4938 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:402
|
4939 |
+
msgid "Gateway Settings"
|
4940 |
+
msgstr ""
|
4941 |
+
|
4942 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:442
|
4943 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:524
|
4944 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:595
|
4945 |
+
msgid "How many %s is 1 %s worth?"
|
4946 |
+
msgstr ""
|
4947 |
+
|
4948 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:463
|
4949 |
+
msgid "Gateway Title"
|
4950 |
+
msgstr ""
|
4951 |
+
|
4952 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:465
|
4953 |
+
msgid "Title to show on Payment page"
|
4954 |
+
msgstr ""
|
4955 |
+
|
4956 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:468
|
4957 |
+
msgid "Payment Type"
|
4958 |
+
msgstr ""
|
4959 |
+
|
4960 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:470
|
4961 |
+
msgid "Title to show on receipts and logs"
|
4962 |
+
msgstr ""
|
4963 |
+
|
4964 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:475
|
4965 |
+
msgid "Pay Button"
|
4966 |
+
msgstr ""
|
4967 |
+
|
4968 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:503
|
4969 |
+
msgid "Important!"
|
4970 |
+
msgstr ""
|
4971 |
+
|
4972 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:505
|
4973 |
+
msgid ""
|
4974 |
+
"You can disable purchases using this gateway by adding a custom Event Meta: "
|
4975 |
+
"<code>mycred_no_sale</code>"
|
4976 |
+
msgstr ""
|
4977 |
+
|
4978 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:506
|
4979 |
+
msgid "Users must be logged in to use this gateway!"
|
4980 |
+
msgstr ""
|
4981 |
+
|
4982 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:510
|
4983 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:569
|
4984 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:641
|
4985 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:393
|
4986 |
+
#: addons/gateway/carts/mycred-woocommerce.php:168
|
4987 |
+
msgid "Profit Sharing"
|
4988 |
+
msgstr ""
|
4989 |
+
|
4990 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:512
|
4991 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:572
|
4992 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:644
|
4993 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:397
|
4994 |
+
#: addons/gateway/carts/mycred-woocommerce.php:170
|
4995 |
+
msgid "Option to share sales with the product owner. Use zero to disable."
|
4996 |
+
msgstr ""
|
4997 |
+
|
4998 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:528
|
4999 |
+
msgid "Solvent users"
|
5000 |
+
msgstr ""
|
5001 |
+
|
5002 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:530
|
5003 |
+
msgid ""
|
5004 |
+
"Message to show users on the payment page before they are charged. Leave "
|
5005 |
+
"empty to hide."
|
5006 |
+
msgstr ""
|
5007 |
+
|
5008 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:533
|
5009 |
+
msgid "Insolvent users"
|
5010 |
+
msgstr ""
|
5011 |
+
|
5012 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:535
|
5013 |
+
msgid "Message to show users who do not have enough points to pay."
|
5014 |
+
msgstr ""
|
5015 |
+
|
5016 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:540
|
5017 |
+
msgid "Message to show visitors (users not logged in) on the payment page."
|
5018 |
+
msgstr ""
|
5019 |
+
|
5020 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:29
|
5021 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
|
5022 |
+
msgid "Payment for tickets to %link_with_title%"
|
5023 |
+
msgstr ""
|
5024 |
+
|
5025 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:30
|
5026 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
|
5027 |
+
msgid "Ticket refund for %link_with_title%"
|
5028 |
+
msgstr ""
|
5029 |
+
|
5030 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:34
|
5031 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
|
5032 |
+
msgid "Pay using your %_plural% balance"
|
5033 |
+
msgstr ""
|
5034 |
+
|
5035 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:36
|
5036 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
|
5037 |
+
msgid "Pay"
|
5038 |
+
msgstr ""
|
5039 |
+
|
5040 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:39
|
5041 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
|
5042 |
+
msgid "Thank you for your payment!"
|
5043 |
+
msgstr ""
|
5044 |
+
|
5045 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:40
|
5046 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
|
5047 |
+
msgid "I'm sorry but you can not pay for these tickets using %_plural%"
|
5048 |
+
msgstr ""
|
5049 |
+
|
5050 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:333
|
5051 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:150
|
5052 |
+
msgid "Ticket Type"
|
5053 |
+
msgstr ""
|
5054 |
+
|
5055 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:342
|
5056 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:159
|
5057 |
+
msgid "Spaces"
|
5058 |
+
msgstr ""
|
5059 |
+
|
5060 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:420
|
5061 |
+
msgid "Balance After Payment"
|
5062 |
+
msgstr ""
|
5063 |
+
|
5064 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:532
|
5065 |
+
msgid "Click to toggle"
|
5066 |
+
msgstr ""
|
5067 |
+
|
5068 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:533
|
5069 |
+
msgid "%s Payments"
|
5070 |
+
msgstr ""
|
5071 |
+
|
5072 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:542
|
5073 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:628
|
5074 |
+
msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
|
5075 |
+
msgstr ""
|
5076 |
+
|
5077 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:543
|
5078 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:629
|
5079 |
+
msgid "Single - Users can ONLY pay for tickets using %plural%."
|
5080 |
+
msgstr ""
|
5081 |
+
|
5082 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:544
|
5083 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:630
|
5084 |
+
msgid "Multi - Users can pay for tickets using other gateways or %plural%."
|
5085 |
+
msgstr ""
|
5086 |
+
|
5087 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:562
|
5088 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:595
|
5089 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:634
|
5090 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:667
|
5091 |
+
msgid "Refunds"
|
5092 |
+
msgstr ""
|
5093 |
+
|
5094 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:565
|
5095 |
+
msgid ""
|
5096 |
+
"The percentage of the paid amount to refund if a booking gets cancelled. Use "
|
5097 |
+
"zero for no refunds. No refunds are given to \"Rejected\" bookings."
|
5098 |
+
msgstr ""
|
5099 |
+
|
5100 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:585
|
5101 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:657
|
5102 |
+
msgid "Log Templates"
|
5103 |
+
msgstr ""
|
5104 |
+
|
5105 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:588
|
5106 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:660
|
5107 |
+
msgid "Purchases"
|
5108 |
+
msgstr ""
|
5109 |
+
|
5110 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:605
|
5111 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:689
|
5112 |
+
msgid "Payment Link Label"
|
5113 |
+
msgstr ""
|
5114 |
+
|
5115 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:608
|
5116 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:692
|
5117 |
+
msgid ""
|
5118 |
+
"The payment link shows / hides the payment form under \"My Bookings\". No "
|
5119 |
+
"HTML allowed."
|
5120 |
+
msgstr ""
|
5121 |
+
|
5122 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:612
|
5123 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:696
|
5124 |
+
msgid "Payment Header"
|
5125 |
+
msgstr ""
|
5126 |
+
|
5127 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:615
|
5128 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:699
|
5129 |
+
msgid "Shown on top of the payment form. No HTML allowed."
|
5130 |
+
msgstr ""
|
5131 |
+
|
5132 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:622
|
5133 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:706
|
5134 |
+
msgid "The button label for payments. No HTML allowed!"
|
5135 |
+
msgstr ""
|
5136 |
+
|
5137 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:626
|
5138 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:717
|
5139 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:404
|
5140 |
+
msgid "Messages"
|
5141 |
+
msgstr ""
|
5142 |
+
|
5143 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:629
|
5144 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:720
|
5145 |
+
msgid "Successful Payments"
|
5146 |
+
msgstr ""
|
5147 |
+
|
5148 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:632
|
5149 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:639
|
5150 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:723
|
5151 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:730
|
5152 |
+
msgid "No HTML allowed!"
|
5153 |
+
msgstr ""
|
5154 |
+
|
5155 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
|
5156 |
+
msgid "%plural% Cost"
|
5157 |
+
msgstr ""
|
5158 |
+
|
5159 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
|
5160 |
+
msgid "Your Balance"
|
5161 |
+
msgstr ""
|
5162 |
+
|
5163 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:374
|
5164 |
+
msgid "You can not pay using this gateway."
|
5165 |
+
msgstr ""
|
5166 |
+
|
5167 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:492
|
5168 |
+
msgid "Reject"
|
5169 |
+
msgstr ""
|
5170 |
+
|
5171 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:501
|
5172 |
+
msgid "Edit/View"
|
5173 |
+
msgstr ""
|
5174 |
+
|
5175 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:637
|
5176 |
+
msgid ""
|
5177 |
+
"The percentage of the paid amount to refund if a user cancels their booking. "
|
5178 |
+
"Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
|
5179 |
+
msgstr ""
|
5180 |
+
|
5181 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
|
5182 |
+
msgid "Cart & Checkout Cost"
|
5183 |
+
msgstr ""
|
5184 |
+
|
5185 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
|
5186 |
+
msgid "Label for cost in %plural%"
|
5187 |
+
msgstr ""
|
5188 |
+
|
5189 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:20
|
5190 |
+
msgid "Payment for Order: #%order_id%"
|
5191 |
+
msgstr ""
|
5192 |
+
|
5193 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:23
|
5194 |
+
msgid "Store sale"
|
5195 |
+
msgstr ""
|
5196 |
+
|
5197 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:25
|
5198 |
+
msgid "You must be logged in to use this gateway"
|
5199 |
+
msgstr ""
|
5200 |
+
|
5201 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:26
|
5202 |
+
msgid "Insufficient Funds."
|
5203 |
+
msgstr ""
|
5204 |
+
|
5205 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:27
|
5206 |
+
msgid "Deduct the amount from your balance."
|
5207 |
+
msgstr ""
|
5208 |
+
|
5209 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:107
|
5210 |
+
#: addons/buy-creds/gateways/bank-transfer.php:110
|
5211 |
+
msgid "Item"
|
5212 |
+
msgstr ""
|
5213 |
+
|
5214 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:128
|
5215 |
+
#: addons/gateway/carts/mycred-woocommerce.php:756
|
5216 |
+
msgid "Your current balance"
|
5217 |
+
msgstr ""
|
5218 |
+
|
5219 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:202
|
5220 |
+
msgid "You can not use this gateway."
|
5221 |
+
msgstr ""
|
5222 |
+
|
5223 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:373
|
5224 |
+
msgid "Log Template for Payments"
|
5225 |
+
msgstr ""
|
5226 |
+
|
5227 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:390
|
5228 |
+
msgid "How much is 1 %s worth in %s"
|
5229 |
+
msgstr ""
|
5230 |
+
|
5231 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:407
|
5232 |
+
msgid "Instructions"
|
5233 |
+
msgstr ""
|
5234 |
+
|
5235 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:408
|
5236 |
+
msgid ""
|
5237 |
+
"Optional instructions to show users when selecting this gateway. Leave empty "
|
5238 |
+
"to hide."
|
5239 |
+
msgstr ""
|
5240 |
+
|
5241 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:412
|
5242 |
+
msgid "Message to show visitors who are not logged in."
|
5243 |
+
msgstr ""
|
5244 |
+
|
5245 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:416
|
5246 |
+
msgid ""
|
5247 |
+
"Message to show when users does not have enough %plural% to pay using this "
|
5248 |
+
"gateway."
|
5249 |
+
msgstr ""
|
5250 |
+
|
5251 |
+
#: addons/gateway/carts/mycred-woocommerce.php:30
|
5252 |
+
msgid "Let users pay using their myCRED balance."
|
5253 |
+
msgstr ""
|
5254 |
+
|
5255 |
+
#: addons/gateway/carts/mycred-woocommerce.php:84
|
5256 |
+
msgid "Enable/Disable"
|
5257 |
+
msgstr ""
|
5258 |
+
|
5259 |
+
#: addons/gateway/carts/mycred-woocommerce.php:86
|
5260 |
+
msgid "Enable myCRED Payment"
|
5261 |
+
msgstr ""
|
5262 |
+
|
5263 |
+
#: addons/gateway/carts/mycred-woocommerce.php:88
|
5264 |
+
msgid ""
|
5265 |
+
"Users who are not logged in or excluded from using myCRED will not have "
|
5266 |
+
"access to this gateway!"
|
5267 |
+
msgstr ""
|
5268 |
+
|
5269 |
+
#: addons/gateway/carts/mycred-woocommerce.php:93
|
5270 |
+
msgid "Title to show for this payment option."
|
5271 |
+
msgstr ""
|
5272 |
+
|
5273 |
+
#: addons/gateway/carts/mycred-woocommerce.php:94
|
5274 |
+
msgid "Pay with myCRED"
|
5275 |
+
msgstr ""
|
5276 |
+
|
5277 |
+
#: addons/gateway/carts/mycred-woocommerce.php:98
|
5278 |
+
msgid "Customer Message"
|
5279 |
+
msgstr ""
|
5280 |
+
|
5281 |
+
#: addons/gateway/carts/mycred-woocommerce.php:109
|
5282 |
+
#: addons/gateway/carts/mycred-woocommerce.php:181
|
5283 |
+
msgid "Refund Log Template"
|
5284 |
+
msgstr ""
|
5285 |
+
|
5286 |
+
#: addons/gateway/carts/mycred-woocommerce.php:121
|
5287 |
+
msgid "Select the point type users can use to pay."
|
5288 |
+
msgstr ""
|
5289 |
+
|
5290 |
+
#: addons/gateway/carts/mycred-woocommerce.php:135
|
5291 |
+
msgid "How much is 1 %_singular% worth in %currency%?"
|
5292 |
+
msgstr ""
|
5293 |
+
|
5294 |
+
#: addons/gateway/carts/mycred-woocommerce.php:147
|
5295 |
+
msgid "Show Total"
|
5296 |
+
msgstr ""
|
5297 |
+
|
5298 |
+
#: addons/gateway/carts/mycred-woocommerce.php:149
|
5299 |
+
msgid "Show the final price in %_plural% ."
|
5300 |
+
msgstr ""
|
5301 |
+
|
5302 |
+
#: addons/gateway/carts/mycred-woocommerce.php:152
|
5303 |
+
msgid "Show in Cart"
|
5304 |
+
msgstr ""
|
5305 |
+
|
5306 |
+
#: addons/gateway/carts/mycred-woocommerce.php:153
|
5307 |
+
msgid "Show on Checkout Page"
|
5308 |
+
msgstr ""
|
5309 |
+
|
5310 |
+
#: addons/gateway/carts/mycred-woocommerce.php:154
|
5311 |
+
msgid "Show in Cart and on Checkout Page"
|
5312 |
+
msgstr ""
|
5313 |
+
|
5314 |
+
#: addons/gateway/carts/mycred-woocommerce.php:161
|
5315 |
+
msgid "Order Total in %_plural%"
|
5316 |
+
msgstr ""
|
5317 |
+
|
5318 |
+
#: addons/gateway/carts/mycred-woocommerce.php:177
|
5319 |
+
msgid "Log entry template for profit sharing."
|
5320 |
+
msgstr ""
|
5321 |
+
|
5322 |
+
#: addons/gateway/carts/mycred-woocommerce.php:183
|
5323 |
+
msgid "Log entry template for refunds of profit shares."
|
5324 |
+
msgstr ""
|
5325 |
+
|
5326 |
+
#: addons/gateway/carts/mycred-woocommerce.php:213
|
5327 |
+
msgid "myCRED Payment"
|
5328 |
+
msgstr ""
|
5329 |
+
|
5330 |
+
#: addons/gateway/carts/mycred-woocommerce.php:237
|
5331 |
+
msgid "You must be logged in to pay with %_plural%"
|
5332 |
+
msgstr ""
|
5333 |
+
|
5334 |
+
#: addons/gateway/carts/mycred-woocommerce.php:245
|
5335 |
+
msgid "You can not use this gateway. Please try a different payment option."
|
5336 |
+
msgstr ""
|
5337 |
+
|
5338 |
+
#: addons/gateway/carts/mycred-woocommerce.php:262
|
5339 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:511
|
5340 |
+
msgid "Insufficient funds."
|
5341 |
+
msgstr ""
|
5342 |
+
|
5343 |
+
#: addons/gateway/carts/mycred-woocommerce.php:364
|
5344 |
+
msgctxt "%s = Point amount formatted"
|
5345 |
+
msgid "Refunded %s"
|
5346 |
+
msgstr ""
|
5347 |
+
|
5348 |
+
#: addons/gateway/carts/mycred-woocommerce.php:414
|
5349 |
+
msgid "Your account has successfully been charged."
|
5350 |
+
msgstr ""
|
5351 |
+
|
5352 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:19
|
5353 |
+
msgid "(%s) Transfer"
|
5354 |
+
msgstr ""
|
5355 |
+
|
5356 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:22
|
5357 |
+
msgid "Allow transfers between users."
|
5358 |
+
msgstr ""
|
5359 |
+
|
5360 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:82
|
5361 |
+
msgid "Show users balance"
|
5362 |
+
msgstr ""
|
5363 |
+
|
5364 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:85
|
5365 |
+
msgid "Show users limit"
|
5366 |
+
msgstr ""
|
5367 |
+
|
5368 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:89
|
5369 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:93
|
5370 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:97
|
5371 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:109
|
5372 |
+
msgid "required"
|
5373 |
+
msgstr ""
|
5374 |
+
|
5375 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:100
|
5376 |
+
#: addons/transfer/includes/mycred-transfer-shortcodes.php:31
|
5377 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:565
|
5378 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1475
|
5379 |
+
msgid "Recipient"
|
5380 |
+
msgstr ""
|
5381 |
+
|
5382 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:104
|
5383 |
+
msgid "Recipient Placeholder"
|
5384 |
+
msgstr ""
|
5385 |
+
|
5386 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:112
|
5387 |
+
msgid "Message for Excluded Users"
|
5388 |
+
msgstr ""
|
5389 |
+
|
5390 |
+
#: addons/transfer/includes/mycred-transfer-shortcodes.php:156
|
5391 |
+
msgid "username"
|
5392 |
+
msgstr ""
|
5393 |
+
|
5394 |
+
#: addons/transfer/includes/mycred-transfer-shortcodes.php:159
|
5395 |
+
msgid "email"
|
5396 |
+
msgstr ""
|
5397 |
+
|
5398 |
+
#: addons/transfer/includes/mycred-transfer-shortcodes.php:161
|
5399 |
+
msgid "recipients %s"
|
5400 |
+
msgstr ""
|
5401 |
+
|
5402 |
+
#: addons/ranks/includes/mycred-rank-shortcodes.php:128
|
5403 |
+
#: addons/ranks/includes/mycred-rank-shortcodes.php:211
|
5404 |
+
msgid "No users found with this rank"
|
5405 |
+
msgstr ""
|
5406 |
+
|
5407 |
+
#: addons/ranks/includes/mycred-rank-shortcodes.php:135
|
5408 |
+
msgid "Rank ID is required!"
|
5409 |
+
msgstr ""
|
5410 |
+
|
5411 |
+
#: addons/stats/abstracts/mycred-abstract-stat-widget.php:103
|
5412 |
+
msgid "Hooks"
|
5413 |
+
msgstr ""
|
5414 |
+
|
5415 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:44
|
5416 |
+
msgid "Total %s:"
|
5417 |
+
msgstr ""
|
5418 |
+
|
5419 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:138
|
5420 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:267
|
5421 |
+
msgid "Total amount of %s in circulation"
|
5422 |
+
msgstr ""
|
5423 |
+
|
5424 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:171
|
5425 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:302
|
5426 |
+
msgid "Total gains (%)"
|
5427 |
+
msgstr ""
|
5428 |
+
|
5429 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:175
|
5430 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:306
|
5431 |
+
msgid "Total loses (%)"
|
5432 |
+
msgstr ""
|
5433 |
+
|
5434 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:179
|
5435 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:309
|
5436 |
+
msgid "Total Gained: %s"
|
5437 |
+
msgstr ""
|
5438 |
+
|
5439 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:179
|
5440 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:309
|
5441 |
+
msgid "Total Spent: %s"
|
5442 |
+
msgstr ""
|
5443 |
+
|
5444 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:193
|
5445 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:323
|
5446 |
+
msgid "This Year"
|
5447 |
+
msgstr ""
|
5448 |
+
|
5449 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:197
|
5450 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:199
|
5451 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:201
|
5452 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:203
|
5453 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:327
|
5454 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:329
|
5455 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:331
|
5456 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:333
|
5457 |
+
#: addons/badges/includes/mycred-badge-functions.php:267
|
5458 |
+
msgid "Gained"
|
5459 |
+
msgstr ""
|
5460 |
+
|
5461 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:198
|
5462 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:200
|
5463 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:202
|
5464 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:204
|
5465 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:328
|
5466 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:330
|
5467 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:332
|
5468 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:334
|
5469 |
+
#: addons/badges/includes/mycred-badge-functions.php:267
|
5470 |
+
msgid "Lost"
|
5471 |
+
msgstr ""
|
5472 |
+
|
5473 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
|
5474 |
+
msgid ""
|
5475 |
+
"Most common ways your users have lost or spent points during this period."
|
5476 |
+
msgstr ""
|
5477 |
+
|
5478 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
|
5479 |
+
msgid ""
|
5480 |
+
"Most common ways your users have lost or spent %_plural% during this period."
|
5481 |
+
msgstr ""
|
5482 |
+
|
5483 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
|
5484 |
+
msgid "Loses in the last 10 days"
|
5485 |
+
msgstr ""
|
5486 |
+
|
5487 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
|
5488 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
|
5489 |
+
msgid "No data found"
|
5490 |
+
msgstr ""
|
5491 |
+
|
5492 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
|
5493 |
+
msgid "Most common ways your users have gained points during this period."
|
5494 |
+
msgstr ""
|
5495 |
+
|
5496 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
|
5497 |
+
msgid "Most common ways your users have gained %_plural% during this period."
|
5498 |
+
msgstr ""
|
5499 |
+
|
5500 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
|
5501 |
+
msgid "Gains in the last 10 days"
|
5502 |
+
msgstr ""
|
5503 |
+
|
5504 |
+
#: addons/badges/includes/mycred-badge-functions.php:248
|
5505 |
+
msgid "Level %s"
|
5506 |
+
msgstr ""
|
5507 |
+
|
5508 |
+
#: addons/badges/includes/mycred-badge-functions.php:265
|
5509 |
+
msgctxt "\"Points\" for \"reference\" x times"
|
5510 |
+
msgid "%s for \"%s\" x %d"
|
5511 |
+
msgstr ""
|
5512 |
+
|
5513 |
+
#: addons/badges/includes/mycred-badge-functions.php:267
|
5514 |
+
msgctxt "\"Gained/Lost\" \"x points\" for \"reference\""
|
5515 |
+
msgid "%s %s for \"%s\""
|
5516 |
+
msgstr ""
|
5517 |
+
|
5518 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:502
|
5519 |
+
msgctxt "Point type name"
|
5520 |
+
msgid "You can not pay using %s"
|
5521 |
+
msgstr ""
|
5522 |
+
|
5523 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:763
|
5524 |
+
msgctxt "all post type name"
|
5525 |
+
msgid "All %s"
|
5526 |
+
msgstr ""
|
5527 |
+
|
5528 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:767
|
5529 |
+
msgctxt "all post type name"
|
5530 |
+
msgid "%s I manually select"
|
5531 |
+
msgstr ""
|
5532 |
+
|
5533 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:771
|
5534 |
+
msgctxt "%s = post type name"
|
5535 |
+
msgid "All %s except"
|
5536 |
+
msgstr ""
|
5537 |
+
|
5538 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:772
|
5539 |
+
msgctxt "%s = post type name"
|
5540 |
+
msgid "Comma separated list of %s IDs to exclude"
|
5541 |
+
msgstr ""
|
5542 |
+
|
5543 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:775
|
5544 |
+
msgctxt "%s = post type name"
|
5545 |
+
msgid "Only %s"
|
5546 |
+
msgstr ""
|
5547 |
+
|
5548 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:776
|
5549 |
+
msgctxt "%s = post type name"
|
5550 |
+
msgid "Comma separated list of %s IDs"
|
5551 |
+
msgstr ""
|
5552 |
+
|
5553 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:788
|
5554 |
+
msgctxt "e.g. Only \"Posts\" in \"Categories\""
|
5555 |
+
msgid "Only %s in %s"
|
5556 |
+
msgstr ""
|
5557 |
+
|
5558 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:789
|
5559 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:793
|
5560 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:799
|
5561 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:803
|
5562 |
+
msgctxt "%s = taxonomy name"
|
5563 |
+
msgid "Comma separated list of %s slugs"
|
5564 |
+
msgstr ""
|
5565 |
+
|
5566 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:792
|
5567 |
+
msgctxt "e.g. Only \"Posts\" not in \"Categories\""
|
5568 |
+
msgid "Only %s not in %s"
|
5569 |
+
msgstr ""
|
5570 |
+
|
5571 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:798
|
5572 |
+
msgctxt "e.g. Only \"Posts\" with \"Tags\""
|
5573 |
+
msgid "Only %s with %s"
|
5574 |
+
msgstr ""
|
5575 |
+
|
5576 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:802
|
5577 |
+
msgctxt "e.g. Only \"Posts\" without \"Tags\""
|
5578 |
+
msgid "Only %s without %s"
|
5579 |
+
msgstr ""
|
5580 |
+
|
5581 |
+
#: addons/sell-content/includes/mycred-sell-shortcodes.php:187
|
5582 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
|
5583 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:290
|
5584 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:637
|
5585 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:750
|
5586 |
+
#: addons/buy-creds/gateways/bank-transfer.php:112
|
5587 |
+
msgid "Cost"
|
5588 |
+
msgstr ""
|
5589 |
+
|
5590 |
+
#: addons/sell-content/includes/mycred-sell-shortcodes.php:233
|
5591 |
+
msgctxt "e.g. 10 hours"
|
5592 |
+
msgid "Purchase expires in %s"
|
5593 |
+
msgstr ""
|
5594 |
+
|
5595 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:163
|
5596 |
+
msgid "Select currency"
|
5597 |
+
msgstr ""
|
5598 |
+
|
5599 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:225
|
5600 |
+
msgctxt "%s is replaced with the point amount and name."
|
5601 |
+
msgid "Received new request to purchase %s."
|
5602 |
+
msgstr ""
|
5603 |
+
|
5604 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:445
|
5605 |
+
#: addons/buy-creds/gateways/bank-transfer.php:96
|
5606 |
+
msgid "Test Payment"
|
5607 |
+
msgstr ""
|
5608 |
+
|
5609 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:451
|
5610 |
+
#: addons/buy-creds/gateways/bank-transfer.php:100
|
5611 |
+
msgid "Payment"
|
5612 |
+
msgstr ""
|
5613 |
+
|
5614 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:576
|
5615 |
+
msgid "First Name"
|
5616 |
+
msgstr ""
|
5617 |
+
|
5618 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
|
5619 |
+
msgid "Last Name"
|
5620 |
+
msgstr ""
|
5621 |
+
|
5622 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:590
|
5623 |
+
msgid "Address Line 1"
|
5624 |
+
msgstr ""
|
5625 |
+
|
5626 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:598
|
5627 |
+
msgid "Address Line 2"
|
5628 |
+
msgstr ""
|
5629 |
+
|
5630 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:606
|
5631 |
+
msgid "City"
|
5632 |
+
msgstr ""
|
5633 |
+
|
5634 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:612
|
5635 |
+
msgid "Zip"
|
5636 |
+
msgstr ""
|
5637 |
+
|
5638 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
|
5639 |
+
msgid "State"
|
5640 |
+
msgstr ""
|
5641 |
+
|
5642 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:628
|
5643 |
+
msgid "Country"
|
5644 |
+
msgstr ""
|
5645 |
+
|
5646 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:633
|
5647 |
+
msgid "Choose Country"
|
5648 |
+
msgstr ""
|
5649 |
+
|
5650 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:685
|
5651 |
+
#: addons/buy-creds/gateways/bank-transfer.php:118
|
5652 |
+
msgid "%s Purchase"
|
5653 |
+
msgstr ""
|
5654 |
+
|
5655 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:691
|
5656 |
+
msgctxt "buyCRED order description"
|
5657 |
+
msgid "Item"
|
5658 |
+
msgstr ""
|
5659 |
+
|
5660 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:786
|
5661 |
+
msgid "Continue to %s"
|
5662 |
+
msgstr ""
|
5663 |
+
|
5664 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:787
|
5665 |
+
#: addons/buy-creds/gateways/bitpay.php:225
|
5666 |
+
msgid "Click here if you are not automatically redirected"
|
5667 |
+
msgstr ""
|
5668 |
+
|
5669 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1501
|
5670 |
+
msgid "January"
|
5671 |
+
msgstr ""
|
5672 |
+
|
5673 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1502
|
5674 |
+
msgid "February"
|
5675 |
+
msgstr ""
|
5676 |
+
|
5677 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1503
|
5678 |
+
msgid "March"
|
5679 |
+
msgstr ""
|
5680 |
+
|
5681 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1504
|
5682 |
+
msgid "April"
|
5683 |
+
msgstr ""
|
5684 |
+
|
5685 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1505
|
5686 |
+
msgid "May"
|
5687 |
+
msgstr ""
|
5688 |
+
|
5689 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1506
|
5690 |
+
msgid "June"
|
5691 |
+
msgstr ""
|
5692 |
+
|
5693 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1507
|
5694 |
+
msgid "July"
|
5695 |
+
msgstr ""
|
5696 |
+
|
5697 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1508
|
5698 |
+
msgid "August"
|
5699 |
+
msgstr ""
|
5700 |
+
|
5701 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1509
|
5702 |
+
msgid "September"
|
5703 |
+
msgstr ""
|
5704 |
+
|
5705 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1510
|
5706 |
+
msgid "October"
|
5707 |
+
msgstr ""
|
5708 |
+
|
5709 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1511
|
5710 |
+
msgid "November"
|
5711 |
+
msgstr ""
|
5712 |
+
|
5713 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1512
|
5714 |
+
msgid "December"
|
5715 |
+
msgstr ""
|
5716 |
+
|
5717 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:158
|
5718 |
+
msgctxt "Post Type General Name"
|
5719 |
+
msgid "Pending Payments"
|
5720 |
+
msgstr ""
|
5721 |
+
|
5722 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:159
|
5723 |
+
msgctxt "Post Type Singular Name"
|
5724 |
+
msgid "Pending Payment"
|
5725 |
+
msgstr ""
|
5726 |
+
|
5727 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:160
|
5728 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:162
|
5729 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:252
|
5730 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:253
|
5731 |
+
msgid "Pending Payments"
|
5732 |
+
msgstr ""
|
5733 |
+
|
5734 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:166
|
5735 |
+
msgid "Edit Pending Payment"
|
5736 |
+
msgstr ""
|
5737 |
+
|
5738 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:169
|
5739 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:170
|
5740 |
+
msgid "Not found in Trash"
|
5741 |
+
msgstr ""
|
5742 |
+
|
5743 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:200
|
5744 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:201
|
5745 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:202
|
5746 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:203
|
5747 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:204
|
5748 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:205
|
5749 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:206
|
5750 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:207
|
5751 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:208
|
5752 |
+
msgid "Payment Updated."
|
5753 |
+
msgstr ""
|
5754 |
+
|
5755 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:236
|
5756 |
+
msgid "Pending payment successfully credited to account."
|
5757 |
+
msgstr ""
|
5758 |
+
|
5759 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:238
|
5760 |
+
msgid "Failed to credit the pending payment to account."
|
5761 |
+
msgstr ""
|
5762 |
+
|
5763 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:286
|
5764 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:747
|
5765 |
+
#: addons/buy-creds/modules/buycred-module-core.php:755
|
5766 |
+
#: addons/buy-creds/gateways/bank-transfer.php:113
|
5767 |
+
msgid "Transaction ID"
|
5768 |
+
msgstr ""
|
5769 |
+
|
5770 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:288
|
5771 |
+
#: addons/buy-creds/modules/buycred-module-core.php:751
|
5772 |
+
msgid "Buyer"
|
5773 |
+
msgstr ""
|
5774 |
+
|
5775 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:291
|
5776 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:612
|
5777 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:748
|
5778 |
+
#: addons/buy-creds/modules/buycred-module-core.php:750
|
5779 |
+
#: addons/buy-creds/includes/buycred-functions.php:119
|
5780 |
+
msgid "Gateway"
|
5781 |
+
msgstr ""
|
5782 |
+
|
5783 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:292
|
5784 |
+
msgid "Type"
|
5785 |
+
msgstr ""
|
5786 |
+
|
5787 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:389
|
5788 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:494
|
5789 |
+
msgid "Pay Out"
|
5790 |
+
msgstr ""
|
5791 |
+
|
5792 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:457
|
5793 |
+
msgid "Pending Payment"
|
5794 |
+
msgstr ""
|
5795 |
+
|
5796 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:489
|
5797 |
+
msgid "Save"
|
5798 |
+
msgstr ""
|
5799 |
+
|
5800 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:495
|
5801 |
+
msgid "Trash"
|
5802 |
+
msgstr ""
|
5803 |
+
|
5804 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:559
|
5805 |
+
msgid "Payer"
|
5806 |
+
msgstr ""
|
5807 |
+
|
5808 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:643
|
5809 |
+
#: addons/buy-creds/gateways/bank-transfer.php:180
|
5810 |
+
#: addons/buy-creds/gateways/bitpay.php:251
|
5811 |
+
#: addons/buy-creds/gateways/paypal-standard.php:279
|
5812 |
+
#: addons/buy-creds/gateways/skrill.php:294
|
5813 |
+
msgid "Currency"
|
5814 |
+
msgstr ""
|
5815 |
+
|
5816 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:668
|
5817 |
+
msgid "Pending request created."
|
5818 |
+
msgstr ""
|
5819 |
+
|
5820 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:716
|
5821 |
+
msgid "Pending payment updated by %s"
|
5822 |
+
msgstr ""
|
5823 |
+
|
5824 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:814
|
5825 |
+
msgid "No pending payments found"
|
5826 |
+
msgstr ""
|
5827 |
+
|
5828 |
+
#: addons/buy-creds/modules/buycred-module-core.php:28
|
5829 |
+
#: addons/buy-creds/modules/buycred-module-core.php:29
|
5830 |
+
#: addons/buy-creds/modules/buycred-module-core.php:30
|
5831 |
+
msgid "Payment Gateways"
|
5832 |
+
msgstr ""
|
5833 |
+
|
5834 |
+
#: addons/buy-creds/modules/buycred-module-core.php:138
|
5835 |
+
msgid "Bank Transfer"
|
5836 |
+
msgstr ""
|
5837 |
+
|
5838 |
+
#: addons/buy-creds/modules/buycred-module-core.php:297
|
5839 |
+
msgid "Please login to purchase %_plural%"
|
5840 |
+
msgstr ""
|
5841 |
+
|
5842 |
+
#: addons/buy-creds/modules/buycred-module-core.php:312
|
5843 |
+
msgid "Gift purchase from %display_name%."
|
5844 |
+
msgstr ""
|
5845 |
+
|
5846 |
+
#: addons/buy-creds/modules/buycred-module-core.php:331
|
5847 |
+
msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
|
5848 |
+
msgstr ""
|
5849 |
+
|
5850 |
+
#: addons/buy-creds/modules/buycred-module-core.php:339
|
5851 |
+
msgid ""
|
5852 |
+
"Select the point types that users can buy. You must select at least one!"
|
5853 |
+
msgstr ""
|
5854 |
+
|
5855 |
+
#: addons/buy-creds/modules/buycred-module-core.php:350
|
5856 |
+
msgid "Login Template"
|
5857 |
+
msgstr ""
|
5858 |
+
|
5859 |
+
#: addons/buy-creds/modules/buycred-module-core.php:354
|
5860 |
+
msgid "Content to show when a user is not logged in."
|
5861 |
+
msgstr ""
|
5862 |
+
|
5863 |
+
#: addons/buy-creds/modules/buycred-module-core.php:364
|
5864 |
+
msgid "Thank You Page"
|
5865 |
+
msgstr ""
|
5866 |
+
|
5867 |
+
#: addons/buy-creds/modules/buycred-module-core.php:367
|
5868 |
+
#: addons/buy-creds/modules/buycred-module-core.php:390
|
5869 |
+
msgid "Custom URL"
|
5870 |
+
msgstr ""
|
5871 |
+
|
5872 |
+
#: addons/buy-creds/modules/buycred-module-core.php:372
|
5873 |
+
#: addons/buy-creds/modules/buycred-module-core.php:395
|
5874 |
+
msgid "Page"
|
5875 |
+
msgstr ""
|
5876 |
+
|
5877 |
+
#: addons/buy-creds/modules/buycred-module-core.php:387
|
5878 |
+
msgid "Cancellation Page"
|
5879 |
+
msgstr ""
|
5880 |
+
|
5881 |
+
#: addons/buy-creds/modules/buycred-module-core.php:410
|
5882 |
+
#: addons/buy-creds/modules/buycred-module-core.php:511
|
5883 |
+
#: addons/buy-creds/modules/buycred-module-core.php:762
|
5884 |
+
msgid "Purchase Log"
|
5885 |
+
msgstr ""
|
5886 |
+
|
5887 |
+
#: addons/buy-creds/modules/buycred-module-core.php:412
|
5888 |
+
msgid "Show seperate log for %_plural% purchases."
|
5889 |
+
msgstr ""
|
5890 |
+
|
5891 |
+
#: addons/buy-creds/modules/buycred-module-core.php:414
|
5892 |
+
msgid "Gifting"
|
5893 |
+
msgstr ""
|
5894 |
+
|
5895 |
+
#: addons/buy-creds/modules/buycred-module-core.php:416
|
5896 |
+
msgid "Allow users to buy %_plural% for other users."
|
5897 |
+
msgstr ""
|
5898 |
+
|
5899 |
+
#: addons/buy-creds/modules/buycred-module-core.php:417
|
5900 |
+
msgid "Allow users to buy %_plural% for content authors."
|
5901 |
+
msgstr ""
|
5902 |
+
|
5903 |
+
#: addons/buy-creds/modules/buycred-module-core.php:425
|
5904 |
+
msgid "Available Shortcodes"
|
5905 |
+
msgstr ""
|
5906 |
+
|
5907 |
+
#: addons/buy-creds/modules/buycred-module-core.php:510
|
5908 |
+
msgid "buyCRED Purchase Log"
|
5909 |
+
msgstr ""
|
5910 |
+
|
5911 |
+
#: addons/buy-creds/modules/buycred-module-core.php:555
|
5912 |
+
msgid "%s Payment Gateways"
|
5913 |
+
msgstr ""
|
5914 |
+
|
5915 |
+
#: addons/buy-creds/modules/buycred-module-core.php:590
|
5916 |
+
msgid "Sandbox Mode"
|
5917 |
+
msgstr ""
|
5918 |
+
|
5919 |
+
#: addons/buy-creds/modules/buycred-module-core.php:593
|
5920 |
+
msgid "Enable for test purchases."
|
5921 |
+
msgstr ""
|
5922 |
+
|
5923 |
+
#: addons/buy-creds/modules/buycred-module-core.php:613
|
5924 |
+
msgid "More Gateways"
|
5925 |
+
msgstr ""
|
5926 |
+
|
5927 |
+
#: addons/buy-creds/modules/buycred-module-core.php:754
|
5928 |
+
msgid "Payed"
|
5929 |
+
msgstr ""
|
5930 |
+
|
5931 |
+
#: addons/buy-creds/modules/buycred-module-core.php:970
|
5932 |
+
msgid "No purchases found"
|
5933 |
+
msgstr ""
|
5934 |
+
|
5935 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1092
|
5936 |
+
msgid "Users exchange rate when buying points."
|
5937 |
+
msgstr ""
|
5938 |
+
|
5939 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1103
|
5940 |
+
msgid "buyCRED Exchange Rates"
|
5941 |
+
msgstr ""
|
5942 |
+
|
5943 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1113
|
5944 |
+
msgctxt "Points Name"
|
5945 |
+
msgid "Buying %s"
|
5946 |
+
msgstr ""
|
5947 |
+
|
5948 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1116
|
5949 |
+
msgid "This point type is not for sale."
|
5950 |
+
msgstr ""
|
5951 |
+
|
5952 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1128
|
5953 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1143
|
5954 |
+
msgctxt "Buying Points"
|
5955 |
+
msgid "Buying %s"
|
5956 |
+
msgstr ""
|
5957 |
+
|
5958 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1131
|
5959 |
+
msgctxt "Points Name"
|
5960 |
+
msgid "User can not buy %s"
|
5961 |
+
msgstr ""
|
5962 |
+
|
5963 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1146
|
5964 |
+
msgid "Leave empty to use the default rate."
|
5965 |
+
msgstr ""
|
5966 |
+
|
5967 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1357
|
5968 |
+
msgid "Buy Now"
|
5969 |
+
msgstr ""
|
5970 |
+
|
5971 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1519
|
5972 |
+
msgid "Pay Using"
|
5973 |
+
msgstr ""
|
5974 |
+
|
5975 |
+
#: addons/buy-creds/includes/buycred-functions.php:115
|
5976 |
+
msgid "Unknown Gateway"
|
5977 |
+
msgstr ""
|
5978 |
+
|
5979 |
+
#: addons/buy-creds/gateways/bank-transfer.php:59
|
5980 |
+
#: addons/buy-creds/gateways/bitpay.php:163
|
5981 |
+
#: addons/buy-creds/gateways/netbilling.php:144
|
5982 |
+
#: addons/buy-creds/gateways/zombaio.php:267
|
5983 |
+
#: addons/buy-creds/gateways/paypal-standard.php:207
|
5984 |
+
#: addons/buy-creds/gateways/skrill.php:186
|
5985 |
+
msgid "Please setup this gateway before attempting to make a purchase!"
|
5986 |
+
msgstr ""
|
5987 |
+
|
5988 |
+
#: addons/buy-creds/gateways/bank-transfer.php:139
|
5989 |
+
msgid "Continue"
|
5990 |
+
msgstr ""
|
5991 |
+
|
5992 |
+
#: addons/buy-creds/gateways/bank-transfer.php:167
|
5993 |
+
msgid "Checkout Logo"
|
5994 |
+
msgstr ""
|
5995 |
+
|
5996 |
+
#: addons/buy-creds/gateways/bank-transfer.php:173
|
5997 |
+
msgid "Bank Account Information"
|
5998 |
+
msgstr ""
|
5999 |
+
|
6000 |
+
#: addons/buy-creds/gateways/bank-transfer.php:177
|
6001 |
+
msgid "Bank transfer details to show the user on the checkout page."
|
6002 |
+
msgstr ""
|
6003 |
+
|
6004 |
+
#: addons/buy-creds/gateways/bank-transfer.php:186
|
6005 |
+
#: addons/buy-creds/gateways/bitpay.php:265
|
6006 |
+
#: addons/buy-creds/gateways/netbilling.php:234
|
6007 |
+
#: addons/buy-creds/gateways/paypal-standard.php:298
|
6008 |
+
#: addons/buy-creds/gateways/skrill.php:320
|
6009 |
+
msgid "Exchange Rates"
|
6010 |
+
msgstr ""
|
6011 |
+
|
6012 |
+
#: addons/buy-creds/gateways/bitpay.php:62
|
6013 |
+
#: addons/buy-creds/gateways/netbilling.php:92
|
6014 |
+
#: addons/buy-creds/gateways/paypal-standard.php:145
|
6015 |
+
#: addons/buy-creds/gateways/skrill.php:124
|
6016 |
+
msgid "Price mismatch. Expected: %s Received: %s"
|
6017 |
+
msgstr ""
|
6018 |
+
|
6019 |
+
#: addons/buy-creds/gateways/bitpay.php:68
|
6020 |
+
#: addons/buy-creds/gateways/paypal-standard.php:151
|
6021 |
+
#: addons/buy-creds/gateways/skrill.php:130
|
6022 |
+
msgid "Currency mismatch. Expected: %s Received: %s"
|
6023 |
+
msgstr ""
|
6024 |
+
|
6025 |
+
#: addons/buy-creds/gateways/bitpay.php:74
|
6026 |
+
#: addons/buy-creds/gateways/netbilling.php:98
|
6027 |
+
#: addons/buy-creds/gateways/paypal-standard.php:157
|
6028 |
+
#: addons/buy-creds/gateways/skrill.php:136
|
6029 |
+
msgid "Payment not completed. Received: %s"
|
6030 |
+
msgstr ""
|
6031 |
+
|
6032 |
+
#: addons/buy-creds/gateways/bitpay.php:85
|
6033 |
+
#: addons/buy-creds/gateways/netbilling.php:109
|
6034 |
+
#: addons/buy-creds/gateways/zombaio.php:237
|
6035 |
+
#: addons/buy-creds/gateways/paypal-standard.php:168
|
6036 |
+
#: addons/buy-creds/gateways/skrill.php:147
|
6037 |
+
msgid "Failed to credit users account."
|
6038 |
+
msgstr ""
|
6039 |
+
|
6040 |
+
#: addons/buy-creds/gateways/bitpay.php:208
|
6041 |
+
#: addons/buy-creds/gateways/bitpay.php:219
|
6042 |
+
#: addons/buy-creds/gateways/netbilling.php:190
|
6043 |
+
#: addons/buy-creds/gateways/zombaio.php:297
|
6044 |
+
#: addons/buy-creds/gateways/paypal-standard.php:261
|
6045 |
+
#: addons/buy-creds/gateways/skrill.php:275
|
6046 |
+
msgid "Processing payment …"
|
6047 |
+
msgstr ""
|
6048 |
+
|
6049 |
+
#: addons/buy-creds/gateways/bitpay.php:211
|
6050 |
+
msgid ""
|
6051 |
+
"Could not create a BitPay Invoice. Please contact the site administrator!"
|
6052 |
+
msgstr ""
|
6053 |
+
|
6054 |
+
#: addons/buy-creds/gateways/bitpay.php:212
|
6055 |
+
msgid "Bitpay returned the following error message:"
|
6056 |
+
msgstr ""
|
6057 |
+
|
6058 |
+
#: addons/buy-creds/gateways/bitpay.php:254
|
6059 |
+
msgid "Currency Code"
|
6060 |
+
msgstr ""
|
6061 |
+
|
6062 |
+
#: addons/buy-creds/gateways/bitpay.php:258
|
6063 |
+
#: addons/buy-creds/gateways/netbilling.php:227
|
6064 |
+
#: addons/buy-creds/gateways/paypal-standard.php:291
|
6065 |
+
#: addons/buy-creds/gateways/skrill.php:313
|
6066 |
+
msgid "Item Name"
|
6067 |
+
msgstr ""
|
6068 |
+
|
6069 |
+
#: addons/buy-creds/gateways/bitpay.php:262
|
6070 |
+
#: addons/buy-creds/gateways/netbilling.php:231
|
6071 |
+
#: addons/buy-creds/gateways/paypal-standard.php:295
|
6072 |
+
#: addons/buy-creds/gateways/skrill.php:317
|
6073 |
+
msgid "Description of the item being purchased by the user."
|
6074 |
+
msgstr ""
|
6075 |
+
|
6076 |
+
#: addons/buy-creds/gateways/bitpay.php:269
|
6077 |
+
msgid "Transaction Speed"
|
6078 |
+
msgstr ""
|
6079 |
+
|
6080 |
+
#: addons/buy-creds/gateways/bitpay.php:276
|
6081 |
+
msgid "High"
|
6082 |
+
msgstr ""
|
6083 |
+
|
6084 |
+
#: addons/buy-creds/gateways/bitpay.php:277
|
6085 |
+
msgid "Medium"
|
6086 |
+
msgstr ""
|
6087 |
+
|
6088 |
+
#: addons/buy-creds/gateways/bitpay.php:278
|
6089 |
+
msgid "Low"
|
6090 |
+
msgstr ""
|
6091 |
+
|
6092 |
+
#: addons/buy-creds/gateways/bitpay.php:291
|
6093 |
+
msgid "Full Notifications"
|
6094 |
+
msgstr ""
|
6095 |
+
|
6096 |
+
#: addons/buy-creds/gateways/netbilling.php:208
|
6097 |
+
msgid "Account ID"
|
6098 |
+
msgstr ""
|
6099 |
+
|
6100 |
+
#: addons/buy-creds/gateways/netbilling.php:214
|
6101 |
+
msgid "Site Tag"
|
6102 |
+
msgstr ""
|
6103 |
+
|
6104 |
+
#: addons/buy-creds/gateways/netbilling.php:220
|
6105 |
+
msgid "Order Integrity Key"
|
6106 |
+
msgstr ""
|
6107 |
+
|
6108 |
+
#: addons/buy-creds/gateways/netbilling.php:224
|
6109 |
+
msgid "Found under Step 12 on the Fraud Defense page."
|
6110 |
+
msgstr ""
|
6111 |
+
|
6112 |
+
#: addons/buy-creds/gateways/netbilling.php:238
|
6113 |
+
msgid "Postback CGI URL"
|
6114 |
+
msgstr ""
|
6115 |
+
|
6116 |
+
#: addons/buy-creds/gateways/netbilling.php:242
|
6117 |
+
msgid ""
|
6118 |
+
"For this gateway to work, you must login to your NETbilling account and edit "
|
6119 |
+
"your site. Under \"Default payment form settings\" make sure the Postback "
|
6120 |
+
"CGI URL is set to the above address and \"Return method\" is set to POST."
|
6121 |
+
msgstr ""
|
6122 |
+
|
6123 |
+
#: addons/buy-creds/gateways/netbilling.php:290
|
6124 |
+
msgid "Incorrect Credit Card number"
|
6125 |
+
msgstr ""
|
6126 |
+
|
6127 |
+
#: addons/buy-creds/gateways/netbilling.php:296
|
6128 |
+
msgid "The credit card entered is past its expiration date."
|
6129 |
+
msgstr ""
|
6130 |
+
|
6131 |
+
#: addons/buy-creds/gateways/netbilling.php:299
|
6132 |
+
msgid "The CVV2 number entered is not valid."
|
6133 |
+
msgstr ""
|
6134 |
+
|
6135 |
+
#: addons/buy-creds/gateways/netbilling.php:306
|
6136 |
+
msgid "The bank routing number entered is not valid."
|
6137 |
+
msgstr ""
|
6138 |
+
|
6139 |
+
#: addons/buy-creds/gateways/netbilling.php:310
|
6140 |
+
msgid "The bank account number entered is not valid."
|
6141 |
+
msgstr ""
|
6142 |
+
|
6143 |
+
#: addons/buy-creds/gateways/zombaio.php:204
|
6144 |
+
msgid "Duplicate transaction. Received: %s"
|
6145 |
+
msgstr ""
|
6146 |
+
|
6147 |
+
#: addons/buy-creds/gateways/zombaio.php:210
|
6148 |
+
msgid "Live transaction while debug mode is enabled! Received: %s"
|
6149 |
+
msgstr ""
|
6150 |
+
|
6151 |
+
#: addons/buy-creds/gateways/zombaio.php:315
|
6152 |
+
msgid "Site ID"
|
6153 |
+
msgstr ""
|
6154 |
+
|
6155 |
+
#: addons/buy-creds/gateways/zombaio.php:321
|
6156 |
+
msgid "GW Password"
|
6157 |
+
msgstr ""
|
6158 |
+
|
6159 |
+
#: addons/buy-creds/gateways/zombaio.php:327
|
6160 |
+
msgid "Pricing ID"
|
6161 |
+
msgstr ""
|
6162 |
+
|
6163 |
+
#: addons/buy-creds/gateways/zombaio.php:333
|
6164 |
+
#: addons/buy-creds/gateways/skrill.php:338
|
6165 |
+
msgid "Logo URL"
|
6166 |
+
msgstr ""
|
6167 |
+
|
6168 |
+
#: addons/buy-creds/gateways/zombaio.php:339
|
6169 |
+
msgid "IP Verification"
|
6170 |
+
msgstr ""
|
6171 |
+
|
6172 |
+
#: addons/buy-creds/gateways/zombaio.php:342
|
6173 |
+
msgid "Do not verify that callbacks are coming from Zombaio."
|
6174 |
+
msgstr ""
|
6175 |
+
|
6176 |
+
#: addons/buy-creds/gateways/zombaio.php:345
|
6177 |
+
msgid "Language"
|
6178 |
+
msgstr ""
|
6179 |
+
|
6180 |
+
#: addons/buy-creds/gateways/zombaio.php:352
|
6181 |
+
msgid "Postback URL (ZScript)"
|
6182 |
+
msgstr ""
|
6183 |
+
|
6184 |
+
#: addons/buy-creds/gateways/zombaio.php:356
|
6185 |
+
msgid ""
|
6186 |
+
"For this gateway to work, login to ZOA and set the Postback URL to the above "
|
6187 |
+
"address and click validate."
|
6188 |
+
msgstr ""
|
6189 |
+
|
6190 |
+
#: addons/buy-creds/gateways/paypal-standard.php:192
|
6191 |
+
#: addons/buy-creds/gateways/skrill.php:171
|
6192 |
+
msgid "Success"
|
6193 |
+
msgstr ""
|
6194 |
+
|
6195 |
+
#: addons/buy-creds/gateways/paypal-standard.php:193
|
6196 |
+
#: addons/buy-creds/gateways/skrill.php:172
|
6197 |
+
msgid "Thank you for your purchase"
|
6198 |
+
msgstr ""
|
6199 |
+
|
6200 |
+
#: addons/buy-creds/gateways/paypal-standard.php:256
|
6201 |
+
msgctxt "Return label. %s = Website name"
|
6202 |
+
msgid "Return to %s"
|
6203 |
+
msgstr ""
|
6204 |
+
|
6205 |
+
#: addons/buy-creds/gateways/paypal-standard.php:285
|
6206 |
+
msgid "Account Email"
|
6207 |
+
msgstr ""
|
6208 |
+
|
6209 |
+
#: addons/buy-creds/gateways/skrill.php:226
|
6210 |
+
msgid "Return to "
|
6211 |
+
msgstr ""
|
6212 |
+
|
6213 |
+
#: addons/buy-creds/gateways/skrill.php:258
|
6214 |
+
msgid "Product:"
|
6215 |
+
msgstr ""
|
6216 |
+
|
6217 |
+
#: addons/buy-creds/gateways/skrill.php:267
|
6218 |
+
msgid "Gift to:"
|
6219 |
+
msgstr ""
|
6220 |
+
|
6221 |
+
#: addons/buy-creds/gateways/skrill.php:268
|
6222 |
+
msgid "(author)"
|
6223 |
+
msgstr ""
|
6224 |
+
|
6225 |
+
#: addons/buy-creds/gateways/skrill.php:301
|
6226 |
+
msgid "Merchant Account Email"
|
6227 |
+
msgstr ""
|
6228 |
+
|
6229 |
+
#: addons/buy-creds/gateways/skrill.php:307
|
6230 |
+
msgid "Secret Word"
|
6231 |
+
msgstr ""
|
6232 |
+
|
6233 |
+
#: addons/buy-creds/gateways/skrill.php:324
|
6234 |
+
msgid "Confirmation Email"
|
6235 |
+
msgstr ""
|
6236 |
+
|
6237 |
+
#: addons/buy-creds/gateways/skrill.php:327
|
6238 |
+
msgid ""
|
6239 |
+
"Ask Skrill to send me a confirmation email for each successful purchase."
|
6240 |
+
msgstr ""
|
6241 |
+
|
6242 |
+
#: addons/buy-creds/gateways/skrill.php:330
|
6243 |
+
msgid "Checkout Page"
|
6244 |
+
msgstr ""
|
6245 |
+
|
6246 |
+
#: addons/buy-creds/gateways/skrill.php:335
|
6247 |
+
msgid ""
|
6248 |
+
"If left empty, your account email is used as title on the Skill Payment Page."
|
6249 |
+
msgstr ""
|
6250 |
+
|
6251 |
+
#: addons/buy-creds/gateways/skrill.php:340
|
6252 |
+
msgid ""
|
6253 |
+
"The URL to the image you want to use on the top of the gateway. For best "
|
6254 |
+
"integration results we recommend you use logos with dimensions up to 200px "
|
6255 |
+
"in width and 50px in height."
|
6256 |
+
msgstr ""
|
6257 |
+
|
6258 |
+
#: addons/buy-creds/gateways/skrill.php:343
|
6259 |
+
msgid "Confirmation Note"
|
6260 |
+
msgstr ""
|
6261 |
+
|
6262 |
+
#: addons/buy-creds/gateways/skrill.php:345
|
6263 |
+
msgid ""
|
6264 |
+
"Optional text to show user once a transaction has been successfully "
|
6265 |
+
"completed. This text is shown by Skrill."
|
6266 |
+
msgstr ""
|
6267 |
+
|
6268 |
+
#. Description of the plugin
|
6269 |
+
msgid "An adaptive points management system for WordPress powered websites."
|
6270 |
+
msgstr ""
|
6271 |
+
|
6272 |
+
#: modules/mycred-module-network.php:61 modules/mycred-module-network.php:62
|
6273 |
+
#: addons/gateway/carts/mycred-woocommerce.php:29
|
6274 |
+
msgid "myCRED"
|
6275 |
+
msgstr "myCRED"
|
6276 |
+
|
6277 |
+
#. URI of the plugin
|
6278 |
+
msgid "http://mycred.me"
|
6279 |
+
msgstr "http://mycred.me"
|
6280 |
+
|
6281 |
+
#. Author of the plugin
|
6282 |
+
msgid "Gabriel S Merovingi"
|
6283 |
+
msgstr "Gabriel S Merovingi"
|
6284 |
+
|
6285 |
+
#. Author URI of the plugin
|
6286 |
+
msgid "http://www.merovingi.com"
|
6287 |
+
msgstr "http://www.merovingi.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/mycred-es_ES.mo
CHANGED
Binary file
|
lang/mycred-es_ES.po
CHANGED
@@ -1,7224 +1,6517 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: myCRED\n"
|
4 |
-
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: mycreddemo <gabriel.s@merovingi.com>\n"
|
8 |
-
"Language-Team:
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"Content-
|
14 |
-
"
|
15 |
-
"X-
|
16 |
-
"X-
|
17 |
-
"X-Poedit-
|
18 |
-
"
|
19 |
-
"
|
20 |
-
"
|
21 |
-
"
|
22 |
-
"
|
23 |
-
"
|
24 |
-
"
|
25 |
-
"X-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
#:
|
57 |
-
#:
|
58 |
-
#:
|
59 |
-
#: includes/classes/class.query-export.php:360
|
60 |
-
#:
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
#:
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
#:
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
"
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
#: php:
|
115 |
-
msgid "
|
116 |
-
msgstr ""
|
117 |
-
|
118 |
-
#:
|
119 |
-
|
120 |
-
msgid "
|
121 |
-
msgstr ""
|
122 |
-
|
123 |
-
#:
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
#: module-settings.php:
|
136 |
-
#:
|
137 |
-
#:
|
138 |
-
#:
|
139 |
-
#:
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
#:
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
msgstr ""
|
152 |
-
|
153 |
-
#:
|
154 |
-
msgid "
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
"
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#:
|
164 |
-
msgid "
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
"
|
219 |
-
msgstr ""
|
220 |
-
|
221 |
-
#:
|
222 |
-
msgid ""
|
223 |
-
"
|
224 |
-
"
|
225 |
-
msgstr ""
|
226 |
-
|
227 |
-
#:
|
228 |
-
msgid "
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
msgstr[
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
msgctxt "e.g. Log entries from April 12th 2016"
|
269 |
-
msgid "Log entries from %s"
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#:
|
273 |
-
msgid ""
|
274 |
-
"Warning. The required Mcrypt PHP Library is not installed on this server! "
|
275 |
-
"Certain hooks and shortcodes will not work correctly!"
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
-
#:
|
279 |
-
msgid "Original Entry"
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
#:
|
283 |
-
msgid "Delete Entry"
|
284 |
-
msgstr ""
|
285 |
-
|
286 |
-
#:
|
287 |
-
msgid "Update Entry"
|
288 |
-
msgstr ""
|
289 |
-
|
290 |
-
#:
|
291 |
-
msgid "I am sorry but your network is too big to use these features."
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#:
|
295 |
-
msgid "Make both format options available."
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#:
|
299 |
-
msgid "Exports"
|
300 |
-
msgstr ""
|
301 |
-
|
302 |
-
#:
|
303 |
-
msgid "Front End Exports"
|
304 |
-
msgstr ""
|
305 |
-
|
306 |
-
#:
|
307 |
-
msgid "Export Format"
|
308 |
-
msgstr ""
|
309 |
-
|
310 |
-
#:
|
311 |
-
msgid "File Name"
|
312 |
-
msgstr ""
|
313 |
-
|
314 |
-
#:
|
315 |
-
msgid ""
|
316 |
-
"If enabled, users will only be able to export their own log entries! Export "
|
317 |
-
"tools becomes available wherever you are using the mycred_history shortcode "
|
318 |
-
"or in the users profile."
|
319 |
-
msgstr ""
|
320 |
-
|
321 |
-
#:
|
322 |
-
msgid "Back End Exports"
|
323 |
-
msgstr ""
|
324 |
-
|
325 |
-
#:
|
326 |
-
msgid ""
|
327 |
-
"Raw format should be used when you intend to use the export tool to backup "
|
328 |
-
"or import entries in another installation. Formatted exports reflect what "
|
329 |
-
"users see in their history archive."
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#:
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
msgid "
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#:
|
382 |
-
msgid "
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#:
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
"
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
"
|
427 |
-
msgstr ""
|
428 |
-
|
429 |
-
#:
|
430 |
-
msgid "
|
431 |
-
msgstr ""
|
432 |
-
|
433 |
-
#:
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
msgid ""
|
467 |
-
"
|
468 |
-
"
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
msgstr ""
|
490 |
-
|
491 |
-
#:
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
msgid ""
|
503 |
-
"
|
504 |
-
"
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
-
#:
|
508 |
-
msgid "
|
509 |
-
msgstr ""
|
510 |
-
|
511 |
-
#:
|
512 |
-
msgid "
|
513 |
-
msgstr ""
|
514 |
-
|
515 |
-
#:
|
516 |
-
msgid "
|
517 |
-
msgstr ""
|
518 |
-
|
519 |
-
#:
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
"
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
"
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
"
|
580 |
-
msgstr ""
|
581 |
-
|
582 |
-
#:
|
583 |
-
msgid "
|
584 |
-
msgstr ""
|
585 |
-
|
586 |
-
#:
|
587 |
-
msgid ""
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
msgstr ""
|
611 |
-
|
612 |
-
#:
|
613 |
-
msgid "
|
614 |
-
msgstr ""
|
615 |
-
|
616 |
-
#:
|
617 |
-
msgid "
|
618 |
-
msgstr ""
|
619 |
-
|
620 |
-
#:
|
621 |
-
msgid ""
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
"
|
634 |
-
"
|
635 |
-
msgstr ""
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
#:
|
660 |
-
msgid "
|
661 |
-
msgstr ""
|
662 |
-
|
663 |
-
#:
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
msgstr ""
|
728 |
-
|
729 |
-
#:
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
msgid "
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
msgstr ""
|
831 |
-
|
832 |
-
#:
|
833 |
-
msgid "
|
834 |
-
msgstr ""
|
835 |
-
|
836 |
-
#:
|
837 |
-
msgid "
|
838 |
-
msgstr ""
|
839 |
-
|
840 |
-
#:
|
841 |
-
msgid "
|
842 |
-
msgstr ""
|
843 |
-
|
844 |
-
#:
|
845 |
-
msgid "
|
846 |
-
msgstr ""
|
847 |
-
|
848 |
-
#:
|
849 |
-
msgid "
|
850 |
-
msgstr ""
|
851 |
-
|
852 |
-
#:
|
853 |
-
msgid "
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
"if
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
msgstr
|
901 |
-
|
902 |
-
#:
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
msgstr ""
|
907 |
-
|
908 |
-
#:
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
"
|
943 |
-
msgstr ""
|
944 |
-
|
945 |
-
#:
|
946 |
-
msgid "
|
947 |
-
msgstr ""
|
948 |
-
|
949 |
-
#:
|
950 |
-
msgid "
|
951 |
-
msgstr ""
|
952 |
-
|
953 |
-
#:
|
954 |
-
msgid "
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
"
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
#:
|
990 |
-
#: addons/
|
991 |
-
#: addons/
|
992 |
-
#: addons/
|
993 |
-
msgid "
|
994 |
-
msgstr ""
|
995 |
-
|
996 |
-
#:
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
"
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
#:
|
1026 |
-
msgid "
|
1027 |
-
msgstr ""
|
1028 |
-
|
1029 |
-
#:
|
1030 |
-
msgid "
|
1031 |
-
msgstr ""
|
1032 |
-
|
1033 |
-
#:
|
1034 |
-
msgid "
|
1035 |
-
msgstr ""
|
1036 |
-
|
1037 |
-
#:
|
1038 |
-
msgid "
|
1039 |
-
msgstr ""
|
1040 |
-
|
1041 |
-
#:
|
1042 |
-
msgid "
|
1043 |
-
msgstr ""
|
1044 |
-
|
1045 |
-
#:
|
1046 |
-
msgid "
|
1047 |
-
msgstr ""
|
1048 |
-
|
1049 |
-
#:
|
1050 |
-
msgid "
|
1051 |
-
msgstr ""
|
1052 |
-
|
1053 |
-
#:
|
1054 |
-
msgid "
|
1055 |
-
msgstr ""
|
1056 |
-
|
1057 |
-
#:
|
1058 |
-
msgid "
|
1059 |
-
msgstr ""
|
1060 |
-
|
1061 |
-
#:
|
1062 |
-
msgid "
|
1063 |
-
msgstr ""
|
1064 |
-
|
1065 |
-
#:
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
#: addons/
|
1082 |
-
msgid "
|
1083 |
-
msgstr ""
|
1084 |
-
|
1085 |
-
#:
|
1086 |
-
msgid "
|
1087 |
-
msgstr ""
|
1088 |
-
|
1089 |
-
#:
|
1090 |
-
msgid "
|
1091 |
-
msgstr ""
|
1092 |
-
|
1093 |
-
#:
|
1094 |
-
msgid "
|
1095 |
-
msgstr ""
|
1096 |
-
|
1097 |
-
#:
|
1098 |
-
msgid "
|
1099 |
-
msgstr ""
|
1100 |
-
|
1101 |
-
#:
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
#:
|
1107 |
-
msgid "
|
1108 |
-
msgstr ""
|
1109 |
-
|
1110 |
-
#:
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
#:
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
msgid "
|
1143 |
-
msgstr ""
|
1144 |
-
|
1145 |
-
#:
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
#: addons/
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
#: addons/
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
msgid "
|
1254 |
-
msgstr ""
|
1255 |
-
|
1256 |
-
#:
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
#:
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
#:
|
1295 |
-
|
1296 |
-
"
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
"
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
#:
|
1344 |
-
msgid "
|
1345 |
-
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
msgstr ""
|
1354 |
-
|
1355 |
-
#:
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
1371 |
-
|
1372 |
-
|
1373 |
-
#:
|
1374 |
-
msgid "
|
1375 |
-
msgstr ""
|
1376 |
-
|
1377 |
-
#:
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
-
#:
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
"
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
msgstr ""
|
1432 |
-
|
1433 |
-
#:
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
-
#:
|
1465 |
-
msgid "
|
1466 |
-
msgstr ""
|
1467 |
-
|
1468 |
-
#:
|
1469 |
-
#:
|
1470 |
-
msgid "
|
1471 |
-
msgstr ""
|
1472 |
-
|
1473 |
-
#:
|
1474 |
-
msgid "
|
1475 |
-
msgstr ""
|
1476 |
-
|
1477 |
-
#:
|
1478 |
-
msgid "
|
1479 |
-
msgstr ""
|
1480 |
-
|
1481 |
-
#:
|
1482 |
-
msgid "
|
1483 |
-
msgstr ""
|
1484 |
-
|
1485 |
-
#:
|
1486 |
-
msgid "
|
1487 |
-
msgstr ""
|
1488 |
-
|
1489 |
-
#:
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
msgid "
|
1496 |
-
msgstr ""
|
1497 |
-
|
1498 |
-
#:
|
1499 |
-
msgid "
|
1500 |
-
msgstr ""
|
1501 |
-
|
1502 |
-
#:
|
1503 |
-
msgid "
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
|
1542 |
-
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
|
1547 |
-
|
1548 |
-
|
1549 |
-
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
#: addons/
|
1556 |
-
msgid "
|
1557 |
-
msgstr ""
|
1558 |
-
|
1559 |
-
#:
|
1560 |
-
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
msgid "
|
1569 |
-
msgstr ""
|
1570 |
-
|
1571 |
-
#:
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
|
1579 |
-
#: addons/
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
#: addons/
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
#: addons/
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
msgid "
|
1607 |
-
msgstr ""
|
1608 |
-
|
1609 |
-
#:
|
1610 |
-
msgid "
|
1611 |
-
msgstr ""
|
1612 |
-
|
1613 |
-
#:
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
msgid "
|
1634 |
-
msgstr ""
|
1635 |
-
|
1636 |
-
#:
|
1637 |
-
|
1638 |
-
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
1644 |
-
|
1645 |
-
msgid "
|
1646 |
-
msgstr ""
|
1647 |
-
|
1648 |
-
#:
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
#: addons/
|
1657 |
-
|
1658 |
-
|
1659 |
-
|
1660 |
-
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
|
1675 |
-
#:
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
|
1680 |
-
#:
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
|
1687 |
-
|
1688 |
-
|
1689 |
-
|
1690 |
-
|
1691 |
-
#: addons/
|
1692 |
-
msgid "
|
1693 |
-
msgstr ""
|
1694 |
-
|
1695 |
-
#:
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
#:
|
1701 |
-
msgid "
|
1702 |
-
msgstr ""
|
1703 |
-
|
1704 |
-
#:
|
1705 |
-
#:
|
1706 |
-
msgid "
|
1707 |
-
msgstr ""
|
1708 |
-
|
1709 |
-
#:
|
1710 |
-
|
1711 |
-
|
1712 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
1717 |
-
|
1718 |
-
|
1719 |
-
|
1720 |
-
|
1721 |
-
|
1722 |
-
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
#:
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
#:
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
-
|
1740 |
-
|
1741 |
-
|
1742 |
-
|
1743 |
-
#:
|
1744 |
-
|
1745 |
-
|
1746 |
-
|
1747 |
-
#:
|
1748 |
-
|
1749 |
-
|
1750 |
-
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
|
1760 |
-
|
1761 |
-
|
1762 |
-
|
1763 |
-
|
1764 |
-
|
1765 |
-
|
1766 |
-
|
1767 |
-
|
1768 |
-
#:
|
1769 |
-
|
1770 |
-
|
1771 |
-
|
1772 |
-
|
1773 |
-
|
1774 |
-
msgstr
|
1775 |
-
|
1776 |
-
#:
|
1777 |
-
msgid "
|
1778 |
-
msgstr ""
|
1779 |
-
|
1780 |
-
#:
|
1781 |
-
msgid "
|
1782 |
-
msgstr ""
|
1783 |
-
|
1784 |
-
#:
|
1785 |
-
msgid "
|
1786 |
-
msgstr ""
|
1787 |
-
|
1788 |
-
#:
|
1789 |
-
|
1790 |
-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
1798 |
-
|
1799 |
-
|
1800 |
-
|
1801 |
-
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
-
msgid "
|
1806 |
-
msgstr ""
|
1807 |
-
|
1808 |
-
#:
|
1809 |
-
|
1810 |
-
msgid "
|
1811 |
-
msgstr ""
|
1812 |
-
|
1813 |
-
#:
|
1814 |
-
|
1815 |
-
|
1816 |
-
|
1817 |
-
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
msgid "
|
1826 |
-
msgstr ""
|
1827 |
-
|
1828 |
-
#:
|
1829 |
-
|
1830 |
-
|
1831 |
-
|
1832 |
-
|
1833 |
-
|
1834 |
-
|
1835 |
-
|
1836 |
-
|
1837 |
-
|
1838 |
-
|
1839 |
-
|
1840 |
-
#:
|
1841 |
-
|
1842 |
-
|
1843 |
-
|
1844 |
-
|
1845 |
-
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
|
1851 |
-
|
1852 |
-
|
1853 |
-
|
1854 |
-
|
1855 |
-
|
1856 |
-
|
1857 |
-
|
1858 |
-
|
1859 |
-
|
1860 |
-
|
1861 |
-
|
1862 |
-
|
1863 |
-
|
1864 |
-
|
1865 |
-
|
1866 |
-
|
1867 |
-
"
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
|
1872 |
-
"
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
|
1877 |
-
|
1878 |
-
|
1879 |
-
|
1880 |
-
|
1881 |
-
|
1882 |
-
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
|
1888 |
-
msgid "
|
1889 |
-
msgstr ""
|
1890 |
-
|
1891 |
-
#:
|
1892 |
-
|
1893 |
-
|
1894 |
-
|
1895 |
-
|
1896 |
-
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
msgid "
|
1901 |
-
msgstr ""
|
1902 |
-
|
1903 |
-
#:
|
1904 |
-
|
1905 |
-
|
1906 |
-
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
|
1911 |
-
|
1912 |
-
|
1913 |
-
|
1914 |
-
|
1915 |
-
#:
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
|
1920 |
-
|
1921 |
-
|
1922 |
-
|
1923 |
-
|
1924 |
-
|
1925 |
-
|
1926 |
-
|
1927 |
-
|
1928 |
-
|
1929 |
-
|
1930 |
-
|
1931 |
-
|
1932 |
-
|
1933 |
-
|
1934 |
-
|
1935 |
-
|
1936 |
-
#:
|
1937 |
-
|
1938 |
-
|
1939 |
-
|
1940 |
-
|
1941 |
-
|
1942 |
-
|
1943 |
-
|
1944 |
-
|
1945 |
-
msgid "
|
1946 |
-
msgstr ""
|
1947 |
-
|
1948 |
-
#:
|
1949 |
-
|
1950 |
-
|
1951 |
-
|
1952 |
-
|
1953 |
-
|
1954 |
-
|
1955 |
-
|
1956 |
-
|
1957 |
-
msgid "
|
1958 |
-
msgstr ""
|
1959 |
-
|
1960 |
-
#:
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
|
1966 |
-
|
1967 |
-
|
1968 |
-
|
1969 |
-
|
1970 |
-
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
|
1975 |
-
|
1976 |
-
|
1977 |
-
|
1978 |
-
|
1979 |
-
|
1980 |
-
|
1981 |
-
msgid "
|
1982 |
-
msgstr ""
|
1983 |
-
|
1984 |
-
#:
|
1985 |
-
msgid "
|
1986 |
-
msgstr ""
|
1987 |
-
|
1988 |
-
#:
|
1989 |
-
msgid "
|
1990 |
-
msgstr ""
|
1991 |
-
|
1992 |
-
#:
|
1993 |
-
msgid "
|
1994 |
-
msgstr ""
|
1995 |
-
|
1996 |
-
#:
|
1997 |
-
msgid "
|
1998 |
-
msgstr ""
|
1999 |
-
|
2000 |
-
#:
|
2001 |
-
msgid "
|
2002 |
-
msgstr ""
|
2003 |
-
|
2004 |
-
#:
|
2005 |
-
msgid "
|
2006 |
-
msgstr ""
|
2007 |
-
|
2008 |
-
#:
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
|
2015 |
-
|
2016 |
-
|
2017 |
-
|
2018 |
-
|
2019 |
-
|
2020 |
-
|
2021 |
-
#:
|
2022 |
-
msgid "
|
2023 |
-
msgstr ""
|
2024 |
-
|
2025 |
-
#:
|
2026 |
-
msgid "
|
2027 |
-
msgstr ""
|
2028 |
-
|
2029 |
-
#:
|
2030 |
-
msgid "
|
2031 |
-
msgstr ""
|
2032 |
-
|
2033 |
-
#:
|
2034 |
-
msgid "
|
2035 |
-
msgstr ""
|
2036 |
-
|
2037 |
-
#:
|
2038 |
-
msgid "
|
2039 |
-
msgstr ""
|
2040 |
-
|
2041 |
-
#:
|
2042 |
-
msgid "
|
2043 |
-
msgstr ""
|
2044 |
-
|
2045 |
-
#:
|
2046 |
-
|
2047 |
-
|
2048 |
-
|
2049 |
-
#:
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
2053 |
-
|
2054 |
-
|
2055 |
-
|
2056 |
-
|
2057 |
-
|
2058 |
-
|
2059 |
-
#:
|
2060 |
-
msgid "
|
2061 |
-
msgstr ""
|
2062 |
-
|
2063 |
-
#:
|
2064 |
-
msgid "
|
2065 |
-
msgstr ""
|
2066 |
-
|
2067 |
-
#:
|
2068 |
-
msgid "
|
2069 |
-
msgstr ""
|
2070 |
-
|
2071 |
-
#:
|
2072 |
-
msgid "
|
2073 |
-
msgstr ""
|
2074 |
-
|
2075 |
-
#:
|
2076 |
-
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
2080 |
-
|
2081 |
-
|
2082 |
-
|
2083 |
-
#:
|
2084 |
-
|
2085 |
-
|
2086 |
-
|
2087 |
-
|
2088 |
-
|
2089 |
-
#:
|
2090 |
-
|
2091 |
-
|
2092 |
-
|
2093 |
-
|
2094 |
-
|
2095 |
-
#: php:
|
2096 |
-
|
2097 |
-
|
2098 |
-
|
2099 |
-
#:
|
2100 |
-
msgid "
|
2101 |
-
msgstr "
|
2102 |
-
|
2103 |
-
#:
|
2104 |
-
msgid "
|
2105 |
-
|
2106 |
-
|
2107 |
-
|
2108 |
-
|
2109 |
-
|
2110 |
-
|
2111 |
-
#:
|
2112 |
-
|
2113 |
-
|
2114 |
-
|
2115 |
-
#:
|
2116 |
-
#:
|
2117 |
-
|
2118 |
-
|
2119 |
-
|
2120 |
-
|
2121 |
-
|
2122 |
-
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
#: php:
|
2129 |
-
msgid "
|
2130 |
-
msgstr "
|
2131 |
-
|
2132 |
-
#:
|
2133 |
-
#: php:
|
2134 |
-
|
2135 |
-
|
2136 |
-
|
2137 |
-
#:
|
2138 |
-
#:
|
2139 |
-
#: addons/
|
2140 |
-
#: creds/modules/buycred-module-core.php:
|
2141 |
-
|
2142 |
-
|
2143 |
-
|
2144 |
-
|
2145 |
-
|
2146 |
-
|
2147 |
-
|
2148 |
-
|
2149 |
-
|
2150 |
-
|
2151 |
-
|
2152 |
-
|
2153 |
-
|
2154 |
-
|
2155 |
-
|
2156 |
-
#:
|
2157 |
-
msgid "
|
2158 |
-
msgstr "
|
2159 |
-
|
2160 |
-
#:
|
2161 |
-
#:
|
2162 |
-
#:
|
2163 |
-
#:
|
2164 |
-
#:
|
2165 |
-
|
2166 |
-
|
2167 |
-
|
2168 |
-
|
2169 |
-
|
2170 |
-
|
2171 |
-
|
2172 |
-
#:
|
2173 |
-
msgid "
|
2174 |
-
msgstr "
|
2175 |
-
|
2176 |
-
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
2180 |
-
#:
|
2181 |
-
msgid "
|
2182 |
-
msgstr "
|
2183 |
-
|
2184 |
-
#:
|
2185 |
-
|
2186 |
-
|
2187 |
-
|
2188 |
-
#:
|
2189 |
-
#:
|
2190 |
-
#:
|
2191 |
-
#:
|
2192 |
-
|
2193 |
-
|
2194 |
-
|
2195 |
-
|
2196 |
-
#:
|
2197 |
-
#: addons/
|
2198 |
-
#: addons/
|
2199 |
-
#:
|
2200 |
-
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
#:
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
#:
|
2209 |
-
#:
|
2210 |
-
msgid "
|
2211 |
-
msgstr "
|
2212 |
-
|
2213 |
-
#:
|
2214 |
-
|
2215 |
-
|
2216 |
-
|
2217 |
-
|
2218 |
-
|
2219 |
-
#:
|
2220 |
-
msgid "
|
2221 |
-
msgstr "
|
2222 |
-
|
2223 |
-
#:
|
2224 |
-
#: management.php:
|
2225 |
-
#:
|
2226 |
-
|
2227 |
-
|
2228 |
-
|
2229 |
-
|
2230 |
-
#:
|
2231 |
-
|
2232 |
-
|
2233 |
-
|
2234 |
-
|
2235 |
-
#:
|
2236 |
-
|
2237 |
-
|
2238 |
-
|
2239 |
-
|
2240 |
-
|
2241 |
-
#:
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
#:
|
2246 |
-
#: addons/
|
2247 |
-
#: creds/
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
|
2257 |
-
|
2258 |
-
#:
|
2259 |
-
#:
|
2260 |
-
msgid "
|
2261 |
-
msgstr "
|
2262 |
-
|
2263 |
-
#:
|
2264 |
-
|
2265 |
-
|
2266 |
-
|
2267 |
-
#:
|
2268 |
-
#:
|
2269 |
-
#:
|
2270 |
-
#: addons/
|
2271 |
-
#: creds/
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
-
|
2281 |
-
|
2282 |
-
|
2283 |
-
#:
|
2284 |
-
msgid ""
|
2285 |
-
"
|
2286 |
-
|
2287 |
-
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
#:
|
2292 |
-
msgid ""
|
2293 |
-
|
2294 |
-
|
2295 |
-
|
2296 |
-
"
|
2297 |
-
"
|
2298 |
-
|
2299 |
-
#:
|
2300 |
-
msgid "
|
2301 |
-
msgstr ""
|
2302 |
-
|
2303 |
-
|
2304 |
-
|
2305 |
-
|
2306 |
-
|
2307 |
-
msgstr "
|
2308 |
-
|
2309 |
-
|
2310 |
-
|
2311 |
-
|
2312 |
-
|
2313 |
-
|
2314 |
-
|
2315 |
-
|
2316 |
-
|
2317 |
-
|
2318 |
-
|
2319 |
-
#:
|
2320 |
-
msgid "
|
2321 |
-
msgstr "
|
2322 |
-
|
2323 |
-
|
2324 |
-
|
2325 |
-
#:
|
2326 |
-
|
2327 |
-
|
2328 |
-
|
2329 |
-
|
2330 |
-
|
2331 |
-
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
|
2342 |
-
#:
|
2343 |
-
|
2344 |
-
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
2348 |
-
|
2349 |
-
|
2350 |
-
|
2351 |
-
|
2352 |
-
|
2353 |
-
|
2354 |
-
|
2355 |
-
|
2356 |
-
|
2357 |
-
|
2358 |
-
|
2359 |
-
|
2360 |
-
|
2361 |
-
|
2362 |
-
|
2363 |
-
|
2364 |
-
|
2365 |
-
|
2366 |
-
|
2367 |
-
|
2368 |
-
|
2369 |
-
|
2370 |
-
|
2371 |
-
|
2372 |
-
#:
|
2373 |
-
|
2374 |
-
|
2375 |
-
|
2376 |
-
|
2377 |
-
|
2378 |
-
|
2379 |
-
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
|
2385 |
-
|
2386 |
-
|
2387 |
-
|
2388 |
-
|
2389 |
-
|
2390 |
-
#:
|
2391 |
-
#: addons/
|
2392 |
-
#: addons/
|
2393 |
-
|
2394 |
-
|
2395 |
-
|
2396 |
-
|
2397 |
-
|
2398 |
-
|
2399 |
-
|
2400 |
-
|
2401 |
-
|
2402 |
-
|
2403 |
-
|
2404 |
-
|
2405 |
-
|
2406 |
-
#:
|
2407 |
-
msgid "
|
2408 |
-
msgstr "
|
2409 |
-
|
2410 |
-
#:
|
2411 |
-
#:
|
2412 |
-
#:
|
2413 |
-
#:
|
2414 |
-
#: addons/
|
2415 |
-
msgid "
|
2416 |
-
msgstr "
|
2417 |
-
|
2418 |
-
#:
|
2419 |
-
|
2420 |
-
|
2421 |
-
|
2422 |
-
|
2423 |
-
|
2424 |
-
#: module-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
#:
|
2429 |
-
msgid "
|
2430 |
-
msgstr "
|
2431 |
-
|
2432 |
-
#:
|
2433 |
-
|
2434 |
-
|
2435 |
-
|
2436 |
-
#:
|
2437 |
-
|
2438 |
-
|
2439 |
-
|
2440 |
-
|
2441 |
-
|
2442 |
-
|
2443 |
-
|
2444 |
-
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
|
2449 |
-
"
|
2450 |
-
|
2451 |
-
|
2452 |
-
|
2453 |
-
|
2454 |
-
|
2455 |
-
|
2456 |
-
|
2457 |
-
|
2458 |
-
|
2459 |
-
|
2460 |
-
"
|
2461 |
-
msgstr ""
|
2462 |
-
|
2463 |
-
|
2464 |
-
|
2465 |
-
|
2466 |
-
|
2467 |
-
#: php:
|
2468 |
-
msgid "
|
2469 |
-
|
2470 |
-
|
2471 |
-
|
2472 |
-
|
2473 |
-
|
2474 |
-
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
|
2479 |
-
|
2480 |
-
|
2481 |
-
|
2482 |
-
|
2483 |
-
|
2484 |
-
"de
|
2485 |
-
|
2486 |
-
|
2487 |
-
|
2488 |
-
|
2489 |
-
|
2490 |
-
|
2491 |
-
|
2492 |
-
|
2493 |
-
|
2494 |
-
|
2495 |
-
|
2496 |
-
|
2497 |
-
#:
|
2498 |
-
msgid ""
|
2499 |
-
|
2500 |
-
"
|
2501 |
-
|
2502 |
-
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
|
2507 |
-
|
2508 |
-
|
2509 |
-
|
2510 |
-
|
2511 |
-
|
2512 |
-
|
2513 |
-
"
|
2514 |
-
|
2515 |
-
"
|
2516 |
-
|
2517 |
-
"
|
2518 |
-
"
|
2519 |
-
|
2520 |
-
|
2521 |
-
|
2522 |
-
|
2523 |
-
|
2524 |
-
msgstr "
|
2525 |
-
|
2526 |
-
|
2527 |
-
|
2528 |
-
|
2529 |
-
"
|
2530 |
-
msgstr ""
|
2531 |
-
"
|
2532 |
-
"
|
2533 |
-
|
2534 |
-
#:
|
2535 |
-
msgid ""
|
2536 |
-
"
|
2537 |
-
"
|
2538 |
-
"
|
2539 |
-
msgstr ""
|
2540 |
-
"
|
2541 |
-
"
|
2542 |
-
"
|
2543 |
-
"
|
2544 |
-
|
2545 |
-
#:
|
2546 |
-
msgid ""
|
2547 |
-
|
2548 |
-
"
|
2549 |
-
|
2550 |
-
|
2551 |
-
|
2552 |
-
"
|
2553 |
-
|
2554 |
-
|
2555 |
-
|
2556 |
-
|
2557 |
-
|
2558 |
-
|
2559 |
-
|
2560 |
-
|
2561 |
-
|
2562 |
-
|
2563 |
-
|
2564 |
-
|
2565 |
-
|
2566 |
-
|
2567 |
-
|
2568 |
-
|
2569 |
-
|
2570 |
-
|
2571 |
-
|
2572 |
-
|
2573 |
-
msgstr "
|
2574 |
-
|
2575 |
-
|
2576 |
-
|
2577 |
-
|
2578 |
-
|
2579 |
-
|
2580 |
-
|
2581 |
-
|
2582 |
-
|
2583 |
-
|
2584 |
-
|
2585 |
-
|
2586 |
-
|
2587 |
-
|
2588 |
-
|
2589 |
-
|
2590 |
-
#:
|
2591 |
-
|
2592 |
-
|
2593 |
-
|
2594 |
-
|
2595 |
-
|
2596 |
-
|
2597 |
-
|
2598 |
-
|
2599 |
-
|
2600 |
-
|
2601 |
-
|
2602 |
-
|
2603 |
-
|
2604 |
-
|
2605 |
-
|
2606 |
-
|
2607 |
-
|
2608 |
-
|
2609 |
-
|
2610 |
-
|
2611 |
-
|
2612 |
-
|
2613 |
-
|
2614 |
-
#:
|
2615 |
-
|
2616 |
-
|
2617 |
-
|
2618 |
-
#:
|
2619 |
-
|
2620 |
-
|
2621 |
-
|
2622 |
-
|
2623 |
-
|
2624 |
-
|
2625 |
-
|
2626 |
-
|
2627 |
-
|
2628 |
-
|
2629 |
-
|
2630 |
-
#:
|
2631 |
-
msgid "
|
2632 |
-
msgstr "
|
2633 |
-
|
2634 |
-
#:
|
2635 |
-
msgid "
|
2636 |
-
msgstr "
|
2637 |
-
|
2638 |
-
|
2639 |
-
|
2640 |
-
|
2641 |
-
|
2642 |
-
|
2643 |
-
|
2644 |
-
|
2645 |
-
msgid "
|
2646 |
-
msgstr "
|
2647 |
-
|
2648 |
-
#:
|
2649 |
-
|
2650 |
-
|
2651 |
-
|
2652 |
-
|
2653 |
-
#:
|
2654 |
-
msgid "
|
2655 |
-
msgstr "
|
2656 |
-
|
2657 |
-
#:
|
2658 |
-
|
2659 |
-
|
2660 |
-
|
2661 |
-
|
2662 |
-
|
2663 |
-
|
2664 |
-
|
2665 |
-
|
2666 |
-
|
2667 |
-
|
2668 |
-
|
2669 |
-
|
2670 |
-
"
|
2671 |
-
"
|
2672 |
-
|
2673 |
-
|
2674 |
-
"
|
2675 |
-
|
2676 |
-
|
2677 |
-
|
2678 |
-
|
2679 |
-
|
2680 |
-
|
2681 |
-
|
2682 |
-
|
2683 |
-
|
2684 |
-
|
2685 |
-
|
2686 |
-
|
2687 |
-
#:
|
2688 |
-
msgid "
|
2689 |
-
|
2690 |
-
|
2691 |
-
|
2692 |
-
|
2693 |
-
|
2694 |
-
|
2695 |
-
|
2696 |
-
|
2697 |
-
|
2698 |
-
|
2699 |
-
|
2700 |
-
|
2701 |
-
|
2702 |
-
|
2703 |
-
"
|
2704 |
-
|
2705 |
-
|
2706 |
-
"
|
2707 |
-
"
|
2708 |
-
|
2709 |
-
|
2710 |
-
|
2711 |
-
|
2712 |
-
|
2713 |
-
|
2714 |
-
|
2715 |
-
|
2716 |
-
|
2717 |
-
|
2718 |
-
|
2719 |
-
|
2720 |
-
|
2721 |
-
|
2722 |
-
|
2723 |
-
|
2724 |
-
|
2725 |
-
|
2726 |
-
|
2727 |
-
#:
|
2728 |
-
#: addons/
|
2729 |
-
#: addons/
|
2730 |
-
#:
|
2731 |
-
|
2732 |
-
|
2733 |
-
|
2734 |
-
#:
|
2735 |
-
#:
|
2736 |
-
msgid "
|
2737 |
-
msgstr "
|
2738 |
-
|
2739 |
-
#:
|
2740 |
-
#:
|
2741 |
-
#:
|
2742 |
-
|
2743 |
-
|
2744 |
-
|
2745 |
-
#:
|
2746 |
-
|
2747 |
-
|
2748 |
-
|
2749 |
-
|
2750 |
-
#:
|
2751 |
-
|
2752 |
-
|
2753 |
-
|
2754 |
-
|
2755 |
-
#:
|
2756 |
-
|
2757 |
-
msgid "
|
2758 |
-
msgstr "
|
2759 |
-
|
2760 |
-
#:
|
2761 |
-
|
2762 |
-
|
2763 |
-
|
2764 |
-
|
2765 |
-
|
2766 |
-
|
2767 |
-
|
2768 |
-
|
2769 |
-
|
2770 |
-
|
2771 |
-
|
2772 |
-
|
2773 |
-
|
2774 |
-
|
2775 |
-
|
2776 |
-
|
2777 |
-
|
2778 |
-
|
2779 |
-
|
2780 |
-
#:
|
2781 |
-
|
2782 |
-
msgid "
|
2783 |
-
msgstr "
|
2784 |
-
|
2785 |
-
#:
|
2786 |
-
|
2787 |
-
msgid "
|
2788 |
-
msgstr "
|
2789 |
-
|
2790 |
-
#:
|
2791 |
-
|
2792 |
-
|
2793 |
-
|
2794 |
-
|
2795 |
-
|
2796 |
-
|
2797 |
-
|
2798 |
-
|
2799 |
-
|
2800 |
-
#:
|
2801 |
-
|
2802 |
-
|
2803 |
-
|
2804 |
-
|
2805 |
-
|
2806 |
-
|
2807 |
-
|
2808 |
-
|
2809 |
-
|
2810 |
-
#:
|
2811 |
-
#:
|
2812 |
-
|
2813 |
-
|
2814 |
-
|
2815 |
-
|
2816 |
-
#:
|
2817 |
-
|
2818 |
-
|
2819 |
-
|
2820 |
-
#:
|
2821 |
-
#:
|
2822 |
-
#:
|
2823 |
-
|
2824 |
-
|
2825 |
-
|
2826 |
-
#:
|
2827 |
-
#:
|
2828 |
-
|
2829 |
-
|
2830 |
-
|
2831 |
-
#:
|
2832 |
-
#:
|
2833 |
-
#:
|
2834 |
-
|
2835 |
-
|
2836 |
-
|
2837 |
-
#:
|
2838 |
-
|
2839 |
-
|
2840 |
-
|
2841 |
-
#:
|
2842 |
-
|
2843 |
-
|
2844 |
-
|
2845 |
-
#:
|
2846 |
-
#:
|
2847 |
-
#:
|
2848 |
-
#:
|
2849 |
-
|
2850 |
-
|
2851 |
-
|
2852 |
-
#:
|
2853 |
-
|
2854 |
-
|
2855 |
-
|
2856 |
-
#:
|
2857 |
-
|
2858 |
-
|
2859 |
-
|
2860 |
-
|
2861 |
-
|
2862 |
-
|
2863 |
-
|
2864 |
-
|
2865 |
-
msgid "
|
2866 |
-
msgstr "
|
2867 |
-
|
2868 |
-
#:
|
2869 |
-
|
2870 |
-
|
2871 |
-
|
2872 |
-
|
2873 |
-
|
2874 |
-
|
2875 |
-
|
2876 |
-
#:
|
2877 |
-
|
2878 |
-
|
2879 |
-
|
2880 |
-
#: modules/mycred-module-
|
2881 |
-
|
2882 |
-
|
2883 |
-
|
2884 |
-
#:
|
2885 |
-
|
2886 |
-
|
2887 |
-
|
2888 |
-
#:
|
2889 |
-
|
2890 |
-
|
2891 |
-
|
2892 |
-
|
2893 |
-
#:
|
2894 |
-
|
2895 |
-
|
2896 |
-
|
2897 |
-
#: plugins/mycred-hook-
|
2898 |
-
|
2899 |
-
|
2900 |
-
|
2901 |
-
|
2902 |
-
|
2903 |
-
|
2904 |
-
|
2905 |
-
#:
|
2906 |
-
|
2907 |
-
|
2908 |
-
|
2909 |
-
#:
|
2910 |
-
#:
|
2911 |
-
#:
|
2912 |
-
#:
|
2913 |
-
#:
|
2914 |
-
|
2915 |
-
|
2916 |
-
|
2917 |
-
#:
|
2918 |
-
#:
|
2919 |
-
#:
|
2920 |
-
#:
|
2921 |
-
#:
|
2922 |
-
|
2923 |
-
|
2924 |
-
|
2925 |
-
#:
|
2926 |
-
|
2927 |
-
|
2928 |
-
|
2929 |
-
|
2930 |
-
#:
|
2931 |
-
|
2932 |
-
|
2933 |
-
|
2934 |
-
|
2935 |
-
|
2936 |
-
#:
|
2937 |
-
#:
|
2938 |
-
#:
|
2939 |
-
#:
|
2940 |
-
#: plugins/mycred-hook-
|
2941 |
-
#:
|
2942 |
-
#: plugins/mycred-hook-
|
2943 |
-
#:
|
2944 |
-
#: plugins/mycred-hook-
|
2945 |
-
#: plugins/mycred-hook-
|
2946 |
-
#:
|
2947 |
-
#:
|
2948 |
-
#:
|
2949 |
-
#:
|
2950 |
-
#:
|
2951 |
-
#:
|
2952 |
-
#:
|
2953 |
-
#:
|
2954 |
-
|
2955 |
-
|
2956 |
-
|
2957 |
-
|
2958 |
-
|
2959 |
-
|
2960 |
-
|
2961 |
-
|
2962 |
-
#:
|
2963 |
-
|
2964 |
-
|
2965 |
-
|
2966 |
-
|
2967 |
-
#:
|
2968 |
-
|
2969 |
-
|
2970 |
-
|
2971 |
-
|
2972 |
-
#:
|
2973 |
-
|
2974 |
-
|
2975 |
-
|
2976 |
-
|
2977 |
-
|
2978 |
-
|
2979 |
-
|
2980 |
-
|
2981 |
-
#:
|
2982 |
-
#: php:
|
2983 |
-
|
2984 |
-
|
2985 |
-
|
2986 |
-
#:
|
2987 |
-
#:
|
2988 |
-
|
2989 |
-
|
2990 |
-
|
2991 |
-
#:
|
2992 |
-
|
2993 |
-
|
2994 |
-
|
2995 |
-
#:
|
2996 |
-
|
2997 |
-
|
2998 |
-
|
2999 |
-
#:
|
3000 |
-
|
3001 |
-
|
3002 |
-
|
3003 |
-
#:
|
3004 |
-
msgid "
|
3005 |
-
msgstr "
|
3006 |
-
|
3007 |
-
#:
|
3008 |
-
msgid "
|
3009 |
-
msgstr "
|
3010 |
-
|
3011 |
-
|
3012 |
-
|
3013 |
-
|
3014 |
-
|
3015 |
-
|
3016 |
-
|
3017 |
-
|
3018 |
-
"
|
3019 |
-
|
3020 |
-
|
3021 |
-
|
3022 |
-
|
3023 |
-
|
3024 |
-
#:
|
3025 |
-
|
3026 |
-
|
3027 |
-
|
3028 |
-
|
3029 |
-
|
3030 |
-
#:
|
3031 |
-
|
3032 |
-
|
3033 |
-
|
3034 |
-
|
3035 |
-
|
3036 |
-
|
3037 |
-
|
3038 |
-
|
3039 |
-
|
3040 |
-
|
3041 |
-
|
3042 |
-
|
3043 |
-
|
3044 |
-
|
3045 |
-
|
3046 |
-
|
3047 |
-
|
3048 |
-
|
3049 |
-
|
3050 |
-
|
3051 |
-
|
3052 |
-
"
|
3053 |
-
"
|
3054 |
-
|
3055 |
-
#:
|
3056 |
-
|
3057 |
-
|
3058 |
-
|
3059 |
-
|
3060 |
-
|
3061 |
-
|
3062 |
-
|
3063 |
-
|
3064 |
-
|
3065 |
-
|
3066 |
-
|
3067 |
-
|
3068 |
-
|
3069 |
-
|
3070 |
-
|
3071 |
-
|
3072 |
-
|
3073 |
-
|
3074 |
-
|
3075 |
-
|
3076 |
-
|
3077 |
-
|
3078 |
-
|
3079 |
-
|
3080 |
-
|
3081 |
-
|
3082 |
-
|
3083 |
-
|
3084 |
-
|
3085 |
-
|
3086 |
-
|
3087 |
-
|
3088 |
-
|
3089 |
-
|
3090 |
-
|
3091 |
-
|
3092 |
-
|
3093 |
-
|
3094 |
-
|
3095 |
-
msgstr "
|
3096 |
-
|
3097 |
-
|
3098 |
-
|
3099 |
-
|
3100 |
-
|
3101 |
-
#:
|
3102 |
-
|
3103 |
-
|
3104 |
-
"
|
3105 |
-
msgstr ""
|
3106 |
-
|
3107 |
-
|
3108 |
-
|
3109 |
-
|
3110 |
-
|
3111 |
-
|
3112 |
-
|
3113 |
-
|
3114 |
-
|
3115 |
-
"
|
3116 |
-
|
3117 |
-
|
3118 |
-
|
3119 |
-
|
3120 |
-
|
3121 |
-
|
3122 |
-
|
3123 |
-
|
3124 |
-
|
3125 |
-
|
3126 |
-
|
3127 |
-
|
3128 |
-
|
3129 |
-
|
3130 |
-
|
3131 |
-
|
3132 |
-
|
3133 |
-
|
3134 |
-
|
3135 |
-
|
3136 |
-
|
3137 |
-
|
3138 |
-
|
3139 |
-
|
3140 |
-
|
3141 |
-
|
3142 |
-
|
3143 |
-
|
3144 |
-
|
3145 |
-
|
3146 |
-
|
3147 |
-
|
3148 |
-
|
3149 |
-
|
3150 |
-
|
3151 |
-
|
3152 |
-
|
3153 |
-
|
3154 |
-
|
3155 |
-
|
3156 |
-
|
3157 |
-
|
3158 |
-
|
3159 |
-
|
3160 |
-
|
3161 |
-
|
3162 |
-
|
3163 |
-
|
3164 |
-
|
3165 |
-
|
3166 |
-
|
3167 |
-
|
3168 |
-
|
3169 |
-
|
3170 |
-
msgstr "
|
3171 |
-
|
3172 |
-
|
3173 |
-
|
3174 |
-
|
3175 |
-
|
3176 |
-
|
3177 |
-
|
3178 |
-
|
3179 |
-
"
|
3180 |
-
"
|
3181 |
-
|
3182 |
-
#:
|
3183 |
-
msgid "
|
3184 |
-
msgstr "
|
3185 |
-
|
3186 |
-
#:
|
3187 |
-
msgid "
|
3188 |
-
msgstr "
|
3189 |
-
|
3190 |
-
#:
|
3191 |
-
msgid ""
|
3192 |
-
"
|
3193 |
-
|
3194 |
-
|
3195 |
-
"
|
3196 |
-
"
|
3197 |
-
|
3198 |
-
|
3199 |
-
|
3200 |
-
|
3201 |
-
|
3202 |
-
#:
|
3203 |
-
|
3204 |
-
|
3205 |
-
|
3206 |
-
|
3207 |
-
|
3208 |
-
|
3209 |
-
|
3210 |
-
|
3211 |
-
|
3212 |
-
|
3213 |
-
|
3214 |
-
|
3215 |
-
|
3216 |
-
|
3217 |
-
|
3218 |
-
|
3219 |
-
|
3220 |
-
|
3221 |
-
|
3222 |
-
|
3223 |
-
|
3224 |
-
|
3225 |
-
|
3226 |
-
|
3227 |
-
|
3228 |
-
"
|
3229 |
-
msgstr ""
|
3230 |
-
|
3231 |
-
|
3232 |
-
|
3233 |
-
|
3234 |
-
|
3235 |
-
|
3236 |
-
|
3237 |
-
#:
|
3238 |
-
msgid "
|
3239 |
-
msgstr ""
|
3240 |
-
|
3241 |
-
|
3242 |
-
|
3243 |
-
|
3244 |
-
|
3245 |
-
|
3246 |
-
|
3247 |
-
|
3248 |
-
|
3249 |
-
|
3250 |
-
|
3251 |
-
|
3252 |
-
#:
|
3253 |
-
|
3254 |
-
|
3255 |
-
|
3256 |
-
|
3257 |
-
|
3258 |
-
|
3259 |
-
|
3260 |
-
|
3261 |
-
|
3262 |
-
|
3263 |
-
|
3264 |
-
|
3265 |
-
|
3266 |
-
|
3267 |
-
|
3268 |
-
#:
|
3269 |
-
msgid "
|
3270 |
-
msgstr "
|
3271 |
-
|
3272 |
-
#:
|
3273 |
-
|
3274 |
-
|
3275 |
-
|
3276 |
-
|
3277 |
-
|
3278 |
-
|
3279 |
-
|
3280 |
-
|
3281 |
-
|
3282 |
-
|
3283 |
-
|
3284 |
-
#:
|
3285 |
-
|
3286 |
-
|
3287 |
-
|
3288 |
-
|
3289 |
-
|
3290 |
-
|
3291 |
-
|
3292 |
-
|
3293 |
-
|
3294 |
-
|
3295 |
-
|
3296 |
-
|
3297 |
-
|
3298 |
-
|
3299 |
-
|
3300 |
-
|
3301 |
-
|
3302 |
-
|
3303 |
-
|
3304 |
-
|
3305 |
-
|
3306 |
-
|
3307 |
-
|
3308 |
-
|
3309 |
-
|
3310 |
-
#:
|
3311 |
-
msgid "
|
3312 |
-
msgstr "
|
3313 |
-
|
3314 |
-
#:
|
3315 |
-
|
3316 |
-
|
3317 |
-
|
3318 |
-
|
3319 |
-
|
3320 |
-
|
3321 |
-
|
3322 |
-
|
3323 |
-
|
3324 |
-
|
3325 |
-
|
3326 |
-
|
3327 |
-
|
3328 |
-
|
3329 |
-
|
3330 |
-
#:
|
3331 |
-
msgid "
|
3332 |
-
msgstr "
|
3333 |
-
|
3334 |
-
#:
|
3335 |
-
|
3336 |
-
|
3337 |
-
|
3338 |
-
|
3339 |
-
|
3340 |
-
|
3341 |
-
|
3342 |
-
|
3343 |
-
|
3344 |
-
|
3345 |
-
|
3346 |
-
|
3347 |
-
#:
|
3348 |
-
msgid "
|
3349 |
-
msgstr "
|
3350 |
-
|
3351 |
-
#:
|
3352 |
-
|
3353 |
-
|
3354 |
-
|
3355 |
-
|
3356 |
-
|
3357 |
-
|
3358 |
-
|
3359 |
-
|
3360 |
-
|
3361 |
-
|
3362 |
-
|
3363 |
-
|
3364 |
-
#:
|
3365 |
-
msgid "
|
3366 |
-
|
3367 |
-
|
3368 |
-
|
3369 |
-
|
3370 |
-
|
3371 |
-
|
3372 |
-
|
3373 |
-
|
3374 |
-
|
3375 |
-
|
3376 |
-
|
3377 |
-
|
3378 |
-
|
3379 |
-
msgstr "
|
3380 |
-
|
3381 |
-
|
3382 |
-
|
3383 |
-
|
3384 |
-
|
3385 |
-
"
|
3386 |
-
|
3387 |
-
|
3388 |
-
"
|
3389 |
-
|
3390 |
-
|
3391 |
-
|
3392 |
-
msgid "%plural%
|
3393 |
-
msgstr "%plural%
|
3394 |
-
|
3395 |
-
|
3396 |
-
|
3397 |
-
msgid "
|
3398 |
-
msgstr "
|
3399 |
-
|
3400 |
-
#:
|
3401 |
-
|
3402 |
-
|
3403 |
-
|
3404 |
-
|
3405 |
-
|
3406 |
-
|
3407 |
-
|
3408 |
-
|
3409 |
-
|
3410 |
-
|
3411 |
-
|
3412 |
-
|
3413 |
-
"
|
3414 |
-
"
|
3415 |
-
|
3416 |
-
#:
|
3417 |
-
msgid "
|
3418 |
-
msgstr "
|
3419 |
-
|
3420 |
-
#:
|
3421 |
-
|
3422 |
-
|
3423 |
-
|
3424 |
-
|
3425 |
-
|
3426 |
-
|
3427 |
-
|
3428 |
-
|
3429 |
-
|
3430 |
-
|
3431 |
-
|
3432 |
-
|
3433 |
-
|
3434 |
-
|
3435 |
-
|
3436 |
-
|
3437 |
-
|
3438 |
-
|
3439 |
-
|
3440 |
-
|
3441 |
-
|
3442 |
-
|
3443 |
-
|
3444 |
-
|
3445 |
-
|
3446 |
-
|
3447 |
-
|
3448 |
-
|
3449 |
-
|
3450 |
-
|
3451 |
-
|
3452 |
-
|
3453 |
-
|
3454 |
-
|
3455 |
-
|
3456 |
-
|
3457 |
-
#:
|
3458 |
-
|
3459 |
-
|
3460 |
-
|
3461 |
-
|
3462 |
-
|
3463 |
-
|
3464 |
-
|
3465 |
-
|
3466 |
-
|
3467 |
-
|
3468 |
-
|
3469 |
-
|
3470 |
-
|
3471 |
-
|
3472 |
-
|
3473 |
-
|
3474 |
-
|
3475 |
-
|
3476 |
-
|
3477 |
-
|
3478 |
-
|
3479 |
-
|
3480 |
-
msgid "
|
3481 |
-
|
3482 |
-
|
3483 |
-
|
3484 |
-
|
3485 |
-
|
3486 |
-
|
3487 |
-
|
3488 |
-
|
3489 |
-
|
3490 |
-
|
3491 |
-
|
3492 |
-
|
3493 |
-
|
3494 |
-
|
3495 |
-
|
3496 |
-
"
|
3497 |
-
"
|
3498 |
-
|
3499 |
-
|
3500 |
-
"
|
3501 |
-
|
3502 |
-
|
3503 |
-
|
3504 |
-
msgid "
|
3505 |
-
|
3506 |
-
|
3507 |
-
|
3508 |
-
|
3509 |
-
|
3510 |
-
|
3511 |
-
#:
|
3512 |
-
|
3513 |
-
|
3514 |
-
|
3515 |
-
|
3516 |
-
|
3517 |
-
|
3518 |
-
|
3519 |
-
|
3520 |
-
#:
|
3521 |
-
|
3522 |
-
msgid ""
|
3523 |
-
"
|
3524 |
-
|
3525 |
-
|
3526 |
-
|
3527 |
-
|
3528 |
-
|
3529 |
-
|
3530 |
-
#:
|
3531 |
-
|
3532 |
-
|
3533 |
-
|
3534 |
-
|
3535 |
-
|
3536 |
-
|
3537 |
-
|
3538 |
-
#: php:
|
3539 |
-
msgid "
|
3540 |
-
|
3541 |
-
|
3542 |
-
|
3543 |
-
|
3544 |
-
|
3545 |
-
|
3546 |
-
|
3547 |
-
|
3548 |
-
#: php:
|
3549 |
-
msgid "
|
3550 |
-
|
3551 |
-
|
3552 |
-
|
3553 |
-
|
3554 |
-
|
3555 |
-
|
3556 |
-
|
3557 |
-
|
3558 |
-
|
3559 |
-
|
3560 |
-
|
3561 |
-
|
3562 |
-
|
3563 |
-
|
3564 |
-
|
3565 |
-
#:
|
3566 |
-
|
3567 |
-
|
3568 |
-
|
3569 |
-
|
3570 |
-
|
3571 |
-
|
3572 |
-
|
3573 |
-
|
3574 |
-
|
3575 |
-
msgid "
|
3576 |
-
msgstr "
|
3577 |
-
|
3578 |
-
|
3579 |
-
|
3580 |
-
msgid "
|
3581 |
-
msgstr "
|
3582 |
-
|
3583 |
-
#:
|
3584 |
-
|
3585 |
-
|
3586 |
-
|
3587 |
-
|
3588 |
-
|
3589 |
-
|
3590 |
-
|
3591 |
-
|
3592 |
-
|
3593 |
-
|
3594 |
-
|
3595 |
-
|
3596 |
-
|
3597 |
-
|
3598 |
-
|
3599 |
-
|
3600 |
-
msgid "
|
3601 |
-
msgstr "
|
3602 |
-
|
3603 |
-
#:
|
3604 |
-
msgid ""
|
3605 |
-
"
|
3606 |
-
"
|
3607 |
-
msgstr ""
|
3608 |
-
"
|
3609 |
-
"
|
3610 |
-
|
3611 |
-
#:
|
3612 |
-
|
3613 |
-
|
3614 |
-
|
3615 |
-
|
3616 |
-
|
3617 |
-
|
3618 |
-
|
3619 |
-
|
3620 |
-
|
3621 |
-
|
3622 |
-
|
3623 |
-
|
3624 |
-
|
3625 |
-
|
3626 |
-
|
3627 |
-
|
3628 |
-
|
3629 |
-
|
3630 |
-
|
3631 |
-
|
3632 |
-
|
3633 |
-
|
3634 |
-
|
3635 |
-
|
3636 |
-
|
3637 |
-
|
3638 |
-
|
3639 |
-
|
3640 |
-
|
3641 |
-
|
3642 |
-
msgid "
|
3643 |
-
msgstr "
|
3644 |
-
|
3645 |
-
#:
|
3646 |
-
|
3647 |
-
|
3648 |
-
|
3649 |
-
|
3650 |
-
|
3651 |
-
|
3652 |
-
|
3653 |
-
|
3654 |
-
|
3655 |
-
|
3656 |
-
|
3657 |
-
|
3658 |
-
|
3659 |
-
|
3660 |
-
|
3661 |
-
|
3662 |
-
|
3663 |
-
|
3664 |
-
|
3665 |
-
|
3666 |
-
|
3667 |
-
|
3668 |
-
|
3669 |
-
|
3670 |
-
|
3671 |
-
|
3672 |
-
|
3673 |
-
|
3674 |
-
msgid "
|
3675 |
-
msgstr "
|
3676 |
-
|
3677 |
-
#:
|
3678 |
-
msgid "
|
3679 |
-
msgstr "
|
3680 |
-
|
3681 |
-
#:
|
3682 |
-
|
3683 |
-
|
3684 |
-
|
3685 |
-
|
3686 |
-
|
3687 |
-
|
3688 |
-
|
3689 |
-
|
3690 |
-
|
3691 |
-
|
3692 |
-
msgid ""
|
3693 |
-
"
|
3694 |
-
|
3695 |
-
|
3696 |
-
"
|
3697 |
-
"
|
3698 |
-
|
3699 |
-
#:
|
3700 |
-
msgid "
|
3701 |
-
msgstr "
|
3702 |
-
|
3703 |
-
#:
|
3704 |
-
msgid "
|
3705 |
-
msgstr "
|
3706 |
-
|
3707 |
-
#:
|
3708 |
-
msgid "
|
3709 |
-
msgstr "
|
3710 |
-
|
3711 |
-
#:
|
3712 |
-
|
3713 |
-
|
3714 |
-
|
3715 |
-
|
3716 |
-
|
3717 |
-
|
3718 |
-
|
3719 |
-
|
3720 |
-
|
3721 |
-
|
3722 |
-
|
3723 |
-
|
3724 |
-
|
3725 |
-
|
3726 |
-
|
3727 |
-
|
3728 |
-
|
3729 |
-
|
3730 |
-
|
3731 |
-
|
3732 |
-
|
3733 |
-
|
3734 |
-
|
3735 |
-
|
3736 |
-
|
3737 |
-
|
3738 |
-
|
3739 |
-
#:
|
3740 |
-
msgid "
|
3741 |
-
msgstr "
|
3742 |
-
|
3743 |
-
#:
|
3744 |
-
|
3745 |
-
|
3746 |
-
|
3747 |
-
|
3748 |
-
|
3749 |
-
|
3750 |
-
|
3751 |
-
|
3752 |
-
|
3753 |
-
|
3754 |
-
|
3755 |
-
|
3756 |
-
|
3757 |
-
|
3758 |
-
|
3759 |
-
|
3760 |
-
|
3761 |
-
|
3762 |
-
|
3763 |
-
|
3764 |
-
|
3765 |
-
|
3766 |
-
|
3767 |
-
|
3768 |
-
|
3769 |
-
|
3770 |
-
|
3771 |
-
|
3772 |
-
|
3773 |
-
|
3774 |
-
msgid "
|
3775 |
-
msgstr ""
|
3776 |
-
|
3777 |
-
|
3778 |
-
|
3779 |
-
|
3780 |
-
|
3781 |
-
msgstr "
|
3782 |
-
|
3783 |
-
|
3784 |
-
|
3785 |
-
|
3786 |
-
|
3787 |
-
|
3788 |
-
|
3789 |
-
|
3790 |
-
|
3791 |
-
|
3792 |
-
#:
|
3793 |
-
msgid "
|
3794 |
-
msgstr "
|
3795 |
-
|
3796 |
-
#:
|
3797 |
-
|
3798 |
-
|
3799 |
-
|
3800 |
-
|
3801 |
-
|
3802 |
-
|
3803 |
-
|
3804 |
-
|
3805 |
-
|
3806 |
-
|
3807 |
-
|
3808 |
-
|
3809 |
-
|
3810 |
-
|
3811 |
-
|
3812 |
-
|
3813 |
-
|
3814 |
-
#:
|
3815 |
-
|
3816 |
-
|
3817 |
-
|
3818 |
-
|
3819 |
-
|
3820 |
-
|
3821 |
-
|
3822 |
-
|
3823 |
-
|
3824 |
-
|
3825 |
-
|
3826 |
-
|
3827 |
-
msgstr "
|
3828 |
-
|
3829 |
-
|
3830 |
-
|
3831 |
-
|
3832 |
-
|
3833 |
-
|
3834 |
-
|
3835 |
-
|
3836 |
-
|
3837 |
-
|
3838 |
-
|
3839 |
-
|
3840 |
-
|
3841 |
-
|
3842 |
-
|
3843 |
-
|
3844 |
-
|
3845 |
-
|
3846 |
-
|
3847 |
-
|
3848 |
-
|
3849 |
-
|
3850 |
-
|
3851 |
-
|
3852 |
-
|
3853 |
-
|
3854 |
-
|
3855 |
-
|
3856 |
-
|
3857 |
-
"
|
3858 |
-
|
3859 |
-
|
3860 |
-
|
3861 |
-
|
3862 |
-
|
3863 |
-
|
3864 |
-
|
3865 |
-
|
3866 |
-
|
3867 |
-
|
3868 |
-
|
3869 |
-
"
|
3870 |
-
|
3871 |
-
|
3872 |
-
#:
|
3873 |
-
|
3874 |
-
|
3875 |
-
"
|
3876 |
-
"
|
3877 |
-
|
3878 |
-
|
3879 |
-
|
3880 |
-
|
3881 |
-
|
3882 |
-
|
3883 |
-
|
3884 |
-
|
3885 |
-
|
3886 |
-
|
3887 |
-
#:
|
3888 |
-
msgid "
|
3889 |
-
msgstr "
|
3890 |
-
|
3891 |
-
#:
|
3892 |
-
|
3893 |
-
|
3894 |
-
|
3895 |
-
#:
|
3896 |
-
|
3897 |
-
msgid "
|
3898 |
-
msgstr "
|
3899 |
-
|
3900 |
-
#:
|
3901 |
-
msgid "
|
3902 |
-
msgstr "
|
3903 |
-
|
3904 |
-
#:
|
3905 |
-
msgid "
|
3906 |
-
msgstr "
|
3907 |
-
|
3908 |
-
#:
|
3909 |
-
msgid "
|
3910 |
-
msgstr "
|
3911 |
-
|
3912 |
-
#:
|
3913 |
-
|
3914 |
-
|
3915 |
-
|
3916 |
-
|
3917 |
-
|
3918 |
-
|
3919 |
-
|
3920 |
-
|
3921 |
-
#:
|
3922 |
-
|
3923 |
-
|
3924 |
-
|
3925 |
-
|
3926 |
-
|
3927 |
-
|
3928 |
-
|
3929 |
-
|
3930 |
-
|
3931 |
-
|
3932 |
-
|
3933 |
-
|
3934 |
-
#:
|
3935 |
-
|
3936 |
-
|
3937 |
-
|
3938 |
-
|
3939 |
-
"
|
3940 |
-
msgstr ""
|
3941 |
-
|
3942 |
-
|
3943 |
-
|
3944 |
-
|
3945 |
-
|
3946 |
-
#:
|
3947 |
-
msgid "
|
3948 |
-
msgstr "
|
3949 |
-
|
3950 |
-
#:
|
3951 |
-
|
3952 |
-
|
3953 |
-
|
3954 |
-
|
3955 |
-
|
3956 |
-
|
3957 |
-
|
3958 |
-
|
3959 |
-
|
3960 |
-
|
3961 |
-
|
3962 |
-
|
3963 |
-
#:
|
3964 |
-
msgid "
|
3965 |
-
msgstr "
|
3966 |
-
|
3967 |
-
|
3968 |
-
|
3969 |
-
|
3970 |
-
|
3971 |
-
|
3972 |
-
|
3973 |
-
|
3974 |
-
|
3975 |
-
|
3976 |
-
|
3977 |
-
|
3978 |
-
|
3979 |
-
|
3980 |
-
|
3981 |
-
|
3982 |
-
|
3983 |
-
|
3984 |
-
|
3985 |
-
|
3986 |
-
|
3987 |
-
|
3988 |
-
|
3989 |
-
"
|
3990 |
-
"
|
3991 |
-
|
3992 |
-
|
3993 |
-
"
|
3994 |
-
|
3995 |
-
|
3996 |
-
|
3997 |
-
|
3998 |
-
|
3999 |
-
|
4000 |
-
#:
|
4001 |
-
|
4002 |
-
|
4003 |
-
|
4004 |
-
#: log
|
4005 |
-
msgid "
|
4006 |
-
msgstr "
|
4007 |
-
|
4008 |
-
#:
|
4009 |
-
|
4010 |
-
|
4011 |
-
|
4012 |
-
|
4013 |
-
|
4014 |
-
|
4015 |
-
|
4016 |
-
|
4017 |
-
|
4018 |
-
|
4019 |
-
|
4020 |
-
|
4021 |
-
"
|
4022 |
-
"
|
4023 |
-
|
4024 |
-
|
4025 |
-
"
|
4026 |
-
|
4027 |
-
|
4028 |
-
|
4029 |
-
|
4030 |
-
|
4031 |
-
|
4032 |
-
|
4033 |
-
|
4034 |
-
|
4035 |
-
|
4036 |
-
#:
|
4037 |
-
msgid ""
|
4038 |
-
"
|
4039 |
-
|
4040 |
-
|
4041 |
-
"
|
4042 |
-
"
|
4043 |
-
|
4044 |
-
#:
|
4045 |
-
|
4046 |
-
|
4047 |
-
|
4048 |
-
|
4049 |
-
|
4050 |
-
|
4051 |
-
|
4052 |
-
|
4053 |
-
|
4054 |
-
|
4055 |
-
|
4056 |
-
#:
|
4057 |
-
msgid "
|
4058 |
-
msgstr "
|
4059 |
-
|
4060 |
-
#:
|
4061 |
-
|
4062 |
-
|
4063 |
-
|
4064 |
-
|
4065 |
-
|
4066 |
-
|
4067 |
-
|
4068 |
-
|
4069 |
-
|
4070 |
-
|
4071 |
-
|
4072 |
-
|
4073 |
-
|
4074 |
-
|
4075 |
-
|
4076 |
-
|
4077 |
-
|
4078 |
-
|
4079 |
-
|
4080 |
-
|
4081 |
-
|
4082 |
-
|
4083 |
-
|
4084 |
-
|
4085 |
-
|
4086 |
-
|
4087 |
-
|
4088 |
-
|
4089 |
-
|
4090 |
-
|
4091 |
-
|
4092 |
-
|
4093 |
-
#: includes/
|
4094 |
-
|
4095 |
-
|
4096 |
-
|
4097 |
-
|
4098 |
-
|
4099 |
-
|
4100 |
-
|
4101 |
-
|
4102 |
-
|
4103 |
-
|
4104 |
-
|
4105 |
-
|
4106 |
-
|
4107 |
-
|
4108 |
-
|
4109 |
-
|
4110 |
-
msgid "
|
4111 |
-
msgstr "
|
4112 |
-
|
4113 |
-
#:
|
4114 |
-
|
4115 |
-
|
4116 |
-
|
4117 |
-
#:
|
4118 |
-
|
4119 |
-
|
4120 |
-
|
4121 |
-
|
4122 |
-
|
4123 |
-
|
4124 |
-
|
4125 |
-
|
4126 |
-
|
4127 |
-
|
4128 |
-
|
4129 |
-
|
4130 |
-
|
4131 |
-
|
4132 |
-
|
4133 |
-
|
4134 |
-
|
4135 |
-
|
4136 |
-
|
4137 |
-
#:
|
4138 |
-
msgid "
|
4139 |
-
msgstr "
|
4140 |
-
|
4141 |
-
#:
|
4142 |
-
|
4143 |
-
|
4144 |
-
|
4145 |
-
|
4146 |
-
#:
|
4147 |
-
|
4148 |
-
|
4149 |
-
|
4150 |
-
|
4151 |
-
|
4152 |
-
|
4153 |
-
|
4154 |
-
|
4155 |
-
|
4156 |
-
|
4157 |
-
|
4158 |
-
|
4159 |
-
|
4160 |
-
|
4161 |
-
|
4162 |
-
|
4163 |
-
"
|
4164 |
-
"
|
4165 |
-
|
4166 |
-
#:
|
4167 |
-
msgid "
|
4168 |
-
msgstr ""
|
4169 |
-
|
4170 |
-
|
4171 |
-
|
4172 |
-
|
4173 |
-
|
4174 |
-
|
4175 |
-
|
4176 |
-
|
4177 |
-
|
4178 |
-
|
4179 |
-
|
4180 |
-
|
4181 |
-
|
4182 |
-
|
4183 |
-
|
4184 |
-
|
4185 |
-
|
4186 |
-
|
4187 |
-
|
4188 |
-
|
4189 |
-
|
4190 |
-
|
4191 |
-
"
|
4192 |
-
"
|
4193 |
-
|
4194 |
-
#:
|
4195 |
-
msgid "
|
4196 |
-
msgstr "
|
4197 |
-
|
4198 |
-
#:
|
4199 |
-
msgid "
|
4200 |
-
msgstr "
|
4201 |
-
|
4202 |
-
#:
|
4203 |
-
|
4204 |
-
|
4205 |
-
|
4206 |
-
|
4207 |
-
|
4208 |
-
msgid ""
|
4209 |
-
"
|
4210 |
-
|
4211 |
-
|
4212 |
-
|
4213 |
-
|
4214 |
-
|
4215 |
-
|
4216 |
-
|
4217 |
-
|
4218 |
-
|
4219 |
-
|
4220 |
-
|
4221 |
-
|
4222 |
-
"
|
4223 |
-
msgstr ""
|
4224 |
-
|
4225 |
-
|
4226 |
-
|
4227 |
-
|
4228 |
-
|
4229 |
-
|
4230 |
-
|
4231 |
-
|
4232 |
-
|
4233 |
-
|
4234 |
-
|
4235 |
-
|
4236 |
-
|
4237 |
-
|
4238 |
-
|
4239 |
-
|
4240 |
-
|
4241 |
-
|
4242 |
-
|
4243 |
-
|
4244 |
-
|
4245 |
-
|
4246 |
-
|
4247 |
-
|
4248 |
-
|
4249 |
-
|
4250 |
-
|
4251 |
-
|
4252 |
-
|
4253 |
-
|
4254 |
-
|
4255 |
-
|
4256 |
-
|
4257 |
-
|
4258 |
-
|
4259 |
-
|
4260 |
-
|
4261 |
-
|
4262 |
-
|
4263 |
-
|
4264 |
-
|
4265 |
-
|
4266 |
-
|
4267 |
-
|
4268 |
-
|
4269 |
-
|
4270 |
-
|
4271 |
-
|
4272 |
-
|
4273 |
-
|
4274 |
-
|
4275 |
-
|
4276 |
-
|
4277 |
-
|
4278 |
-
|
4279 |
-
|
4280 |
-
|
4281 |
-
|
4282 |
-
|
4283 |
-
|
4284 |
-
|
4285 |
-
|
4286 |
-
#:
|
4287 |
-
msgid "
|
4288 |
-
msgstr "
|
4289 |
-
|
4290 |
-
#:
|
4291 |
-
msgid "
|
4292 |
-
msgstr "
|
4293 |
-
|
4294 |
-
#:
|
4295 |
-
msgid "
|
4296 |
-
msgstr "
|
4297 |
-
|
4298 |
-
#:
|
4299 |
-
msgid "
|
4300 |
-
msgstr "
|
4301 |
-
|
4302 |
-
#:
|
4303 |
-
msgid "
|
4304 |
-
msgstr "
|
4305 |
-
|
4306 |
-
#:
|
4307 |
-
msgid "
|
4308 |
-
msgstr "
|
4309 |
-
|
4310 |
-
#:
|
4311 |
-
msgid "
|
4312 |
-
msgstr "
|
4313 |
-
|
4314 |
-
#:
|
4315 |
-
msgid "
|
4316 |
-
msgstr "
|
4317 |
-
|
4318 |
-
#:
|
4319 |
-
msgid "
|
4320 |
-
msgstr "
|
4321 |
-
|
4322 |
-
#:
|
4323 |
-
msgid "
|
4324 |
-
msgstr "
|
4325 |
-
|
4326 |
-
#:
|
4327 |
-
msgid "
|
4328 |
-
msgstr "
|
4329 |
-
|
4330 |
-
#:
|
4331 |
-
msgid "
|
4332 |
-
msgstr "
|
4333 |
-
|
4334 |
-
|
4335 |
-
|
4336 |
-
|
4337 |
-
|
4338 |
-
|
4339 |
-
|
4340 |
-
|
4341 |
-
|
4342 |
-
|
4343 |
-
|
4344 |
-
|
4345 |
-
|
4346 |
-
#:
|
4347 |
-
|
4348 |
-
|
4349 |
-
|
4350 |
-
|
4351 |
-
|
4352 |
-
|
4353 |
-
|
4354 |
-
|
4355 |
-
|
4356 |
-
|
4357 |
-
|
4358 |
-
|
4359 |
-
|
4360 |
-
|
4361 |
-
|
4362 |
-
#:
|
4363 |
-
|
4364 |
-
|
4365 |
-
|
4366 |
-
|
4367 |
-
|
4368 |
-
|
4369 |
-
|
4370 |
-
#:
|
4371 |
-
|
4372 |
-
|
4373 |
-
|
4374 |
-
#:
|
4375 |
-
|
4376 |
-
|
4377 |
-
|
4378 |
-
|
4379 |
-
|
4380 |
-
|
4381 |
-
|
4382 |
-
#:
|
4383 |
-
|
4384 |
-
|
4385 |
-
|
4386 |
-
|
4387 |
-
|
4388 |
-
|
4389 |
-
|
4390 |
-
#:
|
4391 |
-
|
4392 |
-
|
4393 |
-
|
4394 |
-
|
4395 |
-
|
4396 |
-
|
4397 |
-
|
4398 |
-
|
4399 |
-
|
4400 |
-
|
4401 |
-
|
4402 |
-
|
4403 |
-
|
4404 |
-
|
4405 |
-
|
4406 |
-
|
4407 |
-
|
4408 |
-
|
4409 |
-
|
4410 |
-
|
4411 |
-
|
4412 |
-
|
4413 |
-
|
4414 |
-
#:
|
4415 |
-
msgid "
|
4416 |
-
msgstr "
|
4417 |
-
|
4418 |
-
#:
|
4419 |
-
msgid "
|
4420 |
-
msgstr "
|
4421 |
-
|
4422 |
-
#:
|
4423 |
-
|
4424 |
-
|
4425 |
-
|
4426 |
-
#:
|
4427 |
-
|
4428 |
-
|
4429 |
-
|
4430 |
-
|
4431 |
-
|
4432 |
-
|
4433 |
-
|
4434 |
-
|
4435 |
-
|
4436 |
-
|
4437 |
-
|
4438 |
-
|
4439 |
-
|
4440 |
-
|
4441 |
-
|
4442 |
-
|
4443 |
-
|
4444 |
-
|
4445 |
-
|
4446 |
-
#:
|
4447 |
-
msgid "
|
4448 |
-
msgstr "
|
4449 |
-
|
4450 |
-
#:
|
4451 |
-
msgid "
|
4452 |
-
msgstr "
|
4453 |
-
|
4454 |
-
#:
|
4455 |
-
|
4456 |
-
|
4457 |
-
|
4458 |
-
|
4459 |
-
|
4460 |
-
|
4461 |
-
|
4462 |
-
|
4463 |
-
|
4464 |
-
|
4465 |
-
|
4466 |
-
|
4467 |
-
|
4468 |
-
|
4469 |
-
|
4470 |
-
|
4471 |
-
|
4472 |
-
|
4473 |
-
|
4474 |
-
|
4475 |
-
|
4476 |
-
|
4477 |
-
|
4478 |
-
|
4479 |
-
#:
|
4480 |
-
msgid "
|
4481 |
-
msgstr "
|
4482 |
-
|
4483 |
-
#:
|
4484 |
-
msgid "
|
4485 |
-
msgstr "
|
4486 |
-
|
4487 |
-
#:
|
4488 |
-
msgid "
|
4489 |
-
msgstr "
|
4490 |
-
|
4491 |
-
#:
|
4492 |
-
msgid "
|
4493 |
-
msgstr "
|
4494 |
-
|
4495 |
-
#:
|
4496 |
-
msgid "
|
4497 |
-
msgstr "
|
4498 |
-
|
4499 |
-
#:
|
4500 |
-
msgid "
|
4501 |
-
msgstr "
|
4502 |
-
|
4503 |
-
#:
|
4504 |
-
msgid "
|
4505 |
-
msgstr "
|
4506 |
-
|
4507 |
-
#:
|
4508 |
-
msgid "
|
4509 |
-
msgstr "
|
4510 |
-
|
4511 |
-
#:
|
4512 |
-
msgid "
|
4513 |
-
msgstr "
|
4514 |
-
|
4515 |
-
|
4516 |
-
#:
|
4517 |
-
msgid "
|
4518 |
-
|
4519 |
-
|
4520 |
-
|
4521 |
-
|
4522 |
-
|
4523 |
-
|
4524 |
-
#:
|
4525 |
-
|
4526 |
-
|
4527 |
-
|
4528 |
-
|
4529 |
-
|
4530 |
-
|
4531 |
-
|
4532 |
-
|
4533 |
-
|
4534 |
-
|
4535 |
-
|
4536 |
-
|
4537 |
-
|
4538 |
-
|
4539 |
-
|
4540 |
-
|
4541 |
-
#:
|
4542 |
-
msgid "
|
4543 |
-
msgstr "
|
4544 |
-
|
4545 |
-
#:
|
4546 |
-
msgid "
|
4547 |
-
|
4548 |
-
|
4549 |
-
|
4550 |
-
|
4551 |
-
|
4552 |
-
|
4553 |
-
#:
|
4554 |
-
msgid ""
|
4555 |
-
"
|
4556 |
-
|
4557 |
-
|
4558 |
-
|
4559 |
-
"
|
4560 |
-
|
4561 |
-
|
4562 |
-
|
4563 |
-
|
4564 |
-
|
4565 |
-
|
4566 |
-
"
|
4567 |
-
|
4568 |
-
|
4569 |
-
|
4570 |
-
|
4571 |
-
|
4572 |
-
|
4573 |
-
|
4574 |
-
|
4575 |
-
|
4576 |
-
|
4577 |
-
|
4578 |
-
|
4579 |
-
msgstr "
|
4580 |
-
|
4581 |
-
|
4582 |
-
|
4583 |
-
|
4584 |
-
|
4585 |
-
|
4586 |
-
|
4587 |
-
|
4588 |
-
|
4589 |
-
|
4590 |
-
|
4591 |
-
|
4592 |
-
|
4593 |
-
|
4594 |
-
|
4595 |
-
|
4596 |
-
|
4597 |
-
|
4598 |
-
|
4599 |
-
|
4600 |
-
|
4601 |
-
|
4602 |
-
|
4603 |
-
|
4604 |
-
|
4605 |
-
|
4606 |
-
|
4607 |
-
|
4608 |
-
|
4609 |
-
|
4610 |
-
|
4611 |
-
|
4612 |
-
|
4613 |
-
|
4614 |
-
|
4615 |
-
|
4616 |
-
|
4617 |
-
msgid "
|
4618 |
-
msgstr "
|
4619 |
-
|
4620 |
-
#:
|
4621 |
-
msgid "
|
4622 |
-
msgstr "
|
4623 |
-
|
4624 |
-
#:
|
4625 |
-
msgid ""
|
4626 |
-
|
4627 |
-
|
4628 |
-
|
4629 |
-
|
4630 |
-
"
|
4631 |
-
|
4632 |
-
#:
|
4633 |
-
msgid "
|
4634 |
-
msgstr "
|
4635 |
-
|
4636 |
-
#:
|
4637 |
-
msgid "
|
4638 |
-
msgstr "
|
4639 |
-
|
4640 |
-
#:
|
4641 |
-
msgid "
|
4642 |
-
msgstr "
|
4643 |
-
|
4644 |
-
#:
|
4645 |
-
msgid "
|
4646 |
-
|
4647 |
-
|
4648 |
-
|
4649 |
-
|
4650 |
-
|
4651 |
-
|
4652 |
-
"
|
4653 |
-
|
4654 |
-
|
4655 |
-
|
4656 |
-
|
4657 |
-
|
4658 |
-
|
4659 |
-
|
4660 |
-
|
4661 |
-
|
4662 |
-
|
4663 |
-
|
4664 |
-
|
4665 |
-
|
4666 |
-
|
4667 |
-
|
4668 |
-
|
4669 |
-
|
4670 |
-
#:
|
4671 |
-
|
4672 |
-
|
4673 |
-
|
4674 |
-
|
4675 |
-
|
4676 |
-
|
4677 |
-
|
4678 |
-
|
4679 |
-
#:
|
4680 |
-
msgid "
|
4681 |
-
msgstr "
|
4682 |
-
|
4683 |
-
#:
|
4684 |
-
|
4685 |
-
|
4686 |
-
|
4687 |
-
|
4688 |
-
|
4689 |
-
|
4690 |
-
|
4691 |
-
|
4692 |
-
|
4693 |
-
|
4694 |
-
|
4695 |
-
|
4696 |
-
|
4697 |
-
|
4698 |
-
|
4699 |
-
#:
|
4700 |
-
|
4701 |
-
|
4702 |
-
|
4703 |
-
|
4704 |
-
|
4705 |
-
|
4706 |
-
|
4707 |
-
|
4708 |
-
|
4709 |
-
|
4710 |
-
|
4711 |
-
|
4712 |
-
|
4713 |
-
|
4714 |
-
|
4715 |
-
|
4716 |
-
#:
|
4717 |
-
|
4718 |
-
|
4719 |
-
|
4720 |
-
|
4721 |
-
|
4722 |
-
|
4723 |
-
|
4724 |
-
|
4725 |
-
|
4726 |
-
|
4727 |
-
|
4728 |
-
|
4729 |
-
|
4730 |
-
|
4731 |
-
|
4732 |
-
|
4733 |
-
|
4734 |
-
|
4735 |
-
|
4736 |
-
|
4737 |
-
|
4738 |
-
|
4739 |
-
|
4740 |
-
|
4741 |
-
|
4742 |
-
|
4743 |
-
|
4744 |
-
|
4745 |
-
|
4746 |
-
|
4747 |
-
|
4748 |
-
|
4749 |
-
|
4750 |
-
|
4751 |
-
|
4752 |
-
|
4753 |
-
|
4754 |
-
|
4755 |
-
|
4756 |
-
|
4757 |
-
|
4758 |
-
|
4759 |
-
|
4760 |
-
|
4761 |
-
|
4762 |
-
|
4763 |
-
|
4764 |
-
|
4765 |
-
|
4766 |
-
|
4767 |
-
|
4768 |
-
msgid "
|
4769 |
-
msgstr "
|
4770 |
-
|
4771 |
-
#:
|
4772 |
-
|
4773 |
-
|
4774 |
-
|
4775 |
-
|
4776 |
-
|
4777 |
-
|
4778 |
-
|
4779 |
-
|
4780 |
-
|
4781 |
-
|
4782 |
-
|
4783 |
-
|
4784 |
-
|
4785 |
-
|
4786 |
-
|
4787 |
-
|
4788 |
-
|
4789 |
-
|
4790 |
-
|
4791 |
-
|
4792 |
-
|
4793 |
-
#:
|
4794 |
-
|
4795 |
-
|
4796 |
-
|
4797 |
-
|
4798 |
-
|
4799 |
-
|
4800 |
-
|
4801 |
-
|
4802 |
-
"
|
4803 |
-
msgstr ""
|
4804 |
-
|
4805 |
-
|
4806 |
-
|
4807 |
-
|
4808 |
-
|
4809 |
-
|
4810 |
-
|
4811 |
-
|
4812 |
-
|
4813 |
-
|
4814 |
-
|
4815 |
-
|
4816 |
-
|
4817 |
-
|
4818 |
-
|
4819 |
-
|
4820 |
-
|
4821 |
-
|
4822 |
-
|
4823 |
-
|
4824 |
-
|
4825 |
-
|
4826 |
-
|
4827 |
-
msgid "
|
4828 |
-
msgstr "
|
4829 |
-
|
4830 |
-
|
4831 |
-
#:
|
4832 |
-
msgid "
|
4833 |
-
msgstr "
|
4834 |
-
|
4835 |
-
#:
|
4836 |
-
msgid "
|
4837 |
-
msgstr "
|
4838 |
-
|
4839 |
-
#:
|
4840 |
-
msgid "
|
4841 |
-
msgstr "
|
4842 |
-
|
4843 |
-
#:
|
4844 |
-
|
4845 |
-
|
4846 |
-
|
4847 |
-
|
4848 |
-
|
4849 |
-
|
4850 |
-
|
4851 |
-
|
4852 |
-
|
4853 |
-
|
4854 |
-
|
4855 |
-
|
4856 |
-
|
4857 |
-
|
4858 |
-
|
4859 |
-
#: addons/
|
4860 |
-
|
4861 |
-
|
4862 |
-
|
4863 |
-
|
4864 |
-
|
4865 |
-
|
4866 |
-
|
4867 |
-
|
4868 |
-
|
4869 |
-
|
4870 |
-
|
4871 |
-
#: notices/myCRED-addon-email-notices.php:
|
4872 |
-
|
4873 |
-
|
4874 |
-
|
4875 |
-
|
4876 |
-
|
4877 |
-
|
4878 |
-
|
4879 |
-
|
4880 |
-
#:
|
4881 |
-
|
4882 |
-
|
4883 |
-
|
4884 |
-
|
4885 |
-
|
4886 |
-
|
4887 |
-
|
4888 |
-
|
4889 |
-
|
4890 |
-
|
4891 |
-
|
4892 |
-
|
4893 |
-
|
4894 |
-
|
4895 |
-
|
4896 |
-
|
4897 |
-
|
4898 |
-
|
4899 |
-
|
4900 |
-
|
4901 |
-
|
4902 |
-
|
4903 |
-
|
4904 |
-
|
4905 |
-
|
4906 |
-
|
4907 |
-
|
4908 |
-
|
4909 |
-
|
4910 |
-
|
4911 |
-
|
4912 |
-
|
4913 |
-
|
4914 |
-
|
4915 |
-
|
4916 |
-
|
4917 |
-
|
4918 |
-
|
4919 |
-
|
4920 |
-
|
4921 |
-
|
4922 |
-
|
4923 |
-
|
4924 |
-
#: addons/
|
4925 |
-
#: addons/
|
4926 |
-
|
4927 |
-
|
4928 |
-
|
4929 |
-
|
4930 |
-
|
4931 |
-
|
4932 |
-
|
4933 |
-
|
4934 |
-
|
4935 |
-
|
4936 |
-
|
4937 |
-
|
4938 |
-
|
4939 |
-
|
4940 |
-
|
4941 |
-
|
4942 |
-
#: addons/
|
4943 |
-
|
4944 |
-
|
4945 |
-
|
4946 |
-
|
4947 |
-
|
4948 |
-
|
4949 |
-
|
4950 |
-
#: addons/
|
4951 |
-
|
4952 |
-
|
4953 |
-
|
4954 |
-
|
4955 |
-
|
4956 |
-
|
4957 |
-
|
4958 |
-
|
4959 |
-
|
4960 |
-
|
4961 |
-
|
4962 |
-
|
4963 |
-
|
4964 |
-
|
4965 |
-
|
4966 |
-
|
4967 |
-
|
4968 |
-
|
4969 |
-
|
4970 |
-
#: addons/
|
4971 |
-
|
4972 |
-
|
4973 |
-
|
4974 |
-
msgstr "
|
4975 |
-
|
4976 |
-
|
4977 |
-
|
4978 |
-
|
4979 |
-
|
4980 |
-
|
4981 |
-
|
4982 |
-
|
4983 |
-
|
4984 |
-
|
4985 |
-
|
4986 |
-
|
4987 |
-
|
4988 |
-
|
4989 |
-
|
4990 |
-
|
4991 |
-
|
4992 |
-
|
4993 |
-
|
4994 |
-
#: addons/
|
4995 |
-
|
4996 |
-
|
4997 |
-
|
4998 |
-
#:
|
4999 |
-
msgid "
|
5000 |
-
msgstr "
|
5001 |
-
|
5002 |
-
#:
|
5003 |
-
msgid "
|
5004 |
-
msgstr "
|
5005 |
-
|
5006 |
-
#:
|
5007 |
-
|
5008 |
-
|
5009 |
-
|
5010 |
-
#: addons/
|
5011 |
-
#:
|
5012 |
-
|
5013 |
-
|
5014 |
-
|
5015 |
-
|
5016 |
-
#:
|
5017 |
-
|
5018 |
-
|
5019 |
-
|
5020 |
-
#:
|
5021 |
-
|
5022 |
-
|
5023 |
-
"
|
5024 |
-
msgstr ""
|
5025 |
-
|
5026 |
-
|
5027 |
-
|
5028 |
-
|
5029 |
-
|
5030 |
-
|
5031 |
-
|
5032 |
-
|
5033 |
-
|
5034 |
-
#: addons/
|
5035 |
-
|
5036 |
-
|
5037 |
-
|
5038 |
-
|
5039 |
-
|
5040 |
-
|
5041 |
-
|
5042 |
-
#: addons/
|
5043 |
-
|
5044 |
-
|
5045 |
-
|
5046 |
-
#: addons/
|
5047 |
-
msgid "
|
5048 |
-
msgstr ""
|
5049 |
-
|
5050 |
-
|
5051 |
-
|
5052 |
-
|
5053 |
-
|
5054 |
-
#: addon-
|
5055 |
-
|
5056 |
-
|
5057 |
-
|
5058 |
-
#:
|
5059 |
-
|
5060 |
-
|
5061 |
-
|
5062 |
-
|
5063 |
-
|
5064 |
-
|
5065 |
-
|
5066 |
-
|
5067 |
-
"
|
5068 |
-
|
5069 |
-
|
5070 |
-
|
5071 |
-
|
5072 |
-
|
5073 |
-
|
5074 |
-
|
5075 |
-
|
5076 |
-
|
5077 |
-
|
5078 |
-
"
|
5079 |
-
|
5080 |
-
|
5081 |
-
#: addons/
|
5082 |
-
|
5083 |
-
|
5084 |
-
|
5085 |
-
|
5086 |
-
|
5087 |
-
|
5088 |
-
|
5089 |
-
|
5090 |
-
"
|
5091 |
-
"
|
5092 |
-
|
5093 |
-
#:
|
5094 |
-
|
5095 |
-
|
5096 |
-
|
5097 |
-
|
5098 |
-
|
5099 |
-
|
5100 |
-
|
5101 |
-
|
5102 |
-
|
5103 |
-
|
5104 |
-
|
5105 |
-
|
5106 |
-
msgid "
|
5107 |
-
msgstr "
|
5108 |
-
|
5109 |
-
#:
|
5110 |
-
|
5111 |
-
|
5112 |
-
|
5113 |
-
|
5114 |
-
|
5115 |
-
|
5116 |
-
|
5117 |
-
|
5118 |
-
|
5119 |
-
#:
|
5120 |
-
#: addons/
|
5121 |
-
|
5122 |
-
|
5123 |
-
|
5124 |
-
|
5125 |
-
#: addons/
|
5126 |
-
msgid "
|
5127 |
-
msgstr "
|
5128 |
-
|
5129 |
-
#:
|
5130 |
-
#: addons/
|
5131 |
-
msgid "
|
5132 |
-
msgstr "
|
5133 |
-
|
5134 |
-
#:
|
5135 |
-
msgid "
|
5136 |
-
msgstr "
|
5137 |
-
|
5138 |
-
#:
|
5139 |
-
msgid "
|
5140 |
-
msgstr "
|
5141 |
-
|
5142 |
-
#:
|
5143 |
-
|
5144 |
-
|
5145 |
-
|
5146 |
-
|
5147 |
-
|
5148 |
-
|
5149 |
-
|
5150 |
-
|
5151 |
-
|
5152 |
-
|
5153 |
-
|
5154 |
-
#: addons/
|
5155 |
-
|
5156 |
-
|
5157 |
-
|
5158 |
-
|
5159 |
-
#:
|
5160 |
-
#: addons/
|
5161 |
-
|
5162 |
-
msgid "
|
5163 |
-
msgstr ""
|
5164 |
-
|
5165 |
-
|
5166 |
-
|
5167 |
-
|
5168 |
-
|
5169 |
-
#: addons/
|
5170 |
-
#: addons/
|
5171 |
-
msgid "
|
5172 |
-
msgstr "
|
5173 |
-
|
5174 |
-
#:
|
5175 |
-
|
5176 |
-
|
5177 |
-
|
5178 |
-
|
5179 |
-
|
5180 |
-
|
5181 |
-
|
5182 |
-
|
5183 |
-
|
5184 |
-
#: addons/
|
5185 |
-
msgid "
|
5186 |
-
msgstr "
|
5187 |
-
|
5188 |
-
#:
|
5189 |
-
#: addons/
|
5190 |
-
msgid "
|
5191 |
-
msgstr "
|
5192 |
-
|
5193 |
-
#:
|
5194 |
-
|
5195 |
-
|
5196 |
-
|
5197 |
-
|
5198 |
-
|
5199 |
-
|
5200 |
-
|
5201 |
-
|
5202 |
-
"
|
5203 |
-
msgstr ""
|
5204 |
-
|
5205 |
-
|
5206 |
-
|
5207 |
-
|
5208 |
-
|
5209 |
-
|
5210 |
-
|
5211 |
-
|
5212 |
-
|
5213 |
-
#: addons/
|
5214 |
-
msgid "
|
5215 |
-
msgstr "
|
5216 |
-
|
5217 |
-
#:
|
5218 |
-
|
5219 |
-
|
5220 |
-
|
5221 |
-
|
5222 |
-
|
5223 |
-
|
5224 |
-
|
5225 |
-
#: addons/
|
5226 |
-
msgid "
|
5227 |
-
|
5228 |
-
|
5229 |
-
|
5230 |
-
|
5231 |
-
|
5232 |
-
|
5233 |
-
|
5234 |
-
|
5235 |
-
|
5236 |
-
|
5237 |
-
#: addons/
|
5238 |
-
msgid "
|
5239 |
-
msgstr "
|
5240 |
-
|
5241 |
-
#:
|
5242 |
-
|
5243 |
-
|
5244 |
-
|
5245 |
-
|
5246 |
-
#:
|
5247 |
-
|
5248 |
-
|
5249 |
-
|
5250 |
-
|
5251 |
-
|
5252 |
-
|
5253 |
-
|
5254 |
-
|
5255 |
-
|
5256 |
-
|
5257 |
-
|
5258 |
-
|
5259 |
-
|
5260 |
-
|
5261 |
-
|
5262 |
-
|
5263 |
-
|
5264 |
-
|
5265 |
-
"
|
5266 |
-
|
5267 |
-
|
5268 |
-
"
|
5269 |
-
"
|
5270 |
-
|
5271 |
-
#:
|
5272 |
-
msgid "
|
5273 |
-
|
5274 |
-
|
5275 |
-
|
5276 |
-
|
5277 |
-
|
5278 |
-
|
5279 |
-
|
5280 |
-
|
5281 |
-
|
5282 |
-
|
5283 |
-
|
5284 |
-
|
5285 |
-
|
5286 |
-
|
5287 |
-
|
5288 |
-
|
5289 |
-
|
5290 |
-
|
5291 |
-
|
5292 |
-
|
5293 |
-
|
5294 |
-
|
5295 |
-
|
5296 |
-
|
5297 |
-
|
5298 |
-
|
5299 |
-
|
5300 |
-
|
5301 |
-
|
5302 |
-
|
5303 |
-
|
5304 |
-
|
5305 |
-
|
5306 |
-
|
5307 |
-
|
5308 |
-
#: addons/
|
5309 |
-
msgid "
|
5310 |
-
|
5311 |
-
|
5312 |
-
|
5313 |
-
|
5314 |
-
|
5315 |
-
|
5316 |
-
#:
|
5317 |
-
msgid "
|
5318 |
-
msgstr "
|
5319 |
-
|
5320 |
-
#:
|
5321 |
-
|
5322 |
-
|
5323 |
-
|
5324 |
-
|
5325 |
-
|
5326 |
-
|
5327 |
-
|
5328 |
-
|
5329 |
-
|
5330 |
-
|
5331 |
-
|
5332 |
-
|
5333 |
-
|
5334 |
-
"
|
5335 |
-
|
5336 |
-
|
5337 |
-
|
5338 |
-
|
5339 |
-
|
5340 |
-
|
5341 |
-
|
5342 |
-
|
5343 |
-
|
5344 |
-
|
5345 |
-
|
5346 |
-
|
5347 |
-
"
|
5348 |
-
|
5349 |
-
|
5350 |
-
|
5351 |
-
|
5352 |
-
|
5353 |
-
|
5354 |
-
#:
|
5355 |
-
|
5356 |
-
|
5357 |
-
|
5358 |
-
#:
|
5359 |
-
|
5360 |
-
|
5361 |
-
|
5362 |
-
|
5363 |
-
|
5364 |
-
|
5365 |
-
|
5366 |
-
|
5367 |
-
|
5368 |
-
|
5369 |
-
|
5370 |
-
|
5371 |
-
|
5372 |
-
|
5373 |
-
|
5374 |
-
|
5375 |
-
|
5376 |
-
|
5377 |
-
|
5378 |
-
|
5379 |
-
|
5380 |
-
|
5381 |
-
|
5382 |
-
|
5383 |
-
|
5384 |
-
|
5385 |
-
|
5386 |
-
|
5387 |
-
|
5388 |
-
|
5389 |
-
|
5390 |
-
|
5391 |
-
|
5392 |
-
|
5393 |
-
|
5394 |
-
|
5395 |
-
|
5396 |
-
|
5397 |
-
|
5398 |
-
|
5399 |
-
|
5400 |
-
|
5401 |
-
|
5402 |
-
|
5403 |
-
|
5404 |
-
|
5405 |
-
|
5406 |
-
|
5407 |
-
|
5408 |
-
|
5409 |
-
|
5410 |
-
|
5411 |
-
|
5412 |
-
|
5413 |
-
|
5414 |
-
|
5415 |
-
|
5416 |
-
|
5417 |
-
|
5418 |
-
|
5419 |
-
|
5420 |
-
|
5421 |
-
|
5422 |
-
|
5423 |
-
|
5424 |
-
|
5425 |
-
|
5426 |
-
|
5427 |
-
|
5428 |
-
|
5429 |
-
|
5430 |
-
#:
|
5431 |
-
|
5432 |
-
|
5433 |
-
|
5434 |
-
|
5435 |
-
|
5436 |
-
|
5437 |
-
|
5438 |
-
#:
|
5439 |
-
|
5440 |
-
|
5441 |
-
"
|
5442 |
-
|
5443 |
-
|
5444 |
-
|
5445 |
-
|
5446 |
-
|
5447 |
-
|
5448 |
-
|
5449 |
-
|
5450 |
-
#:
|
5451 |
-
msgid "
|
5452 |
-
msgstr "
|
5453 |
-
|
5454 |
-
#:
|
5455 |
-
#:
|
5456 |
-
|
5457 |
-
|
5458 |
-
|
5459 |
-
|
5460 |
-
|
5461 |
-
|
5462 |
-
|
5463 |
-
|
5464 |
-
|
5465 |
-
|
5466 |
-
|
5467 |
-
|
5468 |
-
|
5469 |
-
|
5470 |
-
|
5471 |
-
|
5472 |
-
|
5473 |
-
|
5474 |
-
|
5475 |
-
"
|
5476 |
-
|
5477 |
-
|
5478 |
-
#:
|
5479 |
-
msgid "
|
5480 |
-
msgstr "
|
5481 |
-
|
5482 |
-
#:
|
5483 |
-
|
5484 |
-
|
5485 |
-
|
5486 |
-
|
5487 |
-
|
5488 |
-
|
5489 |
-
|
5490 |
-
|
5491 |
-
|
5492 |
-
|
5493 |
-
|
5494 |
-
|
5495 |
-
|
5496 |
-
|
5497 |
-
|
5498 |
-
|
5499 |
-
|
5500 |
-
"
|
5501 |
-
|
5502 |
-
|
5503 |
-
|
5504 |
-
|
5505 |
-
"
|
5506 |
-
"
|
5507 |
-
|
5508 |
-
"
|
5509 |
-
|
5510 |
-
|
5511 |
-
|
5512 |
-
|
5513 |
-
|
5514 |
-
|
5515 |
-
|
5516 |
-
|
5517 |
-
|
5518 |
-
|
5519 |
-
"
|
5520 |
-
"
|
5521 |
-
|
5522 |
-
#:
|
5523 |
-
|
5524 |
-
|
5525 |
-
|
5526 |
-
#:
|
5527 |
-
msgid ""
|
5528 |
-
|
5529 |
-
"
|
5530 |
-
|
5531 |
-
|
5532 |
-
|
5533 |
-
|
5534 |
-
|
5535 |
-
|
5536 |
-
|
5537 |
-
|
5538 |
-
|
5539 |
-
|
5540 |
-
msgstr "
|
5541 |
-
|
5542 |
-
|
5543 |
-
|
5544 |
-
|
5545 |
-
|
5546 |
-
|
5547 |
-
|
5548 |
-
|
5549 |
-
|
5550 |
-
|
5551 |
-
|
5552 |
-
|
5553 |
-
|
5554 |
-
#:
|
5555 |
-
msgid "
|
5556 |
-
msgstr "
|
5557 |
-
|
5558 |
-
|
5559 |
-
|
5560 |
-
|
5561 |
-
|
5562 |
-
|
5563 |
-
|
5564 |
-
|
5565 |
-
|
5566 |
-
|
5567 |
-
|
5568 |
-
|
5569 |
-
|
5570 |
-
|
5571 |
-
|
5572 |
-
|
5573 |
-
|
5574 |
-
|
5575 |
-
|
5576 |
-
|
5577 |
-
|
5578 |
-
|
5579 |
-
|
5580 |
-
|
5581 |
-
|
5582 |
-
"
|
5583 |
-
"
|
5584 |
-
|
5585 |
-
|
5586 |
-
#:
|
5587 |
-
|
5588 |
-
|
5589 |
-
|
5590 |
-
|
5591 |
-
#:
|
5592 |
-
msgid "
|
5593 |
-
msgstr "
|
5594 |
-
|
5595 |
-
#:
|
5596 |
-
|
5597 |
-
|
5598 |
-
|
5599 |
-
|
5600 |
-
|
5601 |
-
|
5602 |
-
"
|
5603 |
-
|
5604 |
-
|
5605 |
-
|
5606 |
-
|
5607 |
-
|
5608 |
-
|
5609 |
-
|
5610 |
-
|
5611 |
-
|
5612 |
-
|
5613 |
-
|
5614 |
-
|
5615 |
-
|
5616 |
-
|
5617 |
-
|
5618 |
-
#:
|
5619 |
-
msgid "
|
5620 |
-
msgstr "
|
5621 |
-
|
5622 |
-
#:
|
5623 |
-
|
5624 |
-
"
|
5625 |
-
|
5626 |
-
|
5627 |
-
"
|
5628 |
-
|
5629 |
-
|
5630 |
-
#:
|
5631 |
-
|
5632 |
-
|
5633 |
-
|
5634 |
-
|
5635 |
-
|
5636 |
-
|
5637 |
-
|
5638 |
-
|
5639 |
-
|
5640 |
-
msgstr "
|
5641 |
-
|
5642 |
-
|
5643 |
-
|
5644 |
-
|
5645 |
-
|
5646 |
-
#:
|
5647 |
-
msgid "
|
5648 |
-
msgstr "
|
5649 |
-
|
5650 |
-
#:
|
5651 |
-
|
5652 |
-
|
5653 |
-
|
5654 |
-
|
5655 |
-
|
5656 |
-
|
5657 |
-
|
5658 |
-
|
5659 |
-
|
5660 |
-
|
5661 |
-
|
5662 |
-
|
5663 |
-
|
5664 |
-
|
5665 |
-
|
5666 |
-
|
5667 |
-
|
5668 |
-
|
5669 |
-
|
5670 |
-
#:
|
5671 |
-
msgid "
|
5672 |
-
msgstr "
|
5673 |
-
|
5674 |
-
#:
|
5675 |
-
|
5676 |
-
|
5677 |
-
"
|
5678 |
-
|
5679 |
-
|
5680 |
-
#:
|
5681 |
-
msgid "
|
5682 |
-
msgstr "
|
5683 |
-
|
5684 |
-
#:
|
5685 |
-
|
5686 |
-
|
5687 |
-
|
5688 |
-
|
5689 |
-
|
5690 |
-
|
5691 |
-
|
5692 |
-
|
5693 |
-
|
5694 |
-
|
5695 |
-
|
5696 |
-
|
5697 |
-
#:
|
5698 |
-
|
5699 |
-
|
5700 |
-
|
5701 |
-
|
5702 |
-
|
5703 |
-
|
5704 |
-
|
5705 |
-
|
5706 |
-
|
5707 |
-
|
5708 |
-
|
5709 |
-
|
5710 |
-
|
5711 |
-
|
5712 |
-
|
5713 |
-
|
5714 |
-
|
5715 |
-
|
5716 |
-
|
5717 |
-
|
5718 |
-
#:
|
5719 |
-
|
5720 |
-
|
5721 |
-
|
5722 |
-
|
5723 |
-
|
5724 |
-
|
5725 |
-
|
5726 |
-
|
5727 |
-
|
5728 |
-
|
5729 |
-
|
5730 |
-
|
5731 |
-
#:
|
5732 |
-
|
5733 |
-
|
5734 |
-
|
5735 |
-
|
5736 |
-
|
5737 |
-
|
5738 |
-
|
5739 |
-
|
5740 |
-
|
5741 |
-
|
5742 |
-
|
5743 |
-
|
5744 |
-
|
5745 |
-
|
5746 |
-
|
5747 |
-
|
5748 |
-
|
5749 |
-
|
5750 |
-
|
5751 |
-
|
5752 |
-
|
5753 |
-
|
5754 |
-
|
5755 |
-
|
5756 |
-
|
5757 |
-
|
5758 |
-
|
5759 |
-
|
5760 |
-
|
5761 |
-
|
5762 |
-
|
5763 |
-
|
5764 |
-
#:
|
5765 |
-
#: addons/
|
5766 |
-
|
5767 |
-
|
5768 |
-
|
5769 |
-
|
5770 |
-
|
5771 |
-
|
5772 |
-
|
5773 |
-
|
5774 |
-
|
5775 |
-
|
5776 |
-
|
5777 |
-
|
5778 |
-
|
5779 |
-
|
5780 |
-
|
5781 |
-
|
5782 |
-
|
5783 |
-
|
5784 |
-
|
5785 |
-
|
5786 |
-
|
5787 |
-
|
5788 |
-
|
5789 |
-
|
5790 |
-
|
5791 |
-
|
5792 |
-
|
5793 |
-
#:
|
5794 |
-
msgid "
|
5795 |
-
msgstr "
|
5796 |
-
|
5797 |
-
#:
|
5798 |
-
msgid "
|
5799 |
-
|
5800 |
-
|
5801 |
-
|
5802 |
-
|
5803 |
-
|
5804 |
-
|
5805 |
-
|
5806 |
-
|
5807 |
-
|
5808 |
-
|
5809 |
-
|
5810 |
-
|
5811 |
-
|
5812 |
-
|
5813 |
-
|
5814 |
-
msgid "
|
5815 |
-
msgstr "
|
5816 |
-
|
5817 |
-
#:
|
5818 |
-
|
5819 |
-
|
5820 |
-
|
5821 |
-
|
5822 |
-
|
5823 |
-
|
5824 |
-
|
5825 |
-
|
5826 |
-
|
5827 |
-
|
5828 |
-
|
5829 |
-
|
5830 |
-
|
5831 |
-
|
5832 |
-
|
5833 |
-
|
5834 |
-
|
5835 |
-
|
5836 |
-
|
5837 |
-
|
5838 |
-
|
5839 |
-
#:
|
5840 |
-
msgid "
|
5841 |
-
msgstr "
|
5842 |
-
|
5843 |
-
#:
|
5844 |
-
msgid "
|
5845 |
-
msgstr "
|
5846 |
-
|
5847 |
-
|
5848 |
-
|
5849 |
-
|
5850 |
-
|
5851 |
-
|
5852 |
-
|
5853 |
-
|
5854 |
-
|
5855 |
-
|
5856 |
-
#:
|
5857 |
-
msgid ""
|
5858 |
-
"
|
5859 |
-
|
5860 |
-
|
5861 |
-
"
|
5862 |
-
"
|
5863 |
-
|
5864 |
-
#:
|
5865 |
-
msgid "
|
5866 |
-
msgstr "
|
5867 |
-
|
5868 |
-
#:
|
5869 |
-
msgid "
|
5870 |
-
msgstr "
|
5871 |
-
|
5872 |
-
|
5873 |
-
|
5874 |
-
|
5875 |
-
|
5876 |
-
|
5877 |
-
|
5878 |
-
|
5879 |
-
|
5880 |
-
|
5881 |
-
|
5882 |
-
|
5883 |
-
|
5884 |
-
|
5885 |
-
#:
|
5886 |
-
msgid ""
|
5887 |
-
"
|
5888 |
-
|
5889 |
-
|
5890 |
-
"
|
5891 |
-
"
|
5892 |
-
|
5893 |
-
#:
|
5894 |
-
msgid "
|
5895 |
-
msgstr "
|
5896 |
-
|
5897 |
-
|
5898 |
-
|
5899 |
-
|
5900 |
-
|
5901 |
-
|
5902 |
-
|
5903 |
-
|
5904 |
-
|
5905 |
-
|
5906 |
-
"
|
5907 |
-
|
5908 |
-
|
5909 |
-
|
5910 |
-
|
5911 |
-
|
5912 |
-
|
5913 |
-
|
5914 |
-
|
5915 |
-
|
5916 |
-
|
5917 |
-
"
|
5918 |
-
"
|
5919 |
-
|
5920 |
-
|
5921 |
-
"
|
5922 |
-
"
|
5923 |
-
|
5924 |
-
#:
|
5925 |
-
msgid ""
|
5926 |
-
"
|
5927 |
-
|
5928 |
-
|
5929 |
-
|
5930 |
-
"
|
5931 |
-
|
5932 |
-
|
5933 |
-
|
5934 |
-
|
5935 |
-
|
5936 |
-
|
5937 |
-
|
5938 |
-
|
5939 |
-
|
5940 |
-
|
5941 |
-
|
5942 |
-
|
5943 |
-
|
5944 |
-
|
5945 |
-
|
5946 |
-
|
5947 |
-
|
5948 |
-
|
5949 |
-
|
5950 |
-
|
5951 |
-
|
5952 |
-
#:
|
5953 |
-
|
5954 |
-
|
5955 |
-
|
5956 |
-
|
5957 |
-
|
5958 |
-
|
5959 |
-
|
5960 |
-
|
5961 |
-
|
5962 |
-
|
5963 |
-
|
5964 |
-
#:
|
5965 |
-
|
5966 |
-
|
5967 |
-
|
5968 |
-
|
5969 |
-
|
5970 |
-
|
5971 |
-
|
5972 |
-
|
5973 |
-
|
5974 |
-
|
5975 |
-
|
5976 |
-
|
5977 |
-
|
5978 |
-
|
5979 |
-
|
5980 |
-
|
5981 |
-
|
5982 |
-
|
5983 |
-
|
5984 |
-
|
5985 |
-
|
5986 |
-
|
5987 |
-
|
5988 |
-
|
5989 |
-
|
5990 |
-
|
5991 |
-
|
5992 |
-
|
5993 |
-
|
5994 |
-
|
5995 |
-
|
5996 |
-
|
5997 |
-
|
5998 |
-
|
5999 |
-
|
6000 |
-
#:
|
6001 |
-
msgid "
|
6002 |
-
msgstr "
|
6003 |
-
|
6004 |
-
#:
|
6005 |
-
msgid ""
|
6006 |
-
|
6007 |
-
|
6008 |
-
|
6009 |
-
|
6010 |
-
"
|
6011 |
-
|
6012 |
-
#:
|
6013 |
-
msgid "
|
6014 |
-
msgstr "
|
6015 |
-
|
6016 |
-
#:
|
6017 |
-
|
6018 |
-
|
6019 |
-
|
6020 |
-
#: addons/
|
6021 |
-
|
6022 |
-
|
6023 |
-
|
6024 |
-
|
6025 |
-
|
6026 |
-
|
6027 |
-
|
6028 |
-
|
6029 |
-
|
6030 |
-
|
6031 |
-
|
6032 |
-
|
6033 |
-
|
6034 |
-
|
6035 |
-
|
6036 |
-
|
6037 |
-
|
6038 |
-
|
6039 |
-
|
6040 |
-
|
6041 |
-
|
6042 |
-
|
6043 |
-
|
6044 |
-
|
6045 |
-
|
6046 |
-
|
6047 |
-
|
6048 |
-
|
6049 |
-
#:
|
6050 |
-
msgid "
|
6051 |
-
msgstr "
|
6052 |
-
|
6053 |
-
#:
|
6054 |
-
|
6055 |
-
|
6056 |
-
|
6057 |
-
|
6058 |
-
|
6059 |
-
|
6060 |
-
|
6061 |
-
|
6062 |
-
|
6063 |
-
|
6064 |
-
#:
|
6065 |
-
|
6066 |
-
|
6067 |
-
|
6068 |
-
|
6069 |
-
#:
|
6070 |
-
|
6071 |
-
|
6072 |
-
|
6073 |
-
|
6074 |
-
|
6075 |
-
|
6076 |
-
|
6077 |
-
#:
|
6078 |
-
|
6079 |
-
|
6080 |
-
|
6081 |
-
|
6082 |
-
|
6083 |
-
|
6084 |
-
|
6085 |
-
|
6086 |
-
|
6087 |
-
|
6088 |
-
|
6089 |
-
|
6090 |
-
|
6091 |
-
|
6092 |
-
|
6093 |
-
|
6094 |
-
|
6095 |
-
|
6096 |
-
|
6097 |
-
|
6098 |
-
#:
|
6099 |
-
|
6100 |
-
|
6101 |
-
|
6102 |
-
|
6103 |
-
|
6104 |
-
|
6105 |
-
|
6106 |
-
|
6107 |
-
|
6108 |
-
|
6109 |
-
|
6110 |
-
|
6111 |
-
|
6112 |
-
|
6113 |
-
|
6114 |
-
|
6115 |
-
|
6116 |
-
|
6117 |
-
|
6118 |
-
|
6119 |
-
|
6120 |
-
|
6121 |
-
|
6122 |
-
|
6123 |
-
|
6124 |
-
|
6125 |
-
|
6126 |
-
|
6127 |
-
|
6128 |
-
|
6129 |
-
|
6130 |
-
msgstr "
|
6131 |
-
|
6132 |
-
|
6133 |
-
|
6134 |
-
|
6135 |
-
|
6136 |
-
|
6137 |
-
|
6138 |
-
|
6139 |
-
|
6140 |
-
|
6141 |
-
|
6142 |
-
|
6143 |
-
|
6144 |
-
|
6145 |
-
|
6146 |
-
|
6147 |
-
|
6148 |
-
|
6149 |
-
|
6150 |
-
|
6151 |
-
|
6152 |
-
|
6153 |
-
|
6154 |
-
|
6155 |
-
|
6156 |
-
|
6157 |
-
|
6158 |
-
|
6159 |
-
|
6160 |
-
|
6161 |
-
#:
|
6162 |
-
|
6163 |
-
|
6164 |
-
|
6165 |
-
|
6166 |
-
|
6167 |
-
|
6168 |
-
|
6169 |
-
|
6170 |
-
#:
|
6171 |
-
msgid "
|
6172 |
-
msgstr "
|
6173 |
-
|
6174 |
-
#:
|
6175 |
-
msgid "
|
6176 |
-
msgstr "
|
6177 |
-
|
6178 |
-
#:
|
6179 |
-
msgid "
|
6180 |
-
msgstr "
|
6181 |
-
|
6182 |
-
#:
|
6183 |
-
msgid "
|
6184 |
-
msgstr "
|
6185 |
-
|
6186 |
-
#:
|
6187 |
-
msgid "
|
6188 |
-
msgstr "
|
6189 |
-
|
6190 |
-
#:
|
6191 |
-
msgid "
|
6192 |
-
msgstr "
|
6193 |
-
|
6194 |
-
#:
|
6195 |
-
msgid "
|
6196 |
-
msgstr "
|
6197 |
-
|
6198 |
-
#:
|
6199 |
-
msgid "
|
6200 |
-
msgstr "
|
6201 |
-
|
6202 |
-
#:
|
6203 |
-
msgid "
|
6204 |
-
msgstr "
|
6205 |
-
|
6206 |
-
#:
|
6207 |
-
msgid "
|
6208 |
-
msgstr "
|
6209 |
-
|
6210 |
-
#:
|
6211 |
-
msgid "
|
6212 |
-
msgstr "se
|
6213 |
-
|
6214 |
-
#:
|
6215 |
-
msgid "
|
6216 |
-
msgstr "
|
6217 |
-
|
6218 |
-
#:
|
6219 |
-
#: addons/
|
6220 |
-
|
6221 |
-
|
6222 |
-
|
6223 |
-
#:
|
6224 |
-
msgid ""
|
6225 |
-
|
6226 |
-
"
|
6227 |
-
|
6228 |
-
|
6229 |
-
|
6230 |
-
|
6231 |
-
#:
|
6232 |
-
|
6233 |
-
|
6234 |
-
|
6235 |
-
|
6236 |
-
|
6237 |
-
|
6238 |
-
|
6239 |
-
#:
|
6240 |
-
|
6241 |
-
|
6242 |
-
|
6243 |
-
|
6244 |
-
|
6245 |
-
|
6246 |
-
|
6247 |
-
|
6248 |
-
|
6249 |
-
|
6250 |
-
|
6251 |
-
|
6252 |
-
|
6253 |
-
|
6254 |
-
|
6255 |
-
|
6256 |
-
|
6257 |
-
|
6258 |
-
|
6259 |
-
|
6260 |
-
|
6261 |
-
|
6262 |
-
|
6263 |
-
|
6264 |
-
|
6265 |
-
|
6266 |
-
|
6267 |
-
|
6268 |
-
#:
|
6269 |
-
|
6270 |
-
|
6271 |
-
|
6272 |
-
|
6273 |
-
|
6274 |
-
|
6275 |
-
|
6276 |
-
|
6277 |
-
|
6278 |
-
|
6279 |
-
|
6280 |
-
|
6281 |
-
|
6282 |
-
|
6283 |
-
|
6284 |
-
|
6285 |
-
|
6286 |
-
|
6287 |
-
|
6288 |
-
|
6289 |
-
|
6290 |
-
|
6291 |
-
|
6292 |
-
|
6293 |
-
|
6294 |
-
"
|
6295 |
-
|
6296 |
-
|
6297 |
-
#:
|
6298 |
-
|
6299 |
-
|
6300 |
-
|
6301 |
-
|
6302 |
-
|
6303 |
-
|
6304 |
-
"
|
6305 |
-
msgstr ""
|
6306 |
-
|
6307 |
-
|
6308 |
-
|
6309 |
-
|
6310 |
-
|
6311 |
-
|
6312 |
-
|
6313 |
-
msgstr ""
|
6314 |
-
|
6315 |
-
|
6316 |
-
|
6317 |
-
|
6318 |
-
|
6319 |
-
|
6320 |
-
|
6321 |
-
|
6322 |
-
|
6323 |
-
|
6324 |
-
|
6325 |
-
|
6326 |
-
|
6327 |
-
|
6328 |
-
|
6329 |
-
|
6330 |
-
|
6331 |
-
|
6332 |
-
|
6333 |
-
|
6334 |
-
|
6335 |
-
|
6336 |
-
|
6337 |
-
|
6338 |
-
|
6339 |
-
|
6340 |
-
|
6341 |
-
|
6342 |
-
|
6343 |
-
|
6344 |
-
|
6345 |
-
|
6346 |
-
|
6347 |
-
|
6348 |
-
|
6349 |
-
|
6350 |
-
|
6351 |
-
|
6352 |
-
|
6353 |
-
|
6354 |
-
#:
|
6355 |
-
|
6356 |
-
|
6357 |
-
|
6358 |
-
#: addons/
|
6359 |
-
|
6360 |
-
|
6361 |
-
|
6362 |
-
|
6363 |
-
|
6364 |
-
|
6365 |
-
|
6366 |
-
|
6367 |
-
|
6368 |
-
|
6369 |
-
|
6370 |
-
|
6371 |
-
|
6372 |
-
|
6373 |
-
|
6374 |
-
|
6375 |
-
|
6376 |
-
|
6377 |
-
|
6378 |
-
|
6379 |
-
|
6380 |
-
|
6381 |
-
|
6382 |
-
|
6383 |
-
|
6384 |
-
|
6385 |
-
|
6386 |
-
|
6387 |
-
#:
|
6388 |
-
msgid "
|
6389 |
-
msgstr "
|
6390 |
-
|
6391 |
-
#:
|
6392 |
-
|
6393 |
-
|
6394 |
-
|
6395 |
-
#: addons/
|
6396 |
-
|
6397 |
-
|
6398 |
-
|
6399 |
-
|
6400 |
-
#:
|
6401 |
-
msgid "
|
6402 |
-
msgstr "
|
6403 |
-
|
6404 |
-
#:
|
6405 |
-
msgid "
|
6406 |
-
msgstr "
|
6407 |
-
|
6408 |
-
#:
|
6409 |
-
msgid "
|
6410 |
-
msgstr "
|
6411 |
-
|
6412 |
-
#:
|
6413 |
-
msgid "
|
6414 |
-
msgstr "
|
6415 |
-
|
6416 |
-
#:
|
6417 |
-
msgid "
|
6418 |
-
|
6419 |
-
|
6420 |
-
|
6421 |
-
|
6422 |
-
|
6423 |
-
|
6424 |
-
|
6425 |
-
|
6426 |
-
|
6427 |
-
|
6428 |
-
|
6429 |
-
|
6430 |
-
|
6431 |
-
|
6432 |
-
|
6433 |
-
|
6434 |
-
|
6435 |
-
|
6436 |
-
|
6437 |
-
|
6438 |
-
|
6439 |
-
|
6440 |
-
|
6441 |
-
|
6442 |
-
|
6443 |
-
|
6444 |
-
|
6445 |
-
|
6446 |
-
|
6447 |
-
|
6448 |
-
|
6449 |
-
|
6450 |
-
|
6451 |
-
|
6452 |
-
|
6453 |
-
|
6454 |
-
|
6455 |
-
#: addons/
|
6456 |
-
|
6457 |
-
|
6458 |
-
|
6459 |
-
|
6460 |
-
|
6461 |
-
|
6462 |
-
|
6463 |
-
|
6464 |
-
|
6465 |
-
|
6466 |
-
|
6467 |
-
|
6468 |
-
|
6469 |
-
|
6470 |
-
|
6471 |
-
|
6472 |
-
|
6473 |
-
|
6474 |
-
|
6475 |
-
|
6476 |
-
|
6477 |
-
|
6478 |
-
|
6479 |
-
|
6480 |
-
|
6481 |
-
|
6482 |
-
|
6483 |
-
|
6484 |
-
|
6485 |
-
#:
|
6486 |
-
msgid "
|
6487 |
-
|
6488 |
-
|
6489 |
-
|
6490 |
-
|
6491 |
-
|
6492 |
-
|
6493 |
-
|
6494 |
-
|
6495 |
-
|
6496 |
-
|
6497 |
-
|
6498 |
-
|
6499 |
-
|
6500 |
-
|
6501 |
-
|
6502 |
-
|
6503 |
-
|
6504 |
-
|
6505 |
-
|
6506 |
-
|
6507 |
-
|
6508 |
-
|
6509 |
-
|
6510 |
-
|
6511 |
-
|
6512 |
-
|
6513 |
-
|
6514 |
-
|
6515 |
-
|
6516 |
-
|
6517 |
-
|
6518 |
-
msgid "Per User"
|
6519 |
-
msgstr "Por Usuario"
|
6520 |
-
|
6521 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:316 ../addons/sell-
|
6522 |
-
#: content/includes/mycred-sell-shortcodes.php:231
|
6523 |
-
msgid "Never"
|
6524 |
-
msgstr "Nunca"
|
6525 |
-
|
6526 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:322
|
6527 |
-
msgid "Expired"
|
6528 |
-
msgstr "Caducado"
|
6529 |
-
|
6530 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:326
|
6531 |
-
#, php-format
|
6532 |
-
msgid "In %s time"
|
6533 |
-
msgstr "En %s tiempo"
|
6534 |
-
|
6535 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:425
|
6536 |
-
msgid "Coupon Setup"
|
6537 |
-
msgstr "Configuración de Cupón"
|
6538 |
-
|
6539 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:434
|
6540 |
-
msgid "Coupon Limits"
|
6541 |
-
msgstr "Limites de Cupón"
|
6542 |
-
|
6543 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:443
|
6544 |
-
msgid "Coupon Requirements"
|
6545 |
-
msgstr "Requisitos de Cupón"
|
6546 |
-
|
6547 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:483
|
6548 |
-
#, php-format
|
6549 |
-
msgid "The amount of %plural% this coupon is worth."
|
6550 |
-
msgstr "La cantidad de %plural% que vale este cupón."
|
6551 |
-
|
6552 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:492
|
6553 |
-
msgid "Select the point type that this coupon is applied."
|
6554 |
-
msgstr "Elige el clase de puntos al cual este cupón se aplica."
|
6555 |
-
|
6556 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:504
|
6557 |
-
msgid "Expire"
|
6558 |
-
msgstr "Caducar"
|
6559 |
-
|
6560 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:506
|
6561 |
-
msgid "Optional date when this coupon expires. Expired coupons will be trashed."
|
6562 |
-
msgstr ""
|
6563 |
-
"La fecha opcional cuando este cupón caduca. Cupones caducados seran "
|
6564 |
-
"destrozado."
|
6565 |
-
|
6566 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:534
|
6567 |
-
msgid "Global Maximum"
|
6568 |
-
msgstr "Máximo Global"
|
6569 |
-
|
6570 |
-
#. not clear if this is referring to the maximum number of users or to the maximum "points" a user can have or accrue?
|
6571 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:541
|
6572 |
-
msgid "User Maximum"
|
6573 |
-
msgstr "Máximo Usuario"
|
6574 |
-
|
6575 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:543
|
6576 |
-
msgid "The maximum number of times this coupon can be used by a user."
|
6577 |
-
msgstr "El máximo numero de veces que se puede utilizadar este cupón por un usuario."
|
6578 |
-
|
6579 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:579
|
6580 |
-
msgid ""
|
6581 |
-
"Optional minimum balance a user must have in order to use this coupon. Use "
|
6582 |
-
"zero to disable."
|
6583 |
-
msgstr ""
|
6584 |
-
"Mínimo saldo opcional que el usuario debe tener para utilizar este cupón. "
|
6585 |
-
"Utilice cero para inhabilitar."
|
6586 |
-
|
6587 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:586
|
6588 |
-
msgid "Maximum Balance"
|
6589 |
-
msgstr "Saldo Máximo"
|
6590 |
-
|
6591 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:591
|
6592 |
-
msgid ""
|
6593 |
-
"Optional maximum balance a user can have in order to use this coupon. Use "
|
6594 |
-
"zero to disable."
|
6595 |
-
msgstr ""
|
6596 |
-
"Saldo máximo opcional que un usuario puede tener para usar este cupón. Ponga "
|
6597 |
-
"cero para desactivar."
|
6598 |
-
|
6599 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:665
|
6600 |
-
#, php-format
|
6601 |
-
msgid ""
|
6602 |
-
"Log entry for successful coupon redemption. Use %coupon% to show the coupon "
|
6603 |
-
"code."
|
6604 |
-
msgstr ""
|
6605 |
-
"Entrada del registro al exitoso canje del cupón. Utilice %coupon% para "
|
6606 |
-
"mostrar el código del cupón."
|
6607 |
-
|
6608 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:668
|
6609 |
-
msgid "Invalid Coupon Message"
|
6610 |
-
msgstr "Mensaje Cupón Invalido"
|
6611 |
-
|
6612 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:672
|
6613 |
-
msgid "Message to show when users try to use a coupon that does not exists."
|
6614 |
-
msgstr "Mostrar mensaje cuando los usuarios intenten usar un cupón que no existe."
|
6615 |
-
|
6616 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:675
|
6617 |
-
msgid "Expired Coupon Message"
|
6618 |
-
msgstr "Mensaje de Cupón Caducado"
|
6619 |
-
|
6620 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:679
|
6621 |
-
msgid "Message to show when users try to use that has expired."
|
6622 |
-
msgstr "Mostrar mensaje cuando los usuarios intenten usar lo que ha caducado."
|
6623 |
-
|
6624 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:682
|
6625 |
-
msgid "User Limit Message"
|
6626 |
-
msgstr "Mensaje de Límite de Usuario"
|
6627 |
-
|
6628 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:686
|
6629 |
-
msgid "Message to show when the user limit has been reached for the coupon."
|
6630 |
-
msgstr "Mostrar mensaje cuando el cupón alcanza su límite de usuarios."
|
6631 |
-
|
6632 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:689
|
6633 |
-
msgid "Minimum Balance Message"
|
6634 |
-
msgstr "Mensaje de Saldo Mínimo"
|
6635 |
-
|
6636 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:693
|
6637 |
-
msgid ""
|
6638 |
-
"Message to show when a user does not meet the minimum balance requirement. "
|
6639 |
-
"(if used)"
|
6640 |
-
msgstr ""
|
6641 |
-
"Mostrar mensaje cuando el usuario no cumple con el saldo mínimo requerido. "
|
6642 |
-
"(si se utiliza)"
|
6643 |
-
|
6644 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:696
|
6645 |
-
msgid "Maximum Balance Message"
|
6646 |
-
msgstr "Mensaje Saldo Máximo"
|
6647 |
-
|
6648 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:700
|
6649 |
-
msgid ""
|
6650 |
-
"Message to show when a user does not meet the maximum balance requirement. "
|
6651 |
-
"(if used)"
|
6652 |
-
msgstr ""
|
6653 |
-
"Mostrar mensaje cuando un usuario no alcanza el saldo máximo requerido. (si "
|
6654 |
-
"se utiliza)"
|
6655 |
-
|
6656 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:703
|
6657 |
-
msgid "Success Message"
|
6658 |
-
msgstr "Mensaje de éxito"
|
6659 |
-
|
6660 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:707
|
6661 |
-
msgid "Message to show when a coupon was successfully deposited to a users account."
|
6662 |
-
msgstr "Monstrar mensaje cuando un cupón se deposita con éxito en una cuenta usuaria."
|
6663 |
-
|
6664 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:199 ../addons/sell-
|
6665 |
-
#: content/myCRED-addon-sell-content.php:202 ../addons/sell-content/myCRED-addon-
|
6666 |
-
#: sell-content.php:293 ../addons/sell-content/myCRED-addon-sell-content.php:758
|
6667 |
-
msgid "Sell Content"
|
6668 |
-
msgstr "Vender Contenido"
|
6669 |
-
|
6670 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:214 ../addons/sell-
|
6671 |
-
#: content/myCRED-addon-sell-content.php:434
|
6672 |
-
msgid "Profit Share"
|
6673 |
-
msgstr "Reparto de Utilidades"
|
6674 |
-
|
6675 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:295
|
6676 |
-
msgid "Post Types"
|
6677 |
-
msgstr "Post Types"
|
6678 |
-
|
6679 |
-
#: ../addons/sell-content/includes/mycred-sell-shortcodes.php:187 ../addons/buy-
|
6680 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:669 ../addons/buy-
|
6681 |
-
#: creds/modules/buycred-module-pending.php:267 ../addons/buy-
|
6682 |
-
#: creds/modules/buycred-module-pending.php:614 ../addons/buy-
|
6683 |
-
#: creds/modules/buycred-module-pending.php:727 ../addons/buy-creds/gateways/bank-
|
6684 |
-
#: transfer.php:112
|
6685 |
-
msgid "Cost"
|
6686 |
-
msgstr "Coste"
|
6687 |
-
|
6688 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:156
|
6689 |
-
msgid "Select currency"
|
6690 |
-
msgstr "Elige moneda"
|
6691 |
-
|
6692 |
-
#. also, "Pago de Prueba" depending on context
|
6693 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:421 ..
|
6694 |
-
#: addons/buy-creds/gateways/bank-transfer.php:96
|
6695 |
-
msgid "Test Payment"
|
6696 |
-
msgstr "Probar Pago"
|
6697 |
-
|
6698 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:661 ..
|
6699 |
-
#: addons/buy-creds/gateways/bank-transfer.php:118
|
6700 |
-
#, php-format
|
6701 |
-
msgid "%s Purchase"
|
6702 |
-
msgstr "Compra %s"
|
6703 |
-
|
6704 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:762
|
6705 |
-
#, php-format
|
6706 |
-
msgid "Continue to %s"
|
6707 |
-
msgstr "Continuar a %s"
|
6708 |
-
|
6709 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:763 ..
|
6710 |
-
#: addons/buy-creds/gateways/bitpay.php:225
|
6711 |
-
msgid "Click here if you are not automatically redirected"
|
6712 |
-
msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
|
6713 |
-
|
6714 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1477
|
6715 |
-
msgid "January"
|
6716 |
-
msgstr "Enero"
|
6717 |
-
|
6718 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1478
|
6719 |
-
msgid "February"
|
6720 |
-
msgstr "Febrero"
|
6721 |
-
|
6722 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1479
|
6723 |
-
msgid "March"
|
6724 |
-
msgstr "Marzo"
|
6725 |
-
|
6726 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1480
|
6727 |
-
msgid "April"
|
6728 |
-
msgstr "Abril"
|
6729 |
-
|
6730 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1481
|
6731 |
-
msgid "May"
|
6732 |
-
msgstr "Mayo"
|
6733 |
-
|
6734 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1482
|
6735 |
-
msgid "June"
|
6736 |
-
msgstr "Junio"
|
6737 |
-
|
6738 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1483
|
6739 |
-
msgid "July"
|
6740 |
-
msgstr "Julio"
|
6741 |
-
|
6742 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1484
|
6743 |
-
msgid "August"
|
6744 |
-
msgstr "Agosto"
|
6745 |
-
|
6746 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1485
|
6747 |
-
msgid "September"
|
6748 |
-
msgstr "Septiembre"
|
6749 |
-
|
6750 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1486
|
6751 |
-
msgid "October"
|
6752 |
-
msgstr "Octubre"
|
6753 |
-
|
6754 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1487
|
6755 |
-
msgid "November"
|
6756 |
-
msgstr "Noviembre"
|
6757 |
-
|
6758 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1488
|
6759 |
-
msgid "December"
|
6760 |
-
msgstr "Diciembre"
|
6761 |
-
|
6762 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:135
|
6763 |
-
msgctxt "Post Type General Name"
|
6764 |
-
msgid "Pending Payments"
|
6765 |
-
msgstr "Pagos Pendientes"
|
6766 |
-
|
6767 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:136
|
6768 |
-
msgctxt "Post Type Singular Name"
|
6769 |
-
msgid "Pending Payment"
|
6770 |
-
msgstr "Pago Pendiente"
|
6771 |
-
|
6772 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:137 ../addons/buy-
|
6773 |
-
#: creds/modules/buycred-module-pending.php:139 ../addons/buy-
|
6774 |
-
#: creds/modules/buycred-module-pending.php:229 ../addons/buy-
|
6775 |
-
#: creds/modules/buycred-module-pending.php:230
|
6776 |
-
msgid "Pending Payments"
|
6777 |
-
msgstr "Pagos Pendientes"
|
6778 |
-
|
6779 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:143
|
6780 |
-
msgid "Edit Pending Payment"
|
6781 |
-
msgstr "Editar Pago Pendiente"
|
6782 |
-
|
6783 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:146 ../addons/buy-
|
6784 |
-
#: creds/modules/buycred-module-pending.php:147
|
6785 |
-
msgid "Not found in Trash"
|
6786 |
-
msgstr "No ha sido encontrado en la Papelera"
|
6787 |
-
|
6788 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:263 ../addons/buy-
|
6789 |
-
#: creds/modules/buycred-module-pending.php:724 ../addons/buy-
|
6790 |
-
#: creds/modules/buycred-module-core.php:733 ../addons/buy-creds/gateways/bank-
|
6791 |
-
#: transfer.php:113
|
6792 |
-
msgid "Transaction ID"
|
6793 |
-
msgstr "Identificación de la Transacción"
|
6794 |
-
|
6795 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:265 ../addons/buy-
|
6796 |
-
#: creds/modules/buycred-module-core.php:729
|
6797 |
-
msgid "Buyer"
|
6798 |
-
msgstr "Comprador"
|
6799 |
-
|
6800 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:268 ../addons/buy-
|
6801 |
-
#: creds/modules/buycred-module-pending.php:589 ../addons/buy-
|
6802 |
-
#: creds/modules/buycred-module-pending.php:725 ../addons/buy-
|
6803 |
-
#: creds/modules/buycred-module-core.php:728 ../addons/buy-creds/includes/buycred-
|
6804 |
-
#: functions.php:118
|
6805 |
-
msgid "Gateway"
|
6806 |
-
msgstr "Pasarela"
|
6807 |
-
|
6808 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:269
|
6809 |
-
msgid "Type"
|
6810 |
-
msgstr "Clase"
|
6811 |
-
|
6812 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:366 ../addons/buy-
|
6813 |
-
#: creds/modules/buycred-module-pending.php:471
|
6814 |
-
msgid "Pay Out"
|
6815 |
-
msgstr "Desembolso"
|
6816 |
-
|
6817 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:620 ../addons/buy-
|
6818 |
-
#: creds/gateways/bank-transfer.php:180 ../addons/buy-creds/gateways/bitpay.php:
|
6819 |
-
#: 251 ../addons/buy-creds/gateways/paypal-standard.php:279 ../addons/buy-
|
6820 |
-
#: creds/gateways/skrill.php:294
|
6821 |
-
msgid "Currency"
|
6822 |
-
msgstr "Moneda"
|
6823 |
-
|
6824 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:791
|
6825 |
-
msgid "No pending payments found"
|
6826 |
-
msgstr "Ningun pago pendiente encontrado"
|
6827 |
-
|
6828 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:28 ../addons/buy-
|
6829 |
-
#: creds/modules/buycred-module-core.php:29 ../addons/buy-creds/modules/buycred-
|
6830 |
-
#: module-core.php:30
|
6831 |
-
msgid "Payment Gateways"
|
6832 |
-
msgstr "Pasarela de Pago"
|
6833 |
-
|
6834 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:273
|
6835 |
-
msgid "Please login to purchase %_plural%"
|
6836 |
-
msgstr "Identifícate antes de comprar %_plural%"
|
6837 |
-
|
6838 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:288
|
6839 |
-
#, php-format
|
6840 |
-
msgid "Gift purchase from %display_name%."
|
6841 |
-
msgstr "Regalo comprado de parte de %display_name%."
|
6842 |
-
|
6843 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:307
|
6844 |
-
#, php-format
|
6845 |
-
msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
|
6846 |
-
msgstr ""
|
6847 |
-
"La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
|
6848 |
-
"a 1."
|
6849 |
-
|
6850 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:315
|
6851 |
-
msgid "Select the point types that users can buy. You must select at least one!"
|
6852 |
-
msgstr ""
|
6853 |
-
"Elige el clase de punto que el usuario puede comprar. Debes eligir al menos "
|
6854 |
-
"uno!"
|
6855 |
-
|
6856 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:326
|
6857 |
-
msgid "Login Template"
|
6858 |
-
msgstr "Plantilla de Ingreso"
|
6859 |
-
|
6860 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:330
|
6861 |
-
msgid "Content to show when a user is not logged in."
|
6862 |
-
msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
|
6863 |
-
|
6864 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:340
|
6865 |
-
msgid "Thank You Page"
|
6866 |
-
msgstr "Página de Agradecimiento"
|
6867 |
-
|
6868 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:343 ../addons/buy-
|
6869 |
-
#: creds/modules/buycred-module-core.php:366
|
6870 |
-
msgid "Custom URL"
|
6871 |
-
msgstr "URL Personalizada"
|
6872 |
-
|
6873 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:348 ../addons/buy-
|
6874 |
-
#: creds/modules/buycred-module-core.php:371
|
6875 |
-
msgid "Page"
|
6876 |
-
msgstr "Página"
|
6877 |
-
|
6878 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:363
|
6879 |
-
msgid "Cancellation Page"
|
6880 |
-
msgstr "Página de Cancelación"
|
6881 |
-
|
6882 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:386 ../addons/buy-
|
6883 |
-
#: creds/modules/buycred-module-core.php:489 ../addons/buy-creds/modules/buycred-
|
6884 |
-
#: module-core.php:740
|
6885 |
-
msgid "Purchase Log"
|
6886 |
-
msgstr "Registro de Compras"
|
6887 |
-
|
6888 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:388
|
6889 |
-
#, php-format
|
6890 |
-
msgid "Show seperate log for %_plural% purchases."
|
6891 |
-
msgstr "Mostrar registro distinto para compras de %_plural%."
|
6892 |
-
|
6893 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:390
|
6894 |
-
msgid "Gifting"
|
6895 |
-
msgstr "Regalar"
|
6896 |
-
|
6897 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:392
|
6898 |
-
#, php-format
|
6899 |
-
msgid "Allow users to buy %_plural% for other users."
|
6900 |
-
msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
|
6901 |
-
|
6902 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:393
|
6903 |
-
#, php-format
|
6904 |
-
msgid "Allow users to buy %_plural% for content authors."
|
6905 |
-
msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
|
6906 |
-
|
6907 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:488
|
6908 |
-
msgid "buyCRED Purchase Log"
|
6909 |
-
msgstr "compraCRED Registro de Compras"
|
6910 |
-
|
6911 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:533
|
6912 |
-
#, php-format
|
6913 |
-
msgid "%s Payment Gateways"
|
6914 |
-
msgstr "%s Pasarelas de Pago"
|
6915 |
-
|
6916 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:568
|
6917 |
-
msgid "Sandbox Mode"
|
6918 |
-
msgstr "Modo Entorno Aislado"
|
6919 |
-
|
6920 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:571
|
6921 |
-
msgid "Enable for test purchases."
|
6922 |
-
msgstr "Habilitar para compras de prueba."
|
6923 |
-
|
6924 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:591
|
6925 |
-
msgid "More Gateways"
|
6926 |
-
msgstr "Mas Pasarelas"
|
6927 |
-
|
6928 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:732
|
6929 |
-
msgid "Payed"
|
6930 |
-
msgstr "Pagado"
|
6931 |
-
|
6932 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:940
|
6933 |
-
msgid "No purchases found"
|
6934 |
-
msgstr "No se encontro ninguna compra"
|
6935 |
-
|
6936 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:1059
|
6937 |
-
msgid "Leave empty to use the default value."
|
6938 |
-
msgstr "Dejar vacio si va a utilizar el valor predefinido."
|
6939 |
-
|
6940 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:1266
|
6941 |
-
msgid "Buy Now"
|
6942 |
-
msgstr "Compra Ahora"
|
6943 |
-
|
6944 |
-
#: ../addons/buy-creds/gateways/bank-transfer.php:59 ../addons/buy-
|
6945 |
-
#: creds/gateways/bitpay.php:163 ../addons/buy-creds/gateways/netbilling.php:144 .
|
6946 |
-
#: ./addons/buy-creds/gateways/zombaio.php:219 ../addons/buy-
|
6947 |
-
#: creds/gateways/paypal-standard.php:207 ../addons/buy-creds/gateways/skrill.php:
|
6948 |
-
#: 186
|
6949 |
-
msgid "Please setup this gateway before attempting to make a purchase!"
|
6950 |
-
msgstr ""
|
6951 |
-
"¡Por favor configure esta puerta de enlace antes de intentar hacer una "
|
6952 |
-
"compra!"
|
6953 |
-
|
6954 |
-
#: ../addons/buy-creds/gateways/bank-transfer.php:186 ../addons/buy-
|
6955 |
-
#: creds/gateways/bitpay.php:265 ../addons/buy-creds/gateways/netbilling.php:234 .
|
6956 |
-
#: ./addons/buy-creds/gateways/paypal-standard.php:298 ../addons/buy-
|
6957 |
-
#: creds/gateways/skrill.php:320
|
6958 |
-
msgid "Exchange Rates"
|
6959 |
-
msgstr "Tipo de Cambio"
|
6960 |
-
|
6961 |
-
#: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
|
6962 |
-
#: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
|
6963 |
-
#: php:145 ../addons/buy-creds/gateways/skrill.php:124
|
6964 |
-
#, php-format
|
6965 |
-
msgid "Price mismatch. Expected: %s Received: %s"
|
6966 |
-
msgstr "Desajuste de precio. Esperaba: %s Recibido: %s"
|
6967 |
-
|
6968 |
-
#: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
|
6969 |
-
#: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
|
6970 |
-
#, php-format
|
6971 |
-
msgid "Currency mismatch. Expected: %s Received: %s"
|
6972 |
-
msgstr "Desajuste de moneda. Esperaba: %s Recibido: %s"
|
6973 |
-
|
6974 |
-
#: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
|
6975 |
-
#: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
|
6976 |
-
#: php:157 ../addons/buy-creds/gateways/skrill.php:136
|
6977 |
-
#, php-format
|
6978 |
-
msgid "Payment not completed. Received: %s"
|
6979 |
-
msgstr "Pago no cumplido. Recibido: %s"
|
6980 |
-
|
6981 |
-
#: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
|
6982 |
-
#: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/zombaio.php:189
|
6983 |
-
#: ../addons/buy-creds/gateways/paypal-standard.php:168 ../addons/buy-
|
6984 |
-
#: creds/gateways/skrill.php:147
|
6985 |
-
msgid "Failed to credit users account."
|
6986 |
-
msgstr "No se pudo creditar la cuenta del usuario."
|
6987 |
-
|
6988 |
-
#: ../addons/buy-creds/gateways/bitpay.php:208 ../addons/buy-
|
6989 |
-
#: creds/gateways/bitpay.php:219 ../addons/buy-creds/gateways/netbilling.php:190 .
|
6990 |
-
#: ./addons/buy-creds/gateways/zombaio.php:249 ../addons/buy-
|
6991 |
-
#: creds/gateways/paypal-standard.php:261 ../addons/buy-creds/gateways/skrill.php:
|
6992 |
-
#: 275
|
6993 |
-
msgid "Processing payment …"
|
6994 |
-
msgstr "Procesando el pago …"
|
6995 |
-
|
6996 |
-
#: ../addons/buy-creds/gateways/bitpay.php:211
|
6997 |
-
msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
|
6998 |
-
msgstr ""
|
6999 |
-
"¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con "
|
7000 |
-
"el administrador del sitio!"
|
7001 |
-
|
7002 |
-
#: ../addons/buy-creds/gateways/bitpay.php:212
|
7003 |
-
msgid "Bitpay returned the following error message:"
|
7004 |
-
msgstr "Bitpay comunico este mensaje de error:"
|
7005 |
-
|
7006 |
-
#: ../addons/buy-creds/gateways/bitpay.php:254
|
7007 |
-
msgid "Currency Code"
|
7008 |
-
msgstr "Código de Moneda"
|
7009 |
-
|
7010 |
-
#: ../addons/buy-creds/gateways/bitpay.php:258 ../addons/buy-
|
7011 |
-
#: creds/gateways/netbilling.php:227 ../addons/buy-creds/gateways/paypal-standard.
|
7012 |
-
#: php:291 ../addons/buy-creds/gateways/skrill.php:313
|
7013 |
-
msgid "Item Name"
|
7014 |
-
msgstr "Nombre de Artículo"
|
7015 |
-
|
7016 |
-
#: ../addons/buy-creds/gateways/bitpay.php:262 ../addons/buy-
|
7017 |
-
#: creds/gateways/netbilling.php:231 ../addons/buy-creds/gateways/paypal-standard.
|
7018 |
-
#: php:295 ../addons/buy-creds/gateways/skrill.php:317
|
7019 |
-
msgid "Description of the item being purchased by the user."
|
7020 |
-
msgstr "Descripción del artículo que el usuario esta comprando."
|
7021 |
-
|
7022 |
-
#: ../addons/buy-creds/gateways/bitpay.php:269
|
7023 |
-
msgid "Transaction Speed"
|
7024 |
-
msgstr "Velocidad de la Transacción"
|
7025 |
-
|
7026 |
-
#: ../addons/buy-creds/gateways/bitpay.php:276
|
7027 |
-
msgid "High"
|
7028 |
-
msgstr "Alto"
|
7029 |
-
|
7030 |
-
#: ../addons/buy-creds/gateways/bitpay.php:277
|
7031 |
-
msgid "Medium"
|
7032 |
-
msgstr "Medio"
|
7033 |
-
|
7034 |
-
#: ../addons/buy-creds/gateways/bitpay.php:278
|
7035 |
-
msgid "Low"
|
7036 |
-
msgstr "Bajo"
|
7037 |
-
|
7038 |
-
#: ../addons/buy-creds/gateways/bitpay.php:291
|
7039 |
-
msgid "Full Notifications"
|
7040 |
-
msgstr "Notificaciones Completas"
|
7041 |
-
|
7042 |
-
#: ../addons/buy-creds/gateways/netbilling.php:208
|
7043 |
-
msgid "Account ID"
|
7044 |
-
msgstr "ID de la Cuenta"
|
7045 |
-
|
7046 |
-
#: ../addons/buy-creds/gateways/netbilling.php:214
|
7047 |
-
msgid "Site Tag"
|
7048 |
-
msgstr "Etiqueta (tag) del Sitio"
|
7049 |
-
|
7050 |
-
#: ../addons/buy-creds/gateways/netbilling.php:220
|
7051 |
-
msgid "Order Integrity Key"
|
7052 |
-
msgstr "Clave de Integridad del Pedido"
|
7053 |
-
|
7054 |
-
#: ../addons/buy-creds/gateways/netbilling.php:224
|
7055 |
-
msgid "Found under Step 12 on the Fraud Defense page."
|
7056 |
-
msgstr "Se encuentra en Paso 12 de la página sobre Defensa contra Fraude."
|
7057 |
-
|
7058 |
-
#: ../addons/buy-creds/gateways/netbilling.php:238
|
7059 |
-
msgid "Postback CGI URL"
|
7060 |
-
msgstr "Devolución de la URL CGI"
|
7061 |
-
|
7062 |
-
#: ../addons/buy-creds/gateways/netbilling.php:242
|
7063 |
-
msgid ""
|
7064 |
-
"For this gateway to work, you must login to your NETbilling account and edit "
|
7065 |
-
"your site. Under \"Default payment form settings\" make sure the Postback CGI "
|
7066 |
-
"URL is set to the above address and \"Return method\" is set to POST."
|
7067 |
-
msgstr ""
|
7068 |
-
"Para que esta pasarela de pago funcione, deberia acceder a su cuenta "
|
7069 |
-
"NETbilling y editar su sitio web. En \"Configuración de Formularios "
|
7070 |
-
"Predefinido\" asegúrese de que la devolución de la URL CGI esta ajustada a la "
|
7071 |
-
"dirección indicada arriba y \"Método de Retorno\" está ajustado a POST."
|
7072 |
-
|
7073 |
-
#: ../addons/buy-creds/gateways/netbilling.php:290
|
7074 |
-
msgid "Incorrect Credit Card number"
|
7075 |
-
msgstr "Número de Tarjeta de Crédito Incorrecta"
|
7076 |
-
|
7077 |
-
#: ../addons/buy-creds/gateways/netbilling.php:296
|
7078 |
-
msgid "The credit card entered is past its expiration date."
|
7079 |
-
msgstr "La tarjeta de crédito ha pasado su fecha de vencimiento."
|
7080 |
-
|
7081 |
-
#: ../addons/buy-creds/gateways/netbilling.php:299
|
7082 |
-
msgid "The CVV2 number entered is not valid."
|
7083 |
-
msgstr "El numero CVV2 teclado no es valido."
|
7084 |
-
|
7085 |
-
#: ../addons/buy-creds/gateways/netbilling.php:306
|
7086 |
-
msgid "The bank routing number entered is not valid."
|
7087 |
-
msgstr "El número de ruta bancaria introducido no es valido."
|
7088 |
-
|
7089 |
-
#: ../addons/buy-creds/gateways/netbilling.php:310
|
7090 |
-
msgid "The bank account number entered is not valid."
|
7091 |
-
msgstr "La cuenta bancaria introducida no es valida."
|
7092 |
-
|
7093 |
-
#: ../addons/buy-creds/gateways/zombaio.php:155
|
7094 |
-
#, php-format
|
7095 |
-
msgid "Duplicate transaction. Received: %s"
|
7096 |
-
msgstr "Transacción duplicado. Recibido: %s"
|
7097 |
-
|
7098 |
-
#: ../addons/buy-creds/gateways/zombaio.php:161
|
7099 |
-
#, php-format
|
7100 |
-
msgid "Live transaction while debug mode is enabled! Received: %s"
|
7101 |
-
msgstr "Depuración de transacciones en vivo esta habilitado! Recibido: %s"
|
7102 |
-
|
7103 |
-
#: ../addons/buy-creds/gateways/zombaio.php:267
|
7104 |
-
msgid "Site ID"
|
7105 |
-
msgstr "ID del Sitio de web"
|
7106 |
-
|
7107 |
-
#. or "Contraseña de GW" not clear based on lack of context
|
7108 |
-
#: ../addons/buy-creds/gateways/zombaio.php:273
|
7109 |
-
msgid "GW Password"
|
7110 |
-
msgstr "Contraseña GW"
|
7111 |
-
|
7112 |
-
#: ../addons/buy-creds/gateways/zombaio.php:279
|
7113 |
-
msgid "Pricing ID"
|
7114 |
-
msgstr "ID de Precios"
|
7115 |
-
|
7116 |
-
#: ../addons/buy-creds/gateways/zombaio.php:285 ../addons/buy-
|
7117 |
-
#: creds/gateways/skrill.php:338
|
7118 |
-
msgid "Logo URL"
|
7119 |
-
msgstr "URL del Logotipo"
|
7120 |
-
|
7121 |
-
#: ../addons/buy-creds/gateways/zombaio.php:291
|
7122 |
-
msgid "IP Verification"
|
7123 |
-
msgstr "Verificación de IP"
|
7124 |
-
|
7125 |
-
#: ../addons/buy-creds/gateways/zombaio.php:294
|
7126 |
-
msgid "Do not verify that callbacks are coming from Zombaio."
|
7127 |
-
msgstr "No verifique que las devoluciónes de llamadas proceden de Zombaio."
|
7128 |
-
|
7129 |
-
#: ../addons/buy-creds/gateways/zombaio.php:297
|
7130 |
-
msgid "Language"
|
7131 |
-
msgstr "Lengua"
|
7132 |
-
|
7133 |
-
#: ../addons/buy-creds/gateways/zombaio.php:304
|
7134 |
-
msgid "Postback URL (ZScript)"
|
7135 |
-
msgstr "Devolución de la URL (ZScript)"
|
7136 |
-
|
7137 |
-
#: ../addons/buy-creds/gateways/zombaio.php:308
|
7138 |
-
msgid ""
|
7139 |
-
"For this gateway to work, login to ZOA and set the Postback URL to the above "
|
7140 |
-
"address and click validate."
|
7141 |
-
msgstr ""
|
7142 |
-
"Para que esta puerta de enlace funcione, ingrese en ZOA y ajuste la "
|
7143 |
-
"devolución de datos de la URL a la dirección que se encuentra arriba y haga "
|
7144 |
-
"clic sobre validar."
|
7145 |
-
|
7146 |
-
#: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
|
7147 |
-
#: creds/gateways/skrill.php:171
|
7148 |
-
msgid "Success"
|
7149 |
-
msgstr "Exito"
|
7150 |
-
|
7151 |
-
#: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
|
7152 |
-
#: creds/gateways/skrill.php:172
|
7153 |
-
msgid "Thank you for your purchase"
|
7154 |
-
msgstr "Gracias por su compra"
|
7155 |
-
|
7156 |
-
#: ../addons/buy-creds/gateways/paypal-standard.php:285
|
7157 |
-
msgid "Account Email"
|
7158 |
-
msgstr "Cuenta de Correo Electrónico"
|
7159 |
-
|
7160 |
-
#: ../addons/buy-creds/gateways/skrill.php:226
|
7161 |
-
msgid "Return to "
|
7162 |
-
msgstr "Volver a"
|
7163 |
-
|
7164 |
-
#: ../addons/buy-creds/gateways/skrill.php:258
|
7165 |
-
msgid "Product:"
|
7166 |
-
msgstr "Producto:"
|
7167 |
-
|
7168 |
-
#: ../addons/buy-creds/gateways/skrill.php:267
|
7169 |
-
msgid "Gift to:"
|
7170 |
-
msgstr "Regalar a:"
|
7171 |
-
|
7172 |
-
#: ../addons/buy-creds/gateways/skrill.php:268
|
7173 |
-
msgid "(author)"
|
7174 |
-
msgstr "(autor)"
|
7175 |
-
|
7176 |
-
#: ../addons/buy-creds/gateways/skrill.php:301
|
7177 |
-
msgid "Merchant Account Email"
|
7178 |
-
msgstr "Correo electrónico de la Cuenta Comerciante"
|
7179 |
-
|
7180 |
-
#: ../addons/buy-creds/gateways/skrill.php:307
|
7181 |
-
msgid "Secret Word"
|
7182 |
-
msgstr "Palabra Secreta"
|
7183 |
-
|
7184 |
-
#: ../addons/buy-creds/gateways/skrill.php:324
|
7185 |
-
msgid "Confirmation Email"
|
7186 |
-
msgstr "Correo electrónico de confirmación"
|
7187 |
-
|
7188 |
-
#: ../addons/buy-creds/gateways/skrill.php:327
|
7189 |
-
msgid "Ask Skrill to send me a confirmation email for each successful purchase."
|
7190 |
-
msgstr ""
|
7191 |
-
"Pide a Skrill que me mande un email de confirmación para cada compra "
|
7192 |
-
"finalizada con éxito."
|
7193 |
-
|
7194 |
-
#: ../addons/buy-creds/gateways/skrill.php:330
|
7195 |
-
msgid "Checkout Page"
|
7196 |
-
msgstr "Página de Pago"
|
7197 |
-
|
7198 |
-
#: ../addons/buy-creds/gateways/skrill.php:335
|
7199 |
-
msgid "If left empty, your account email is used as title on the Skill Payment Page."
|
7200 |
-
msgstr ""
|
7201 |
-
"Si se deja vacío, el correo electrónico de su cuenta sera utilizada como "
|
7202 |
-
"título en la Página de Pagos Skrill. "
|
7203 |
-
|
7204 |
-
#: ../addons/buy-creds/gateways/skrill.php:340
|
7205 |
-
msgid ""
|
7206 |
-
"The URL to the image you want to use on the top of the gateway. For best "
|
7207 |
-
"integration results we recommend you use logos with dimensions up to 200px "
|
7208 |
-
"in width and 50px in height."
|
7209 |
-
msgstr ""
|
7210 |
-
"La URL de la imagen que quieres usar en la encima de la pasarela de pago. "
|
7211 |
-
"Para obtener la mejor integración recomendamos que uses logotipos con "
|
7212 |
-
"dimensiones de hasta 200 píxeles de ancho y 50 px de altura."
|
7213 |
-
|
7214 |
-
#: ../addons/buy-creds/gateways/skrill.php:343
|
7215 |
-
msgid "Confirmation Note"
|
7216 |
-
msgstr "Nota de Confirmación"
|
7217 |
-
|
7218 |
-
#: ../addons/buy-creds/gateways/skrill.php:345
|
7219 |
-
msgid ""
|
7220 |
-
"Optional text to show user once a transaction has been successfully "
|
7221 |
-
"completed. This text is shown by Skrill."
|
7222 |
-
msgstr ""
|
7223 |
-
"Texto opcional a mostrar al usuario cuando la transacción haya sido "
|
7224 |
-
"completado con éxito. Este texto sera mostrado por Skrill."
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: myCRED\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
+
"POT-Creation-Date: 2016-10-21 06:01+0000\n"
|
6 |
+
"PO-Revision-Date: 2016-10-21 06:01+0000\n"
|
7 |
+
"Last-Translator: mycreddemo <gabriel.s@merovingi.com>\n"
|
8 |
+
"Language-Team: Spanish (Spain)\n"
|
9 |
+
"Language: es-ES\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
18 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
19 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
20 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
21 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
+
"X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
|
23 |
+
"content/plugins/mycred\n"
|
24 |
+
"X-Poedit-SearchPath-1: .\n"
|
25 |
+
"X-Loco-Target-Locale: es_ES"
|
26 |
+
|
27 |
+
#: abstracts/mycred-abstract-hook.php:284
|
28 |
+
msgid "/ Day"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: abstracts/mycred-abstract-hook.php:285
|
32 |
+
msgid "/ Week"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: abstracts/mycred-abstract-hook.php:286
|
36 |
+
msgid "/ Month"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: abstracts/mycred-abstract-hook.php:287
|
40 |
+
msgid "in Total"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: modules/mycred-module-management.php:184
|
44 |
+
msgid "Balance successfully updated"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: modules/mycred-module-management.php:189
|
48 |
+
msgid "Request declined"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: modules/mycred-module-management.php:224
|
52 |
+
msgid "No recent activity found."
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: modules/mycred-module-management.php:237
|
56 |
+
#: modules/mycred-module-management.php:773 modules/mycred-module-log.php:93
|
57 |
+
#: modules/mycred-module-log.php:922
|
58 |
+
#: includes/classes/class.query-export.php:263
|
59 |
+
#: includes/classes/class.query-export.php:360
|
60 |
+
#: includes/classes/class.query-log.php:382
|
61 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:96
|
62 |
+
msgid "Reference"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: modules/mycred-module-management.php:280
|
66 |
+
msgid "View complete history"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: modules/mycred-module-management.php:553
|
70 |
+
msgid "Balances"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: modules/mycred-module-management.php:745
|
74 |
+
#: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
|
75 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1362
|
76 |
+
msgid "Username"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: modules/mycred-module-management.php:757
|
80 |
+
msgid "Total Balance"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: modules/mycred-module-management.php:783
|
84 |
+
msgid "Log under a custom reference"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: modules/mycred-module-management.php:789
|
88 |
+
msgid "lowercase without empty spaces"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: modules/mycred-module-management.php:802
|
92 |
+
msgid "Update"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: modules/mycred-module-management.php:805
|
96 |
+
msgid "Recent Activity"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: modules/mycred-module-settings.php:240
|
100 |
+
msgid "Invalid decimal value."
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: modules/mycred-module-settings.php:290
|
104 |
+
msgid "Log Updated"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: modules/mycred-module-settings.php:433
|
108 |
+
msgid ""
|
109 |
+
"In order to adjust the number of decimal places you want to use we must "
|
110 |
+
"update your log. It is highly recommended that you backup your current log "
|
111 |
+
"before continuing!"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: modules/mycred-module-settings.php:458
|
115 |
+
msgid "Update Database"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: modules/mycred-module-settings.php:469
|
119 |
+
#: modules/mycred-module-settings.php:481
|
120 |
+
msgid "No decimals"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: modules/mycred-module-settings.php:493
|
124 |
+
msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: modules/mycred-module-settings.php:529 modules/mycred-module-addons.php:368
|
128 |
+
msgid "Documentation"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: modules/mycred-module-settings.php:547 includes/mycred-setup.php:279
|
132 |
+
msgid "Singular"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: modules/mycred-module-settings.php:548
|
136 |
+
#: modules/mycred-module-settings.php:554
|
137 |
+
#: modules/mycred-module-settings.php:604
|
138 |
+
#: modules/mycred-module-settings.php:611
|
139 |
+
#: modules/mycred-module-settings.php:798
|
140 |
+
#: modules/mycred-module-settings.php:804 includes/mycred-setup.php:280
|
141 |
+
#: includes/mycred-setup.php:286 includes/mycred-setup.php:333
|
142 |
+
#: includes/mycred-setup.php:340
|
143 |
+
#: addons/banking/services/mycred-service-central.php:111
|
144 |
+
#: addons/banking/services/mycred-service-interest.php:482
|
145 |
+
#: addons/banking/services/mycred-service-interest.php:500
|
146 |
+
msgid "Required"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: modules/mycred-module-settings.php:553 includes/mycred-setup.php:285
|
150 |
+
msgid "Plural"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: modules/mycred-module-settings.php:558 includes/mycred-setup.php:290
|
154 |
+
msgid ""
|
155 |
+
"These labels are used throughout the admin area and when presenting points "
|
156 |
+
"to your users."
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: modules/mycred-module-settings.php:590
|
160 |
+
msgid "Set decimals to zero if you prefer to use whole numbers."
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: modules/mycred-module-settings.php:592
|
164 |
+
msgid ""
|
165 |
+
"As this is your main point type, the value you select here will be the "
|
166 |
+
"largest number of decimals your installation will support."
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: modules/mycred-module-settings.php:603 includes/mycred-setup.php:332
|
170 |
+
msgid "Point Editors"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: modules/mycred-module-settings.php:605 includes/mycred-setup.php:334
|
174 |
+
msgid "The capability of users who can edit balances."
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: modules/mycred-module-settings.php:610 includes/mycred-setup.php:339
|
178 |
+
msgid "Point Administrators"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: modules/mycred-module-settings.php:612 includes/mycred-setup.php:341
|
182 |
+
msgid "The capability of users who can edit settings."
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: modules/mycred-module-settings.php:618 includes/mycred-setup.php:346
|
186 |
+
msgid "Max. Amount"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: modules/mycred-module-settings.php:620 includes/mycred-setup.php:348
|
190 |
+
msgid "The maximum amount allowed to be paid out in a single instance."
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: modules/mycred-module-settings.php:625 includes/mycred-setup.php:353
|
194 |
+
msgid "Exclude by User ID"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: modules/mycred-module-settings.php:626 includes/mycred-setup.php:354
|
198 |
+
msgid "Optional"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: modules/mycred-module-settings.php:627 includes/mycred-setup.php:355
|
202 |
+
msgid "Comma separated list of user IDs to exclude from using this point type."
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: modules/mycred-module-settings.php:631 includes/mycred-setup.php:359
|
206 |
+
msgid "Exclude point editors"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: modules/mycred-module-settings.php:634 includes/mycred-setup.php:362
|
210 |
+
msgid "Exclude point administrators"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: modules/mycred-module-settings.php:644
|
214 |
+
msgid "Other Settings"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: modules/mycred-module-settings.php:696
|
218 |
+
msgid "Balance Meta Key"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: modules/mycred-module-settings.php:809
|
222 |
+
msgid ""
|
223 |
+
"The meta key must be lowercase and only contain letters or underscores. All "
|
224 |
+
"other characters will be deleted!"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: modules/mycred-module-addons.php:275
|
228 |
+
msgid ""
|
229 |
+
"Gives you access to your myCRED Statistics based on your users gains and "
|
230 |
+
"loses."
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: modules/mycred-module-addons.php:330
|
234 |
+
msgid "Get More Add-ons"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: modules/mycred-module-log.php:215
|
238 |
+
msgid "Invalid or empty reference"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: modules/mycred-module-log.php:220
|
242 |
+
msgid "Log Entry cannot be empty"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: modules/mycred-module-log.php:241
|
246 |
+
msgid "Could not save the new log entry"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: modules/mycred-module-log.php:262
|
250 |
+
msgid "Log entry successfully updated"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: modules/mycred-module-log.php:307
|
254 |
+
msgid "1 Entry Deleted"
|
255 |
+
msgid_plural "%d Entries Deleted"
|
256 |
+
msgstr[0] ""
|
257 |
+
msgstr[1] ""
|
258 |
+
|
259 |
+
#: modules/mycred-module-log.php:469
|
260 |
+
msgid "The log entry was successfully updated."
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: modules/mycred-module-log.php:470
|
264 |
+
msgid "The selected log entry could not be deleted."
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: modules/mycred-module-log.php:507
|
268 |
+
msgctxt "e.g. Log entries from April 12th 2016"
|
269 |
+
msgid "Log entries from %s"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: modules/mycred-module-log.php:565
|
273 |
+
msgid ""
|
274 |
+
"Warning. The required Mcrypt PHP Library is not installed on this server! "
|
275 |
+
"Certain hooks and shortcodes will not work correctly!"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: modules/mycred-module-log.php:929
|
279 |
+
msgid "Original Entry"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: modules/mycred-module-log.php:941
|
283 |
+
msgid "Delete Entry"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: modules/mycred-module-log.php:946
|
287 |
+
msgid "Update Entry"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: modules/mycred-module-network.php:141
|
291 |
+
msgid "I am sorry but your network is too big to use these features."
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: modules/mycred-module-export.php:358
|
295 |
+
msgid "Make both format options available."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: modules/mycred-module-export.php:360
|
299 |
+
msgid "Exports"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: modules/mycred-module-export.php:366
|
303 |
+
msgid "Front End Exports"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: modules/mycred-module-export.php:382 modules/mycred-module-export.php:430
|
307 |
+
msgid "Export Format"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: modules/mycred-module-export.php:398 modules/mycred-module-export.php:446
|
311 |
+
msgid "File Name"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: modules/mycred-module-export.php:407
|
315 |
+
msgid ""
|
316 |
+
"If enabled, users will only be able to export their own log entries! Export "
|
317 |
+
"tools becomes available wherever you are using the mycred_history shortcode "
|
318 |
+
"or in the users profile."
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: modules/mycred-module-export.php:414
|
322 |
+
msgid "Back End Exports"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: modules/mycred-module-export.php:455
|
326 |
+
msgid ""
|
327 |
+
"Raw format should be used when you intend to use the export tool to backup "
|
328 |
+
"or import entries in another installation. Formatted exports reflect what "
|
329 |
+
"users see in their history archive."
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: modules/mycred-module-buddypress.php:350
|
333 |
+
msgid "Show:"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: modules/mycred-module-buddypress.php:444
|
337 |
+
msgid "Members and visitors can view other members %_singular% balance."
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: plugins/mycred-hook-wp-postratings.php:15
|
341 |
+
msgid "Post Ratings"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: plugins/mycred-hook-wp-postratings.php:16
|
345 |
+
msgid ""
|
346 |
+
"Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
|
347 |
+
"author and the user rating."
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: plugins/mycred-hook-wp-postratings.php:84
|
351 |
+
msgid "Based on rating"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: plugins/mycred-hook-wp-postratings.php:159
|
355 |
+
#: includes/classes/class.query-log.php:1628
|
356 |
+
msgid "Adding a Rating"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: plugins/mycred-hook-wp-postratings.php:169
|
360 |
+
#: plugins/mycred-hook-wp-postratings.php:188
|
361 |
+
msgid "Use the Rating Value instead of the amount set here."
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: plugins/mycred-hook-wp-postratings.php:178
|
365 |
+
#: includes/classes/class.query-log.php:1629
|
366 |
+
msgid "Receiving a Rating"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: plugins/mycred-hook-buddypress.php:610
|
370 |
+
msgid "New Profile Activity"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: plugins/mycred-hook-buddypress.php:627
|
374 |
+
msgid "Deleted Profile Activity"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: plugins/mycred-hook-buddypress.php:644
|
378 |
+
msgid "New Profile Avatar"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: plugins/mycred-hook-buddypress.php:661
|
382 |
+
msgid "New Profile Cover Image"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: plugins/mycred-hook-buddypress.php:688
|
386 |
+
msgid ""
|
387 |
+
"Users with zero balance can not add friends. Requires that you deduct "
|
388 |
+
"%_plural% for adding a new friend."
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: plugins/mycred-hook-buddypress.php:698
|
392 |
+
msgid "Ending Friendship"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: plugins/mycred-hook-buddypress.php:711
|
396 |
+
msgid "New Comment"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: plugins/mycred-hook-buddypress.php:741
|
400 |
+
msgid "Favorit Activity"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: plugins/mycred-hook-buddypress.php:758
|
404 |
+
msgid "Removing Favorit Activity"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: plugins/mycred-hook-buddypress.php:771
|
408 |
+
msgid "New Private Message"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: plugins/mycred-hook-buddypress.php:1564
|
412 |
+
msgid "%plural% for New Cover Image"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: plugins/mycred-hook-affiliatewp.php:15
|
416 |
+
msgid "AffiliateWP"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: plugins/mycred-hook-affiliatewp.php:16
|
420 |
+
msgid ""
|
421 |
+
"Awards %_plural% for affiliate signups, referring visitors and store sale "
|
422 |
+
"referrals."
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: plugins/mycred-hook-affiliatewp.php:222
|
426 |
+
msgid "Affiliate Signup"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: plugins/mycred-hook-affiliatewp.php:252
|
430 |
+
msgid "Referring Sales"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: plugins/mycred-hook-affiliatewp.php:255
|
434 |
+
msgid "Pay a set amount for all referrals."
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: plugins/mycred-hook-affiliatewp.php:256
|
438 |
+
msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: plugins/mycred-hook-affiliatewp.php:257
|
442 |
+
msgid "Apply an exchange rate against the referral amount."
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: plugins/mycred-hook-affiliatewp.php:265
|
446 |
+
msgid "Log template - Payout"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: plugins/mycred-hook-affiliatewp.php:270
|
450 |
+
msgid "Log template - Refund"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:234
|
454 |
+
msgid "Authors Content added to favorites"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:265
|
458 |
+
msgid "Removing Content from Favorites (Author)"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: plugins/mycred-hook-bbPress.php:540
|
462 |
+
msgid "Show users %_plural% balance in their bbPress profiles."
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: includes/mycred-setup.php:106
|
466 |
+
msgid ""
|
467 |
+
"Before you can begin using %s, you must setup your first point type. This "
|
468 |
+
"includes what you want to call your points, how these points are presented "
|
469 |
+
"and who has access to it."
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: includes/mycred-setup.php:111
|
473 |
+
msgid "Your First Point Type"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: includes/mycred-setup.php:127
|
477 |
+
msgid "Advanced Settings"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: includes/mycred-setup.php:133
|
481 |
+
msgid "Change Default Point Type Key"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: includes/mycred-setup.php:135
|
485 |
+
msgid ""
|
486 |
+
"You can change the meta key used to store the default point type using the "
|
487 |
+
"MYCRED_DEFAULT_TYPE_KEY constant. Copy the above code to your wp-config.php "
|
488 |
+
"file to use."
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: includes/mycred-setup.php:136
|
492 |
+
msgid ""
|
493 |
+
"If you intend to change the default meta key, you should do so before "
|
494 |
+
"continuing on in this setup!"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: includes/mycred-setup.php:139
|
498 |
+
msgid "Whitelabel"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: includes/mycred-setup.php:141
|
502 |
+
msgid ""
|
503 |
+
"You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
|
504 |
+
"above code to your wp-config.php file to use."
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: includes/mycred-setup.php:149
|
508 |
+
msgid "Create Point Type"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: includes/mycred-setup.php:149
|
512 |
+
msgid "Hide"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: includes/mycred-setup.php:149 includes/mycred-setup.php:149
|
516 |
+
msgid "Advanced"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: includes/mycred-setup.php:155
|
520 |
+
msgid "Processing ..."
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: includes/mycred-setup.php:160
|
524 |
+
msgid "Setup Complete!"
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: includes/mycred-setup.php:161
|
528 |
+
msgid "Congratulations! You are now ready to use myCRED. What's next?"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: includes/mycred-setup.php:166
|
532 |
+
msgid "Enabling Hooks"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: includes/mycred-setup.php:167
|
536 |
+
msgid ""
|
537 |
+
"If you intend to give your users points for interacting with your website "
|
538 |
+
"automatically, your next step should be to enable and setup the hooks you "
|
539 |
+
"want to use."
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: includes/mycred-setup.php:168
|
543 |
+
msgid "Setup Hooks"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: includes/mycred-setup.php:172
|
547 |
+
msgid ""
|
548 |
+
"If you want to use advanced features such as Transfers, Point Purchases etc. "
|
549 |
+
"your next step should be to enable and setup your add-ons."
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: includes/mycred-setup.php:173
|
553 |
+
msgid "Setup Add-ons"
|
554 |
+
msgstr ""
|
555 |
+
|
556 |
+
#: includes/mycred-setup.php:176
|
557 |
+
msgid "Adjust Settings"
|
558 |
+
msgstr ""
|
559 |
+
|
560 |
+
#: includes/mycred-setup.php:177
|
561 |
+
msgid ""
|
562 |
+
"If you need to make further changes to your settings or add new point types, "
|
563 |
+
"you can visit your default point type's settings."
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: includes/mycred-setup.php:178
|
567 |
+
msgid "View Settings"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: includes/mycred-setup.php:322
|
571 |
+
msgid "Set to decimals to zero if you prefer to use whole numbers."
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: includes/mycred-setup.php:442
|
575 |
+
msgid "Please make sure you fill out all required fields!"
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: includes/mycred-remote.php:619
|
579 |
+
msgid "16, 24 or 32 characters"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: includes/mycred-install.php:63
|
583 |
+
msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: includes/mycred-install.php:68
|
587 |
+
msgid "myCRED requires PHP 5.3 or higher. Version detected: "
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: includes/mycred-widgets.php:22
|
591 |
+
msgid "Show the current users balance and history."
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: includes/mycred-widgets.php:192
|
595 |
+
msgid "Balance Layout"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: includes/mycred-widgets.php:285
|
599 |
+
msgid "Leaderboard based on instances or balances."
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: includes/mycred-widgets.php:419
|
603 |
+
msgid "Timeframe"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: includes/mycred-widgets.php:421
|
607 |
+
msgid ""
|
608 |
+
"Option to limit the leaderboard based on a specific timeframe. Leave empty "
|
609 |
+
"if not used."
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: includes/mycred-widgets.php:472
|
613 |
+
msgid "Shows multiple balances."
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: includes/mycred-functions.php:2678
|
617 |
+
msgid "per day"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: includes/mycred-functions.php:2680
|
621 |
+
msgid "per week"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: includes/mycred-functions.php:2682
|
625 |
+
msgid "per month"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: includes/mycred-functions.php:2684
|
629 |
+
msgid "in total"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: includes/mycred-functions.php:2686 includes/mycred-functions.php:2690
|
633 |
+
msgid "Maximum once"
|
634 |
+
msgid_plural "Maximum %d times"
|
635 |
+
msgstr[0] ""
|
636 |
+
msgstr[1] ""
|
637 |
+
|
638 |
+
#: includes/mycred-functions.php:2717
|
639 |
+
msgctxt "ex. 21st."
|
640 |
+
msgid "%dst"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: includes/mycred-functions.php:2724
|
644 |
+
msgctxt "ex. 32nd."
|
645 |
+
msgid "%dnd"
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: includes/mycred-functions.php:2731
|
649 |
+
msgctxt "ex. 43rd."
|
650 |
+
msgid "%drd"
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: includes/mycred-functions.php:2742
|
654 |
+
msgctxt "ex. 50th"
|
655 |
+
msgid "%dth"
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: includes/shortcodes/mycred_exchange.php:27
|
659 |
+
#: includes/shortcodes/mycred_hook_table.php:24
|
660 |
+
msgid "Point type not found."
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: includes/shortcodes/mycred_hook_table.php:21
|
664 |
+
msgid "No instances found for this point type"
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: includes/shortcodes/mycred_hook_table.php:79
|
668 |
+
msgid "Instance"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: includes/classes/class.query-export.php:263
|
672 |
+
msgid "Reference ID"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: includes/classes/class.query-export.php:263
|
676 |
+
msgid "Data"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: includes/classes/class.query-export.php:464
|
680 |
+
msgid "Export log entries raw"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: includes/classes/class.query-export.php:465
|
684 |
+
msgid "Export log entries formatted"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: includes/classes/class.query-export.php:482
|
688 |
+
msgid "All Log Entries"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: includes/classes/class.query-export.php:492
|
692 |
+
msgid "Users Log Entries"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: includes/classes/class.query-export.php:493
|
696 |
+
msgid "Export History"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: includes/classes/class.query-log.php:489
|
700 |
+
msgid "Bulk Actions"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: includes/classes/class.query-log.php:490
|
704 |
+
msgid "Export Raw"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: includes/classes/class.query-log.php:491
|
708 |
+
msgid "Export Formatted"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: includes/classes/class.query-log.php:507
|
712 |
+
msgid "Apply"
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: includes/classes/class.query-log.php:544
|
716 |
+
msgid "User ID, Username, Email or Nicename"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: includes/classes/class.query-log.php:609
|
720 |
+
msgid "Log entries navigation"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: includes/classes/class.query-log.php:734
|
724 |
+
msgid "1 entry"
|
725 |
+
msgid_plural "%d entries"
|
726 |
+
msgstr[0] ""
|
727 |
+
msgstr[1] ""
|
728 |
+
|
729 |
+
#: includes/classes/class.query-log.php:867
|
730 |
+
#: includes/classes/class.query-log.php:888
|
731 |
+
msgid "Select all"
|
732 |
+
msgstr ""
|
733 |
+
|
734 |
+
#: includes/classes/class.query-log.php:971
|
735 |
+
msgid "Select entry"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: includes/classes/class.query-log.php:992
|
739 |
+
msgid "Show more details"
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
#: includes/classes/class.query-log.php:1016
|
743 |
+
msgid "Filter by Date"
|
744 |
+
msgstr ""
|
745 |
+
|
746 |
+
#: includes/classes/class.query-log.php:1065
|
747 |
+
msgid "Filter by User"
|
748 |
+
msgstr ""
|
749 |
+
|
750 |
+
#: includes/classes/class.query-log.php:1067
|
751 |
+
msgid "Filter by ID"
|
752 |
+
msgstr ""
|
753 |
+
|
754 |
+
#: includes/classes/class.query-log.php:1561
|
755 |
+
msgid "Profile Update Removal"
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#: includes/classes/class.query-log.php:1563
|
759 |
+
msgid "Profile Cover Upload"
|
760 |
+
msgstr ""
|
761 |
+
|
762 |
+
#: includes/classes/class.query-log.php:1568
|
763 |
+
msgid "Add Activity to Favorites"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: includes/classes/class.query-log.php:1569
|
767 |
+
msgid "Remove Activity from Favorites"
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#: includes/classes/class.query-log.php:1581
|
771 |
+
msgid "New Group Cover"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: includes/classes/class.query-log.php:1621
|
775 |
+
msgid "Affiliate Signup (AffiliateWP)"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: includes/classes/class.query-log.php:1622
|
779 |
+
msgid "Referred Visit (AffiliateWP)"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: includes/classes/class.query-log.php:1623
|
783 |
+
msgid "Affiliate Referral (AffiliateWP)"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: includes/classes/class.query-log.php:1624
|
787 |
+
msgid "Referral Refund (AffiliateWP)"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: includes/classes/class.query-log.php:1644
|
791 |
+
msgid "Recurring Payout"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: includes/classes/class.query-log.php:1648
|
795 |
+
msgid "Badge Reward"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: includes/classes/class.query-log.php:1665
|
799 |
+
msgid "Store Reward (WooCommerce)"
|
800 |
+
msgstr ""
|
801 |
+
|
802 |
+
#: includes/classes/class.query-log.php:1666
|
803 |
+
msgid "Product Review (WooCommerce)"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: includes/classes/class.query-log.php:1670
|
807 |
+
msgid "Store Reward (MarketPress)"
|
808 |
+
msgstr ""
|
809 |
+
|
810 |
+
#: includes/classes/class.query-log.php:1689
|
811 |
+
msgid "Content Purchase"
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#: includes/classes/class.query-log.php:1690
|
815 |
+
msgid "Content Sale"
|
816 |
+
msgstr ""
|
817 |
+
|
818 |
+
#: addons/banking/myCRED-addon-banking.php:142
|
819 |
+
msgid ""
|
820 |
+
"Instead of creating %_plural% out of thin-air, all payouts are made from a "
|
821 |
+
"nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
|
822 |
+
"deposited back into this account. If the central bank runs out of %_plural%, "
|
823 |
+
"no %_plural% will be paid out."
|
824 |
+
msgstr ""
|
825 |
+
|
826 |
+
#: addons/banking/myCRED-addon-banking.php:151
|
827 |
+
msgid ""
|
828 |
+
"Offer your users interest on the %_plural% they earn on your website. The "
|
829 |
+
"interest is compounded daily."
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: addons/banking/myCRED-addon-banking.php:202
|
833 |
+
msgid "New Recurring Payout"
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: addons/banking/myCRED-addon-banking.php:203
|
837 |
+
msgid "Edit Recurring Payout"
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: addons/banking/myCRED-addon-banking.php:205
|
841 |
+
msgid "Please fill out all required fields that are highlighted in red."
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: addons/banking/myCRED-addon-banking.php:206
|
845 |
+
msgid "Are you sure you want to remove this schedule? This can not be undone!"
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: addons/banking/myCRED-addon-banking.php:271
|
849 |
+
msgid "Warning"
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: addons/banking/myCRED-addon-banking.php:271
|
853 |
+
msgid ""
|
854 |
+
"This banking service uses the WordPress CRON to schedule events. If the "
|
855 |
+
"WordPress CRON is disabled, this service will not work correctly."
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
#: addons/transfer/myCRED-addon-transfer.php:156
|
859 |
+
msgid "The selected point type can not be transferred."
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: addons/transfer/myCRED-addon-transfer.php:464
|
863 |
+
msgid ""
|
864 |
+
"The template to use when the transfer shortcode or widget is viewed by "
|
865 |
+
"someone who is not logged in."
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: addons/transfer/myCRED-addon-transfer.php:479
|
869 |
+
msgid ""
|
870 |
+
"The template to use if you select to show the transfer limit in the transfer "
|
871 |
+
"shortcode or widget. Ignored if there is no limit enforced."
|
872 |
+
msgstr ""
|
873 |
+
|
874 |
+
#: addons/transfer/myCRED-addon-transfer.php:496
|
875 |
+
msgid ""
|
876 |
+
"The template to use if you select to show the users balance in the transfer "
|
877 |
+
"shortcode or widget. Ignored if balances are not shown."
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: addons/transfer/myCRED-addon-transfer.php:512
|
881 |
+
msgid "Default Button Label"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: addons/transfer/myCRED-addon-transfer.php:514
|
885 |
+
msgid ""
|
886 |
+
"The default transfer button label. You can override this in the shortcode or "
|
887 |
+
"widget if needed."
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: addons/transfer/myCRED-addon-transfer.php:517
|
891 |
+
msgid "Insufficient Funds Warning"
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#: addons/transfer/myCRED-addon-transfer.php:521
|
895 |
+
msgid "Message to show the user if they try to send more then they can afford."
|
896 |
+
msgstr ""
|
897 |
+
|
898 |
+
#: addons/transfer/myCRED-addon-transfer.php:524
|
899 |
+
msgid "Limit Reached Warning"
|
900 |
+
msgstr ""
|
901 |
+
|
902 |
+
#: addons/transfer/myCRED-addon-transfer.php:528
|
903 |
+
msgid ""
|
904 |
+
"Message to show the user once they reach their transfer limit. Ignored if no "
|
905 |
+
"limits are enforced."
|
906 |
+
msgstr ""
|
907 |
+
|
908 |
+
#: addons/ranks/myCRED-addon-ranks.php:216
|
909 |
+
msgid "Ranks for %s"
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: addons/ranks/myCRED-addon-ranks.php:230
|
913 |
+
#: addons/ranks/myCRED-addon-ranks.php:1368
|
914 |
+
msgid "Rank Logo"
|
915 |
+
msgstr ""
|
916 |
+
|
917 |
+
#: addons/ranks/myCRED-addon-ranks.php:231
|
918 |
+
msgid "Set rank logo"
|
919 |
+
msgstr ""
|
920 |
+
|
921 |
+
#: addons/ranks/myCRED-addon-ranks.php:232
|
922 |
+
msgid "Remove rank logo"
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#: addons/ranks/myCRED-addon-ranks.php:233
|
926 |
+
msgid "Use as Logo"
|
927 |
+
msgstr ""
|
928 |
+
|
929 |
+
#: addons/ranks/myCRED-addon-ranks.php:288
|
930 |
+
msgid "Rank Enabled."
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: addons/ranks/myCRED-addon-ranks.php:289
|
934 |
+
msgid "Rank Saved."
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#: addons/ranks/myCRED-addon-ranks.php:895
|
938 |
+
msgid "No ranks exists."
|
939 |
+
msgstr ""
|
940 |
+
|
941 |
+
#: addons/ranks/myCRED-addon-ranks.php:1189
|
942 |
+
msgid "Rank Setup"
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: addons/ranks/myCRED-addon-ranks.php:1230
|
946 |
+
msgid "Minimum Balance Requirement"
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: addons/ranks/myCRED-addon-ranks.php:1236
|
950 |
+
msgid "Maximum Balance Requirement"
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: addons/ranks/myCRED-addon-ranks.php:1435
|
954 |
+
msgid ""
|
955 |
+
"Use this button to calculate or recalculate your users totals. If not used, "
|
956 |
+
"the users current balance will be used as a starting point."
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: addons/ranks/myCRED-addon-ranks.php:1477
|
960 |
+
#: addons/ranks/myCRED-addon-ranks.php:1522
|
961 |
+
msgid ""
|
962 |
+
"Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
|
963 |
+
"for the title and %rank_logo% to show the rank logo. HTML is allowed."
|
964 |
+
msgstr ""
|
965 |
+
|
966 |
+
#: addons/ranks/myCRED-addon-ranks.php:1499
|
967 |
+
msgid "Include in Topic Replies"
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: addons/ranks/myCRED-addon-ranks.php:1501
|
971 |
+
msgid "Include in Topic Replies and Profile"
|
972 |
+
msgstr ""
|
973 |
+
|
974 |
+
#: addons/ranks/myCRED-addon-ranks.php:1505
|
975 |
+
msgid "Rank in bbPress"
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: addons/notifications/myCRED-addon-notifications.php:203
|
979 |
+
msgid "Restore to default"
|
980 |
+
msgstr ""
|
981 |
+
|
982 |
+
#: addons/notifications/myCRED-addon-notifications.php:217
|
983 |
+
msgid ""
|
984 |
+
"Number of seconds before a notice is automatically removed after being shown "
|
985 |
+
"to user. Use zero to disable."
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:124
|
989 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:130
|
990 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:136
|
991 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:192
|
992 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:193
|
993 |
+
msgid "Email Notifications"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:125
|
997 |
+
msgid "Email Notification"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:128
|
1001 |
+
msgid "Edit Email Notification"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:129
|
1005 |
+
msgid "New Email Notification"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:132
|
1009 |
+
msgid "Search Email Notifications"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:133
|
1013 |
+
msgid "No email notifications found"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:134
|
1017 |
+
msgid "No email notifications found in Trash"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:172
|
1021 |
+
msgid "Email Notice Activated."
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:347
|
1025 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:588
|
1026 |
+
msgid "All types"
|
1027 |
+
msgstr ""
|
1028 |
+
|
1029 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:706
|
1030 |
+
msgid "Instance Related"
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:712
|
1034 |
+
msgid "The users new balance"
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:720
|
1038 |
+
msgid "The users old balance"
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:728
|
1042 |
+
msgid "The amount of points gained or lost in this instance"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:736
|
1046 |
+
msgid "The log entry"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:741
|
1050 |
+
msgid "You can also use %s."
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:741
|
1054 |
+
msgid "user related template tags"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:872
|
1058 |
+
msgid "Badge Add-on"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:873
|
1062 |
+
msgid "user gains a badge"
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: addons/stats/myCRED-addon-stats.php:58
|
1066 |
+
msgid "Statistics"
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: addons/stats/myCRED-addon-stats.php:172
|
1070 |
+
msgid "Statistics Color"
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: addons/stats/myCRED-addon-stats.php:176
|
1074 |
+
msgid "Positive Values"
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: addons/stats/myCRED-addon-stats.php:182
|
1078 |
+
msgid "Negative Values"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: addons/stats/myCRED-addon-stats.php:248
|
1082 |
+
msgid "Overview"
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: addons/stats/myCRED-addon-stats.php:310
|
1086 |
+
msgid "Refresh"
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
#: addons/stats/myCRED-addon-stats.php:417
|
1090 |
+
msgid "Your log is empty. No statistics can be shown."
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: addons/badges/myCRED-addon-badges.php:275
|
1094 |
+
msgid "Badge Enabled."
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: addons/badges/myCRED-addon-badges.php:276
|
1098 |
+
msgid "Badge Saved."
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: addons/badges/myCRED-addon-badges.php:398
|
1102 |
+
msgid "First Level"
|
1103 |
+
msgstr ""
|
1104 |
+
|
1105 |
+
#: addons/badges/myCRED-addon-badges.php:510
|
1106 |
+
#: addons/badges/myCRED-addon-badges.php:801
|
1107 |
+
msgid "Add Level"
|
1108 |
+
msgstr ""
|
1109 |
+
|
1110 |
+
#: addons/badges/myCRED-addon-badges.php:511
|
1111 |
+
#: addons/badges/myCRED-addon-badges.php:802
|
1112 |
+
msgid "Remove Level"
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: addons/badges/myCRED-addon-badges.php:512
|
1116 |
+
#: addons/badges/myCRED-addon-badges.php:755
|
1117 |
+
#: addons/badges/myCRED-addon-badges.php:818
|
1118 |
+
#: addons/badges/myCRED-addon-badges.php:823
|
1119 |
+
msgid "Set Image"
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: addons/badges/myCRED-addon-badges.php:513
|
1123 |
+
#: addons/badges/myCRED-addon-badges.php:755
|
1124 |
+
#: addons/badges/myCRED-addon-badges.php:823
|
1125 |
+
msgid "Change Image"
|
1126 |
+
msgstr ""
|
1127 |
+
|
1128 |
+
#: addons/badges/myCRED-addon-badges.php:514
|
1129 |
+
msgid "Are you sure you want to remove this level?"
|
1130 |
+
msgstr ""
|
1131 |
+
|
1132 |
+
#: addons/badges/myCRED-addon-badges.php:515
|
1133 |
+
#: addons/badges/myCRED-addon-badges.php:819
|
1134 |
+
#: addons/badges/myCRED-addon-badges.php:1288
|
1135 |
+
msgid "Level"
|
1136 |
+
msgstr ""
|
1137 |
+
|
1138 |
+
#: addons/badges/myCRED-addon-badges.php:518
|
1139 |
+
#: addons/badges/myCRED-addon-badges.php:921
|
1140 |
+
#: addons/badges/includes/mycred-badge-functions.php:271
|
1141 |
+
msgctxt "Comparison of badge requirements. A AND B"
|
1142 |
+
msgid "AND"
|
1143 |
+
msgstr ""
|
1144 |
+
|
1145 |
+
#: addons/badges/myCRED-addon-badges.php:519
|
1146 |
+
#: addons/badges/myCRED-addon-badges.php:921
|
1147 |
+
#: addons/badges/includes/mycred-badge-functions.php:269
|
1148 |
+
msgctxt "Comparison of badge requirements. A OR B"
|
1149 |
+
msgid "OR"
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: addons/badges/myCRED-addon-badges.php:571
|
1153 |
+
msgid "Badge Setup"
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: addons/badges/myCRED-addon-badges.php:580
|
1157 |
+
msgid "Default Badge Image"
|
1158 |
+
msgstr ""
|
1159 |
+
|
1160 |
+
#: addons/badges/myCRED-addon-badges.php:722
|
1161 |
+
#: addons/badges/includes/mycred-badge-functions.php:287
|
1162 |
+
msgid "This badge is manually awarded."
|
1163 |
+
msgstr ""
|
1164 |
+
|
1165 |
+
#: addons/badges/myCRED-addon-badges.php:758
|
1166 |
+
msgid "Optional image to show when a user has not earned this badge."
|
1167 |
+
msgstr ""
|
1168 |
+
|
1169 |
+
#: addons/badges/myCRED-addon-badges.php:825
|
1170 |
+
msgid "Level %d"
|
1171 |
+
msgstr ""
|
1172 |
+
|
1173 |
+
#: addons/badges/myCRED-addon-badges.php:849
|
1174 |
+
msgid "Select Point Type"
|
1175 |
+
msgstr ""
|
1176 |
+
|
1177 |
+
#: addons/badges/myCRED-addon-badges.php:863
|
1178 |
+
msgid "Select Reference"
|
1179 |
+
msgstr ""
|
1180 |
+
|
1181 |
+
#: addons/badges/myCRED-addon-badges.php:939
|
1182 |
+
msgid "Reward"
|
1183 |
+
msgstr ""
|
1184 |
+
|
1185 |
+
#: addons/badges/myCRED-addon-badges.php:1163
|
1186 |
+
#: addons/badges/myCRED-addon-badges.php:1199
|
1187 |
+
msgid "Show all badges, including badges users have not yet earned."
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: addons/badges/myCRED-addon-badges.php:1251
|
1191 |
+
msgid "No image set"
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: addons/badges/myCRED-addon-badges.php:1283
|
1195 |
+
msgid "Select a level"
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: addons/badges/myCRED-addon-badges.php:1297
|
1199 |
+
msgid "Earned"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: addons/badges/myCRED-addon-badges.php:1406
|
1203 |
+
msgid "A total of %d users have received this badge."
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: addons/badges/myCRED-addon-badges.php:1433
|
1207 |
+
msgid "No connections where removed."
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
+
#: addons/coupons/myCRED-addon-coupons.php:249
|
1211 |
+
msgid "Used"
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: addons/coupons/myCRED-addon-coupons.php:296
|
1215 |
+
msgid "1 time"
|
1216 |
+
msgid_plural "%d times"
|
1217 |
+
msgstr[0] ""
|
1218 |
+
msgstr[1] ""
|
1219 |
+
|
1220 |
+
#: addons/coupons/myCRED-addon-coupons.php:453
|
1221 |
+
msgid "Coupon Usage"
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: addons/coupons/myCRED-addon-coupons.php:536
|
1225 |
+
msgid "The maximum number of times this coupon can be used."
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:128
|
1229 |
+
msgid "Sell Content Add-on Update Required"
|
1230 |
+
msgstr ""
|
1231 |
+
|
1232 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:129
|
1233 |
+
msgid ""
|
1234 |
+
"Before continuing to use this add-on you must setup and save your settings."
|
1235 |
+
msgstr ""
|
1236 |
+
|
1237 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:235
|
1238 |
+
msgid "Users profit share when their content is purchased."
|
1239 |
+
msgstr ""
|
1240 |
+
|
1241 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:251
|
1242 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:266
|
1243 |
+
msgctxt "Points Name"
|
1244 |
+
msgid "%s Profit Share"
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:254
|
1248 |
+
msgid "Not accepted as payment."
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:269
|
1252 |
+
msgctxt "Points Name"
|
1253 |
+
msgid "User can not pay using %s"
|
1254 |
+
msgstr ""
|
1255 |
+
|
1256 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:281
|
1257 |
+
msgctxt "Buying Points"
|
1258 |
+
msgid "%s Profit Share"
|
1259 |
+
msgstr ""
|
1260 |
+
|
1261 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:284
|
1262 |
+
msgid "Leave empty to use the default."
|
1263 |
+
msgstr ""
|
1264 |
+
|
1265 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:369
|
1266 |
+
msgid "Select all the post types you want to sell."
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:385
|
1270 |
+
msgid "You must select at least one post type to sell."
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:439
|
1274 |
+
msgid "Select all the point types accepted as payment."
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:458
|
1278 |
+
msgid "You must select at least one point type to accept as payment."
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:501
|
1282 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:909
|
1283 |
+
msgid "Expiration"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:502
|
1287 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:849
|
1288 |
+
#: addons/sell-content/includes/mycred-sell-shortcodes.php:181
|
1289 |
+
msgid "Hour(s)"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:503
|
1293 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:508
|
1294 |
+
#: addons/banking/services/mycred-service-payouts.php:768
|
1295 |
+
#: addons/banking/services/mycred-service-payouts.php:775
|
1296 |
+
msgid "Use zero to disable."
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:515
|
1300 |
+
msgid "Use %price% to show the price set for each post."
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:518
|
1304 |
+
msgid "Button CSS Classes"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:524
|
1308 |
+
msgid "Payment log entry template"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:529
|
1312 |
+
msgid "Profit Share payout log entry template"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:531
|
1316 |
+
msgid "Only used if profit sharing is enabled for this point type."
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:542
|
1320 |
+
msgid "Transactions"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:545
|
1324 |
+
msgid "Reload page after successful payments."
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:550
|
1328 |
+
msgid ""
|
1329 |
+
"Option to show a custom button label while the payment is being processed. "
|
1330 |
+
"HTML is allowed."
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:556
|
1334 |
+
msgid "Members"
|
1335 |
+
msgstr ""
|
1336 |
+
|
1337 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:557
|
1338 |
+
msgid ""
|
1339 |
+
"The template to use when a content is viewed by a member that is logged in "
|
1340 |
+
"and can afford to pay. Only applied to content that is set for sale."
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:574
|
1344 |
+
msgid ""
|
1345 |
+
"The template to use when a content is viewed by someone who is not logged in."
|
1346 |
+
" Only applied to content that is set for sale."
|
1347 |
+
msgstr ""
|
1348 |
+
|
1349 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:592
|
1350 |
+
msgid ""
|
1351 |
+
"The template to use when a content is viewed by a member that is logged but "
|
1352 |
+
"can not afford to buy. Only applied to content that is set for sale."
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:886
|
1356 |
+
msgid "Never expires"
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: addons/banking/services/mycred-service-central.php:110
|
1360 |
+
msgid "Central Bank Account"
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: addons/banking/services/mycred-service-central.php:113
|
1364 |
+
msgid "The ID of the user representing the central bank."
|
1365 |
+
msgstr ""
|
1366 |
+
|
1367 |
+
#: addons/banking/services/mycred-service-interest.php:429
|
1368 |
+
msgid "Daily Compound Schedule"
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: addons/banking/services/mycred-service-interest.php:432
|
1372 |
+
#: addons/banking/services/mycred-service-interest.php:457
|
1373 |
+
#: addons/banking/services/mycred-service-payouts.php:728
|
1374 |
+
msgid "Year"
|
1375 |
+
msgstr ""
|
1376 |
+
|
1377 |
+
#: addons/banking/services/mycred-service-interest.php:433
|
1378 |
+
#: addons/banking/services/mycred-service-interest.php:458
|
1379 |
+
#: addons/banking/services/mycred-service-payouts.php:734
|
1380 |
+
#: addons/banking/includes/mycred-banking-functions.php:95
|
1381 |
+
msgid "Month"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: addons/banking/services/mycred-service-interest.php:434
|
1385 |
+
#: addons/banking/services/mycred-service-interest.php:459
|
1386 |
+
#: addons/banking/includes/mycred-banking-functions.php:85
|
1387 |
+
msgid "Day"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: addons/banking/services/mycred-service-interest.php:454
|
1391 |
+
msgid "Payout Schedule"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: addons/banking/services/mycred-service-interest.php:493
|
1395 |
+
msgid "Payout Frequency"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: addons/banking/services/mycred-service-interest.php:506
|
1399 |
+
msgid "Payout Log Table"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: addons/banking/services/mycred-service-interest.php:519
|
1403 |
+
msgid ""
|
1404 |
+
"Changing the payout period once the service is enabled, will only take "
|
1405 |
+
"effect once the currently scheduled payout runs. To change this, you will "
|
1406 |
+
"also need to adjust the payout schedule above."
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: addons/banking/services/mycred-service-interest.php:524
|
1410 |
+
msgid "Exclude by ID"
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: addons/banking/services/mycred-service-interest.php:535
|
1414 |
+
msgid "Exclude by Role"
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: addons/banking/services/mycred-service-interest.php:539
|
1418 |
+
msgid "Roles to exclude"
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: addons/banking/services/mycred-service-interest.php:655
|
1422 |
+
msgid "Leave empty to pay the default rate."
|
1423 |
+
msgstr ""
|
1424 |
+
|
1425 |
+
#: addons/banking/services/mycred-service-payouts.php:30
|
1426 |
+
msgid "Waiting to Start"
|
1427 |
+
msgstr ""
|
1428 |
+
|
1429 |
+
#: addons/banking/services/mycred-service-payouts.php:32
|
1430 |
+
msgid "Running"
|
1431 |
+
msgstr ""
|
1432 |
+
|
1433 |
+
#: addons/banking/services/mycred-service-payouts.php:33
|
1434 |
+
msgid "Finished"
|
1435 |
+
msgstr ""
|
1436 |
+
|
1437 |
+
#: addons/banking/services/mycred-service-payouts.php:34
|
1438 |
+
msgid "Stopped"
|
1439 |
+
msgstr ""
|
1440 |
+
|
1441 |
+
#: addons/banking/services/mycred-service-payouts.php:446
|
1442 |
+
msgid "Not yet started"
|
1443 |
+
msgstr ""
|
1444 |
+
|
1445 |
+
#: addons/banking/services/mycred-service-payouts.php:457
|
1446 |
+
msgid "Currently Running"
|
1447 |
+
msgstr ""
|
1448 |
+
|
1449 |
+
#: addons/banking/services/mycred-service-payouts.php:472
|
1450 |
+
msgid "View Schedule"
|
1451 |
+
msgstr ""
|
1452 |
+
|
1453 |
+
#: addons/banking/services/mycred-service-payouts.php:472
|
1454 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
|
1455 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
|
1456 |
+
msgid "View"
|
1457 |
+
msgstr ""
|
1458 |
+
|
1459 |
+
#: addons/banking/services/mycred-service-payouts.php:472
|
1460 |
+
msgid "Delete Schedule"
|
1461 |
+
msgstr ""
|
1462 |
+
|
1463 |
+
#: addons/banking/services/mycred-service-payouts.php:523
|
1464 |
+
#: addons/banking/services/mycred-service-payouts.php:766
|
1465 |
+
msgid "Min. Balance"
|
1466 |
+
msgstr ""
|
1467 |
+
|
1468 |
+
#: addons/banking/services/mycred-service-payouts.php:526
|
1469 |
+
#: addons/banking/services/mycred-service-payouts.php:773
|
1470 |
+
msgid "Max. Balance"
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
#: addons/banking/services/mycred-service-payouts.php:531
|
1474 |
+
msgid "Exclude Users"
|
1475 |
+
msgstr ""
|
1476 |
+
|
1477 |
+
#: addons/banking/services/mycred-service-payouts.php:533
|
1478 |
+
msgid "Include Users"
|
1479 |
+
msgstr ""
|
1480 |
+
|
1481 |
+
#: addons/banking/services/mycred-service-payouts.php:540
|
1482 |
+
msgid "Exclude Roles"
|
1483 |
+
msgstr ""
|
1484 |
+
|
1485 |
+
#: addons/banking/services/mycred-service-payouts.php:542
|
1486 |
+
msgid "Include Roles"
|
1487 |
+
msgstr ""
|
1488 |
+
|
1489 |
+
#: addons/banking/services/mycred-service-payouts.php:559
|
1490 |
+
#: addons/banking/services/mycred-service-payouts.php:879
|
1491 |
+
msgid "Job Title"
|
1492 |
+
msgstr ""
|
1493 |
+
|
1494 |
+
#: addons/banking/services/mycred-service-payouts.php:573
|
1495 |
+
msgid "Start Date"
|
1496 |
+
msgstr ""
|
1497 |
+
|
1498 |
+
#: addons/banking/services/mycred-service-payouts.php:579
|
1499 |
+
msgid "Eligible"
|
1500 |
+
msgstr ""
|
1501 |
+
|
1502 |
+
#: addons/banking/services/mycred-service-payouts.php:580
|
1503 |
+
msgid "1 User"
|
1504 |
+
msgid_plural "%d Users"
|
1505 |
+
msgstr[0] ""
|
1506 |
+
msgstr[1] ""
|
1507 |
+
|
1508 |
+
#: addons/banking/services/mycred-service-payouts.php:585
|
1509 |
+
msgid "Runs"
|
1510 |
+
msgstr ""
|
1511 |
+
|
1512 |
+
#: addons/banking/services/mycred-service-payouts.php:586
|
1513 |
+
msgid "Infinite"
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: addons/banking/services/mycred-service-payouts.php:609
|
1517 |
+
msgid "Will payout even if the central bank account has run out of funds."
|
1518 |
+
msgstr ""
|
1519 |
+
|
1520 |
+
#: addons/banking/services/mycred-service-payouts.php:614
|
1521 |
+
msgid "Paid Out"
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: addons/banking/services/mycred-service-payouts.php:615
|
1525 |
+
msgid "Completed"
|
1526 |
+
msgstr ""
|
1527 |
+
|
1528 |
+
#: addons/banking/services/mycred-service-payouts.php:616
|
1529 |
+
msgid "Misses"
|
1530 |
+
msgstr ""
|
1531 |
+
|
1532 |
+
#: addons/banking/services/mycred-service-payouts.php:617
|
1533 |
+
msgid "Runs Left"
|
1534 |
+
msgstr ""
|
1535 |
+
|
1536 |
+
#: addons/banking/services/mycred-service-payouts.php:637
|
1537 |
+
msgid ""
|
1538 |
+
"A miss is when a payout was declined by the plugin. This can be due to "
|
1539 |
+
"custom code declining the payout or if the user is excluded."
|
1540 |
+
msgstr ""
|
1541 |
+
|
1542 |
+
#: addons/banking/services/mycred-service-payouts.php:682
|
1543 |
+
msgid "Schedule Title"
|
1544 |
+
msgstr ""
|
1545 |
+
|
1546 |
+
#: addons/banking/services/mycred-service-payouts.php:694
|
1547 |
+
#: addons/banking/services/mycred-service-payouts.php:881
|
1548 |
+
msgid "Frequency"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: addons/banking/services/mycred-service-payouts.php:715
|
1552 |
+
msgid "Payout even if the central bank account runs out of funds."
|
1553 |
+
msgstr ""
|
1554 |
+
|
1555 |
+
#: addons/banking/services/mycred-service-payouts.php:722
|
1556 |
+
msgid "First Payout"
|
1557 |
+
msgstr ""
|
1558 |
+
|
1559 |
+
#: addons/banking/services/mycred-service-payouts.php:754
|
1560 |
+
msgid "Repeat"
|
1561 |
+
msgstr ""
|
1562 |
+
|
1563 |
+
#: addons/banking/services/mycred-service-payouts.php:756
|
1564 |
+
msgid "Use -1 for infinite runs."
|
1565 |
+
msgstr ""
|
1566 |
+
|
1567 |
+
#: addons/banking/services/mycred-service-payouts.php:784
|
1568 |
+
msgid "Limit by ID"
|
1569 |
+
msgstr ""
|
1570 |
+
|
1571 |
+
#: addons/banking/services/mycred-service-payouts.php:798
|
1572 |
+
msgid "Limit by Role(s)"
|
1573 |
+
msgstr ""
|
1574 |
+
|
1575 |
+
#: addons/banking/services/mycred-service-payouts.php:825
|
1576 |
+
msgid "Schedule"
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#: addons/banking/services/mycred-service-payouts.php:846
|
1580 |
+
msgid "Include:"
|
1581 |
+
msgstr ""
|
1582 |
+
|
1583 |
+
#: addons/banking/services/mycred-service-payouts.php:847
|
1584 |
+
msgid "Exclude:"
|
1585 |
+
msgstr ""
|
1586 |
+
|
1587 |
+
#: addons/banking/services/mycred-service-payouts.php:872
|
1588 |
+
msgid ""
|
1589 |
+
"As long as this service remains disabled, none of your scheduled payouts "
|
1590 |
+
"will run!"
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: addons/banking/services/mycred-service-payouts.php:875
|
1594 |
+
msgid "Schedules"
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
+
#: addons/banking/services/mycred-service-payouts.php:882
|
1598 |
+
msgid "Last Ran"
|
1599 |
+
msgstr ""
|
1600 |
+
|
1601 |
+
#: addons/banking/services/mycred-service-payouts.php:883
|
1602 |
+
msgid "Next Run"
|
1603 |
+
msgstr ""
|
1604 |
+
|
1605 |
+
#: addons/banking/services/mycred-service-payouts.php:891
|
1606 |
+
msgid "No schedules found."
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: addons/banking/services/mycred-service-payouts.php:955
|
1610 |
+
msgid "Schedule Added"
|
1611 |
+
msgstr ""
|
1612 |
+
|
1613 |
+
#: addons/banking/services/mycred-service-payouts.php:962
|
1614 |
+
msgid ""
|
1615 |
+
"While the recurring payout has been successfully saved, based on the limits "
|
1616 |
+
"you set, right now there are no users that are eligible for a payout!"
|
1617 |
+
msgstr ""
|
1618 |
+
|
1619 |
+
#: addons/banking/services/mycred-service-payouts.php:974
|
1620 |
+
#: addons/banking/services/mycred-service-payouts.php:988
|
1621 |
+
msgid "Schedule not found. Please refresh this page and try again."
|
1622 |
+
msgstr ""
|
1623 |
+
|
1624 |
+
#: addons/banking/services/mycred-service-payouts.php:993
|
1625 |
+
msgid "Schedule Deleted"
|
1626 |
+
msgstr ""
|
1627 |
+
|
1628 |
+
#: addons/banking/includes/mycred-banking-functions.php:80
|
1629 |
+
msgid "Hour"
|
1630 |
+
msgstr ""
|
1631 |
+
|
1632 |
+
#: addons/banking/includes/mycred-banking-functions.php:90
|
1633 |
+
msgid "Week"
|
1634 |
+
msgstr ""
|
1635 |
+
|
1636 |
+
#: addons/banking/includes/mycred-banking-functions.php:100
|
1637 |
+
msgid "Quarter"
|
1638 |
+
msgstr ""
|
1639 |
+
|
1640 |
+
#: addons/banking/includes/mycred-banking-functions.php:105
|
1641 |
+
msgid "Semiannual"
|
1642 |
+
msgstr ""
|
1643 |
+
|
1644 |
+
#: addons/banking/includes/mycred-banking-functions.php:110
|
1645 |
+
msgid "Annual"
|
1646 |
+
msgstr ""
|
1647 |
+
|
1648 |
+
#: addons/banking/includes/mycred-banking-functions.php:283
|
1649 |
+
msgid "A title must be set."
|
1650 |
+
msgstr ""
|
1651 |
+
|
1652 |
+
#: addons/banking/includes/mycred-banking-functions.php:290
|
1653 |
+
msgid "The amount to payout can not be zero."
|
1654 |
+
msgstr ""
|
1655 |
+
|
1656 |
+
#: addons/banking/includes/mycred-banking-functions.php:296
|
1657 |
+
msgid "Start date can not be in the past."
|
1658 |
+
msgstr ""
|
1659 |
+
|
1660 |
+
#: addons/banking/includes/mycred-banking-functions.php:303
|
1661 |
+
msgid "Repeat can not be zero."
|
1662 |
+
msgstr ""
|
1663 |
+
|
1664 |
+
#: addons/banking/includes/mycred-banking-functions.php:309
|
1665 |
+
msgid "Duplicate schedule."
|
1666 |
+
msgstr ""
|
1667 |
+
|
1668 |
+
#: addons/gateway/carts/mycred-woocommerce.php:364
|
1669 |
+
msgctxt "%s = Point amount formatted"
|
1670 |
+
msgid "Refunded %s"
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:89
|
1674 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:93
|
1675 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:97
|
1676 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:109
|
1677 |
+
msgid "required"
|
1678 |
+
msgstr ""
|
1679 |
+
|
1680 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:100
|
1681 |
+
#: addons/transfer/includes/mycred-transfer-shortcodes.php:31
|
1682 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:565
|
1683 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1475
|
1684 |
+
msgid "Recipient"
|
1685 |
+
msgstr ""
|
1686 |
+
|
1687 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:104
|
1688 |
+
msgid "Recipient Placeholder"
|
1689 |
+
msgstr ""
|
1690 |
+
|
1691 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:112
|
1692 |
+
msgid "Message for Excluded Users"
|
1693 |
+
msgstr ""
|
1694 |
+
|
1695 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:44
|
1696 |
+
msgid "Total %s:"
|
1697 |
+
msgstr ""
|
1698 |
+
|
1699 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:138
|
1700 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:267
|
1701 |
+
msgid "Total amount of %s in circulation"
|
1702 |
+
msgstr ""
|
1703 |
+
|
1704 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:171
|
1705 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:302
|
1706 |
+
msgid "Total gains (%)"
|
1707 |
+
msgstr ""
|
1708 |
+
|
1709 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:175
|
1710 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:306
|
1711 |
+
msgid "Total loses (%)"
|
1712 |
+
msgstr ""
|
1713 |
+
|
1714 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:179
|
1715 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:309
|
1716 |
+
msgid "Total Gained: %s"
|
1717 |
+
msgstr ""
|
1718 |
+
|
1719 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:179
|
1720 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:309
|
1721 |
+
msgid "Total Spent: %s"
|
1722 |
+
msgstr ""
|
1723 |
+
|
1724 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:193
|
1725 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:323
|
1726 |
+
msgid "This Year"
|
1727 |
+
msgstr ""
|
1728 |
+
|
1729 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:197
|
1730 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:199
|
1731 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:201
|
1732 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:203
|
1733 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:327
|
1734 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:329
|
1735 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:331
|
1736 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:333
|
1737 |
+
#: addons/badges/includes/mycred-badge-functions.php:267
|
1738 |
+
msgid "Gained"
|
1739 |
+
msgstr ""
|
1740 |
+
|
1741 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:198
|
1742 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:200
|
1743 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:202
|
1744 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:204
|
1745 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:328
|
1746 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:330
|
1747 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:332
|
1748 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:334
|
1749 |
+
#: addons/badges/includes/mycred-badge-functions.php:267
|
1750 |
+
msgid "Lost"
|
1751 |
+
msgstr ""
|
1752 |
+
|
1753 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
|
1754 |
+
msgid ""
|
1755 |
+
"Most common ways your users have lost or spent points during this period."
|
1756 |
+
msgstr ""
|
1757 |
+
|
1758 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
|
1759 |
+
msgid ""
|
1760 |
+
"Most common ways your users have lost or spent %_plural% during this period."
|
1761 |
+
msgstr ""
|
1762 |
+
|
1763 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
|
1764 |
+
msgid "Loses in the last 10 days"
|
1765 |
+
msgstr ""
|
1766 |
+
|
1767 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
|
1768 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
|
1769 |
+
msgid "No data found"
|
1770 |
+
msgstr ""
|
1771 |
+
|
1772 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
|
1773 |
+
msgid "Most common ways your users have gained points during this period."
|
1774 |
+
msgstr ""
|
1775 |
+
|
1776 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
|
1777 |
+
msgid "Most common ways your users have gained %_plural% during this period."
|
1778 |
+
msgstr ""
|
1779 |
+
|
1780 |
+
#: addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
|
1781 |
+
msgid "Gains in the last 10 days"
|
1782 |
+
msgstr ""
|
1783 |
+
|
1784 |
+
#: addons/badges/includes/mycred-badge-functions.php:248
|
1785 |
+
msgid "Level %s"
|
1786 |
+
msgstr ""
|
1787 |
+
|
1788 |
+
#: addons/badges/includes/mycred-badge-functions.php:265
|
1789 |
+
msgctxt "\"Points\" for \"reference\" x times"
|
1790 |
+
msgid "%s for \"%s\" x %d"
|
1791 |
+
msgstr ""
|
1792 |
+
|
1793 |
+
#: addons/badges/includes/mycred-badge-functions.php:267
|
1794 |
+
msgctxt "\"Gained/Lost\" \"x points\" for \"reference\""
|
1795 |
+
msgid "%s %s for \"%s\""
|
1796 |
+
msgstr ""
|
1797 |
+
|
1798 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:502
|
1799 |
+
msgctxt "Point type name"
|
1800 |
+
msgid "You can not pay using %s"
|
1801 |
+
msgstr ""
|
1802 |
+
|
1803 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:763
|
1804 |
+
msgctxt "all post type name"
|
1805 |
+
msgid "All %s"
|
1806 |
+
msgstr ""
|
1807 |
+
|
1808 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:767
|
1809 |
+
msgctxt "all post type name"
|
1810 |
+
msgid "%s I manually select"
|
1811 |
+
msgstr ""
|
1812 |
+
|
1813 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:771
|
1814 |
+
msgctxt "%s = post type name"
|
1815 |
+
msgid "All %s except"
|
1816 |
+
msgstr ""
|
1817 |
+
|
1818 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:772
|
1819 |
+
msgctxt "%s = post type name"
|
1820 |
+
msgid "Comma separated list of %s IDs to exclude"
|
1821 |
+
msgstr ""
|
1822 |
+
|
1823 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:775
|
1824 |
+
msgctxt "%s = post type name"
|
1825 |
+
msgid "Only %s"
|
1826 |
+
msgstr ""
|
1827 |
+
|
1828 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:776
|
1829 |
+
msgctxt "%s = post type name"
|
1830 |
+
msgid "Comma separated list of %s IDs"
|
1831 |
+
msgstr ""
|
1832 |
+
|
1833 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:788
|
1834 |
+
msgctxt "e.g. Only \"Posts\" in \"Categories\""
|
1835 |
+
msgid "Only %s in %s"
|
1836 |
+
msgstr ""
|
1837 |
+
|
1838 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:789
|
1839 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:793
|
1840 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:799
|
1841 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:803
|
1842 |
+
msgctxt "%s = taxonomy name"
|
1843 |
+
msgid "Comma separated list of %s slugs"
|
1844 |
+
msgstr ""
|
1845 |
+
|
1846 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:792
|
1847 |
+
msgctxt "e.g. Only \"Posts\" not in \"Categories\""
|
1848 |
+
msgid "Only %s not in %s"
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:798
|
1852 |
+
msgctxt "e.g. Only \"Posts\" with \"Tags\""
|
1853 |
+
msgid "Only %s with %s"
|
1854 |
+
msgstr ""
|
1855 |
+
|
1856 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:802
|
1857 |
+
msgctxt "e.g. Only \"Posts\" without \"Tags\""
|
1858 |
+
msgid "Only %s without %s"
|
1859 |
+
msgstr ""
|
1860 |
+
|
1861 |
+
#: addons/sell-content/includes/mycred-sell-shortcodes.php:233
|
1862 |
+
msgctxt "e.g. 10 hours"
|
1863 |
+
msgid "Purchase expires in %s"
|
1864 |
+
msgstr ""
|
1865 |
+
|
1866 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:225
|
1867 |
+
msgctxt "%s is replaced with the point amount and name."
|
1868 |
+
msgid "Received new request to purchase %s."
|
1869 |
+
msgstr ""
|
1870 |
+
|
1871 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:576
|
1872 |
+
msgid "First Name"
|
1873 |
+
msgstr ""
|
1874 |
+
|
1875 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
|
1876 |
+
msgid "Last Name"
|
1877 |
+
msgstr ""
|
1878 |
+
|
1879 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:590
|
1880 |
+
msgid "Address Line 1"
|
1881 |
+
msgstr ""
|
1882 |
+
|
1883 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:598
|
1884 |
+
msgid "Address Line 2"
|
1885 |
+
msgstr ""
|
1886 |
+
|
1887 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:606
|
1888 |
+
msgid "City"
|
1889 |
+
msgstr ""
|
1890 |
+
|
1891 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:612
|
1892 |
+
msgid "Zip"
|
1893 |
+
msgstr ""
|
1894 |
+
|
1895 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
|
1896 |
+
msgid "State"
|
1897 |
+
msgstr ""
|
1898 |
+
|
1899 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:628
|
1900 |
+
msgid "Country"
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:633
|
1904 |
+
msgid "Choose Country"
|
1905 |
+
msgstr ""
|
1906 |
+
|
1907 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:691
|
1908 |
+
msgctxt "buyCRED order description"
|
1909 |
+
msgid "Item"
|
1910 |
+
msgstr ""
|
1911 |
+
|
1912 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:200
|
1913 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:201
|
1914 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:202
|
1915 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:203
|
1916 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:204
|
1917 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:205
|
1918 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:206
|
1919 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:207
|
1920 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:208
|
1921 |
+
msgid "Payment Updated."
|
1922 |
+
msgstr ""
|
1923 |
+
|
1924 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:236
|
1925 |
+
msgid "Pending payment successfully credited to account."
|
1926 |
+
msgstr ""
|
1927 |
+
|
1928 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:238
|
1929 |
+
msgid "Failed to credit the pending payment to account."
|
1930 |
+
msgstr ""
|
1931 |
+
|
1932 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:457
|
1933 |
+
msgid "Pending Payment"
|
1934 |
+
msgstr ""
|
1935 |
+
|
1936 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:495
|
1937 |
+
msgid "Trash"
|
1938 |
+
msgstr ""
|
1939 |
+
|
1940 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:559
|
1941 |
+
msgid "Payer"
|
1942 |
+
msgstr ""
|
1943 |
+
|
1944 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:668
|
1945 |
+
msgid "Pending request created."
|
1946 |
+
msgstr ""
|
1947 |
+
|
1948 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:716
|
1949 |
+
msgid "Pending payment updated by %s"
|
1950 |
+
msgstr ""
|
1951 |
+
|
1952 |
+
#: addons/buy-creds/modules/buycred-module-core.php:138
|
1953 |
+
msgid "Bank Transfer"
|
1954 |
+
msgstr ""
|
1955 |
+
|
1956 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1092
|
1957 |
+
msgid "Users exchange rate when buying points."
|
1958 |
+
msgstr ""
|
1959 |
+
|
1960 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1103
|
1961 |
+
msgid "buyCRED Exchange Rates"
|
1962 |
+
msgstr ""
|
1963 |
+
|
1964 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1113
|
1965 |
+
msgctxt "Points Name"
|
1966 |
+
msgid "Buying %s"
|
1967 |
+
msgstr ""
|
1968 |
+
|
1969 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1116
|
1970 |
+
msgid "This point type is not for sale."
|
1971 |
+
msgstr ""
|
1972 |
+
|
1973 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1128
|
1974 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1143
|
1975 |
+
msgctxt "Buying Points"
|
1976 |
+
msgid "Buying %s"
|
1977 |
+
msgstr ""
|
1978 |
+
|
1979 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1131
|
1980 |
+
msgctxt "Points Name"
|
1981 |
+
msgid "User can not buy %s"
|
1982 |
+
msgstr ""
|
1983 |
+
|
1984 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1146
|
1985 |
+
msgid "Leave empty to use the default rate."
|
1986 |
+
msgstr ""
|
1987 |
+
|
1988 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1519
|
1989 |
+
msgid "Pay Using"
|
1990 |
+
msgstr ""
|
1991 |
+
|
1992 |
+
#: addons/buy-creds/includes/buycred-functions.php:115
|
1993 |
+
msgid "Unknown Gateway"
|
1994 |
+
msgstr ""
|
1995 |
+
|
1996 |
+
#: addons/buy-creds/gateways/bank-transfer.php:139
|
1997 |
+
msgid "Continue"
|
1998 |
+
msgstr ""
|
1999 |
+
|
2000 |
+
#: addons/buy-creds/gateways/bank-transfer.php:167
|
2001 |
+
msgid "Checkout Logo"
|
2002 |
+
msgstr ""
|
2003 |
+
|
2004 |
+
#: addons/buy-creds/gateways/bank-transfer.php:173
|
2005 |
+
msgid "Bank Account Information"
|
2006 |
+
msgstr ""
|
2007 |
+
|
2008 |
+
#: addons/buy-creds/gateways/bank-transfer.php:177
|
2009 |
+
msgid "Bank transfer details to show the user on the checkout page."
|
2010 |
+
msgstr ""
|
2011 |
+
|
2012 |
+
#: addons/buy-creds/gateways/paypal-standard.php:256
|
2013 |
+
msgctxt "Return label. %s = Website name"
|
2014 |
+
msgid "Return to %s"
|
2015 |
+
msgstr ""
|
2016 |
+
|
2017 |
+
#. Description of the plugin
|
2018 |
+
msgid "An adaptive points management system for WordPress powered websites."
|
2019 |
+
msgstr ""
|
2020 |
+
|
2021 |
+
#: mycred.php:564
|
2022 |
+
msgid "%s Log Import"
|
2023 |
+
msgstr "Registro de Importe %s"
|
2024 |
+
|
2025 |
+
#: mycred.php:565
|
2026 |
+
msgid "Import log entries via a CSV file."
|
2027 |
+
msgstr "Importa las entradas de registro atraves de un fichero CSV."
|
2028 |
+
|
2029 |
+
#: mycred.php:576
|
2030 |
+
msgid "%s Balance Import"
|
2031 |
+
msgstr "%s balance de Importar"
|
2032 |
+
|
2033 |
+
#: mycred.php:577
|
2034 |
+
msgid "Import balances."
|
2035 |
+
msgstr "Saldos Importar."
|
2036 |
+
|
2037 |
+
#: mycred.php:588
|
2038 |
+
msgid "%s CubePoints Import"
|
2039 |
+
msgstr "Importar CubePoints %s"
|
2040 |
+
|
2041 |
+
#: mycred.php:589 includes/importers/mycred-cubepoints.php:379
|
2042 |
+
msgid "Import CubePoints log entries and / or balances."
|
2043 |
+
msgstr "Importar las entradas de registro de CubePoints y/o saldos."
|
2044 |
+
|
2045 |
+
#: mycred.php:631 modules/mycred-module-management.php:314
|
2046 |
+
#: modules/mycred-module-settings.php:426 modules/mycred-module-log.php:466
|
2047 |
+
#: addons/transfer/myCRED-addon-transfer.php:139
|
2048 |
+
#: addons/ranks/myCRED-addon-ranks.php:986
|
2049 |
+
#: addons/ranks/myCRED-addon-ranks.php:1570
|
2050 |
+
#: addons/badges/myCRED-addon-badges.php:702
|
2051 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:478
|
2052 |
+
msgid "Processing..."
|
2053 |
+
msgstr "Procesando..."
|
2054 |
+
|
2055 |
+
#: mycred.php:632
|
2056 |
+
msgid "Sent"
|
2057 |
+
msgstr "Enviado"
|
2058 |
+
|
2059 |
+
#: mycred.php:633
|
2060 |
+
msgid "Error - Try Again"
|
2061 |
+
msgstr "Error - Inténtelo de nuevo."
|
2062 |
+
|
2063 |
+
#: mycred.php:765
|
2064 |
+
msgid "No CubePoints log exists."
|
2065 |
+
msgstr "No existe ningun registro de CubePoints."
|
2066 |
+
|
2067 |
+
#: mycred.php:816 mycred.php:817
|
2068 |
+
msgid "About %s"
|
2069 |
+
msgstr "Sobre"
|
2070 |
+
|
2071 |
+
#: mycred.php:825 mycred.php:826
|
2072 |
+
msgid "Awesome People"
|
2073 |
+
msgstr "Gente genial"
|
2074 |
+
|
2075 |
+
#: mycred.php:863 modules/mycred-module-management.php:556
|
2076 |
+
#: addons/transfer/myCRED-addon-transfer.php:495
|
2077 |
+
#: addons/transfer/includes/mycred-transfer-shortcodes.php:33
|
2078 |
+
msgid "Balance"
|
2079 |
+
msgstr "Saldo"
|
2080 |
+
|
2081 |
+
#: mycred.php:930 modules/mycred-module-management.php:471
|
2082 |
+
#: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
|
2083 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:460
|
2084 |
+
msgid "History"
|
2085 |
+
msgstr "Historial"
|
2086 |
+
|
2087 |
+
#: mycred.php:986 mycred.php:1007
|
2088 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:273
|
2089 |
+
#: addons/banking/services/mycred-service-interest.php:477
|
2090 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:537
|
2091 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:605
|
2092 |
+
msgid "Setup"
|
2093 |
+
msgstr "Configurar"
|
2094 |
+
|
2095 |
+
#: mycred.php:988 modules/mycred-module-settings.php:21
|
2096 |
+
#: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
|
2097 |
+
#: modules/mycred-module-network.php:164
|
2098 |
+
#: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
|
2099 |
+
#: addons/buy-creds/modules/buycred-module-core.php:555
|
2100 |
+
msgid "Settings"
|
2101 |
+
msgstr "Configuraciones"
|
2102 |
+
|
2103 |
+
#: mycred.php:1029
|
2104 |
+
msgid ""
|
2105 |
+
"Make sure to backup your database and files before updating, in case "
|
2106 |
+
"anything goes wrong!"
|
2107 |
+
msgstr ""
|
2108 |
+
"Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
|
2109 |
+
"archivo, por si acaso!"
|
2110 |
+
|
2111 |
+
#: abstracts/mycred-abstract-hook.php:90
|
2112 |
+
msgid "This Hook has no settings"
|
2113 |
+
msgstr "Este gancho no ha sido configurado"
|
2114 |
+
|
2115 |
+
#: abstracts/mycred-abstract-hook.php:283
|
2116 |
+
#: abstracts/mycred-abstract-hook.php:354 includes/mycred-functions.php:2672
|
2117 |
+
msgid "No limit"
|
2118 |
+
msgstr "Sin Limite"
|
2119 |
+
|
2120 |
+
#: abstracts/mycred-abstract-hook.php:355
|
2121 |
+
msgid "Once every 24 hours"
|
2122 |
+
msgstr "Una vez cada 24 horas"
|
2123 |
+
|
2124 |
+
#: abstracts/mycred-abstract-hook.php:356
|
2125 |
+
msgid "Once every 7 days"
|
2126 |
+
msgstr "Una vez cada 7 dias"
|
2127 |
+
|
2128 |
+
#: abstracts/mycred-abstract-hook.php:357
|
2129 |
+
msgid "Once per day (reset at midnight)"
|
2130 |
+
msgstr "Una vez al dia (reinicializado al medianoche)"
|
2131 |
+
|
2132 |
+
#: abstracts/mycred-abstract-hook.php:364
|
2133 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:527
|
2134 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:859
|
2135 |
+
#: addons/badges/myCRED-addon-badges.php:880
|
2136 |
+
#: addons/banking/abstracts/mycred-abstract-service.php:351
|
2137 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
|
2138 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
|
2139 |
+
#: addons/buy-creds/modules/buycred-module-core.php:380
|
2140 |
+
#: addons/buy-creds/modules/buycred-module-core.php:403
|
2141 |
+
#: addons/buy-creds/gateways/zombaio.php:406
|
2142 |
+
msgid "Select"
|
2143 |
+
msgstr "Seleccionar"
|
2144 |
+
|
2145 |
+
#: abstracts/mycred-abstract-module.php:400
|
2146 |
+
#: abstracts/mycred-abstract-module.php:410
|
2147 |
+
msgid "Surprise"
|
2148 |
+
msgstr "Sorpresa"
|
2149 |
+
|
2150 |
+
#: abstracts/mycred-abstract-module.php:528
|
2151 |
+
#: modules/mycred-module-network.php:98
|
2152 |
+
msgid "click to close"
|
2153 |
+
msgstr "haga clic para cerrar"
|
2154 |
+
|
2155 |
+
#: abstracts/mycred-abstract-module.php:529
|
2156 |
+
#: modules/mycred-module-network.php:99
|
2157 |
+
msgid "click to open"
|
2158 |
+
msgstr "haga clic para abrir"
|
2159 |
+
|
2160 |
+
#: abstracts/mycred-abstract-module.php:562
|
2161 |
+
#: modules/mycred-module-network.php:155
|
2162 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1472
|
2163 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:451
|
2164 |
+
#: addons/buy-creds/modules/buycred-module-core.php:560
|
2165 |
+
msgid "Settings Updated"
|
2166 |
+
msgstr "Configuraciones Actualizadas"
|
2167 |
+
|
2168 |
+
#: modules/mycred-module-management.php:101
|
2169 |
+
msgid "Update Balance"
|
2170 |
+
msgstr "Actualizar Saldo"
|
2171 |
+
|
2172 |
+
#: modules/mycred-module-management.php:114
|
2173 |
+
msgid "User is excluded"
|
2174 |
+
msgstr "El Usuario ha sido excluido"
|
2175 |
+
|
2176 |
+
#: modules/mycred-module-management.php:122
|
2177 |
+
msgid "Log Entry can not be empty"
|
2178 |
+
msgstr "Entrada de registro no puede estar vacío"
|
2179 |
+
|
2180 |
+
#: modules/mycred-module-management.php:130 modules/mycred-module-log.php:225
|
2181 |
+
msgid "Amount can not be zero"
|
2182 |
+
msgstr "La Cantidad no Puede ser Cero"
|
2183 |
+
|
2184 |
+
#: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
|
2185 |
+
#: modules/mycred-module-log.php:914 includes/shortcodes/mycred_history.php:59
|
2186 |
+
#: includes/classes/class.query-export.php:263
|
2187 |
+
#: includes/classes/class.query-export.php:399
|
2188 |
+
#: includes/classes/class.query-log.php:370
|
2189 |
+
#: includes/classes/class.query-log.php:383
|
2190 |
+
#: addons/banking/services/mycred-service-payouts.php:740
|
2191 |
+
#: addons/sell-content/includes/mycred-sell-shortcodes.php:185
|
2192 |
+
#: addons/buy-creds/modules/buycred-module-core.php:752
|
2193 |
+
msgid "Date"
|
2194 |
+
msgstr "Fecha"
|
2195 |
+
|
2196 |
+
#: modules/mycred-module-management.php:236
|
2197 |
+
#: addons/banking/services/mycred-service-interest.php:435
|
2198 |
+
#: addons/banking/services/mycred-service-interest.php:460
|
2199 |
+
#: addons/banking/services/mycred-service-payouts.php:746
|
2200 |
+
msgid "Time"
|
2201 |
+
msgstr "Tiempo"
|
2202 |
+
|
2203 |
+
#. need more context: entrada or inscripción
|
2204 |
+
#: modules/mycred-module-management.php:238 modules/mycred-module-log.php:96
|
2205 |
+
#: includes/shortcodes/mycred_history.php:61
|
2206 |
+
#: includes/classes/class.query-export.php:263
|
2207 |
+
#: includes/classes/class.query-export.php:406
|
2208 |
+
#: includes/classes/class.query-log.php:372
|
2209 |
+
#: includes/classes/class.query-log.php:385
|
2210 |
+
msgid "Entry"
|
2211 |
+
msgstr "Entrada"
|
2212 |
+
|
2213 |
+
#: modules/mycred-module-management.php:312
|
2214 |
+
msgid "Edit Users Balance"
|
2215 |
+
msgstr "Editar saldo del usuario"
|
2216 |
+
|
2217 |
+
#: modules/mycred-module-management.php:313
|
2218 |
+
#: modules/mycred-module-settings.php:431 modules/mycred-module-log.php:465
|
2219 |
+
#: addons/banking/myCRED-addon-banking.php:204
|
2220 |
+
msgid "Close"
|
2221 |
+
msgstr "Cerrar"
|
2222 |
+
|
2223 |
+
#: modules/mycred-module-management.php:451
|
2224 |
+
#: modules/mycred-module-management.php:569
|
2225 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:268
|
2226 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1130
|
2227 |
+
msgid "Excluded"
|
2228 |
+
msgstr "Excluido"
|
2229 |
+
|
2230 |
+
#: modules/mycred-module-management.php:461
|
2231 |
+
#: addons/coupons/myCRED-addon-coupons.php:307
|
2232 |
+
msgid "Total"
|
2233 |
+
msgstr "Total"
|
2234 |
+
|
2235 |
+
#: modules/mycred-module-management.php:472
|
2236 |
+
msgid "Adjust"
|
2237 |
+
msgstr "Modificar"
|
2238 |
+
|
2239 |
+
#: modules/mycred-module-management.php:581
|
2240 |
+
#: modules/mycred-module-management.php:581
|
2241 |
+
#: includes/classes/class.query-log.php:1074
|
2242 |
+
msgid "Edit"
|
2243 |
+
msgstr "Editar"
|
2244 |
+
|
2245 |
+
#: modules/mycred-module-management.php:581
|
2246 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
|
2247 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:734
|
2248 |
+
msgid "Cancel"
|
2249 |
+
msgstr "Cancelar"
|
2250 |
+
|
2251 |
+
#: modules/mycred-module-management.php:739
|
2252 |
+
#: addons/banking/services/mycred-service-payouts.php:553
|
2253 |
+
msgid "ID"
|
2254 |
+
msgstr "ID"
|
2255 |
+
|
2256 |
+
#: modules/mycred-module-management.php:751
|
2257 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:307
|
2258 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:332
|
2259 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:412
|
2260 |
+
msgid "Current Balance"
|
2261 |
+
msgstr "Saldo Actual"
|
2262 |
+
|
2263 |
+
#: modules/mycred-module-management.php:766
|
2264 |
+
#: plugins/mycred-hook-affiliatewp.php:260
|
2265 |
+
#: includes/shortcodes/mycred_exchange.php:69
|
2266 |
+
#: includes/shortcodes/mycred_hook_table.php:80
|
2267 |
+
#: includes/classes/class.query-export.php:263
|
2268 |
+
#: includes/classes/class.query-export.php:383
|
2269 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:92
|
2270 |
+
#: addons/transfer/includes/mycred-transfer-shortcodes.php:32
|
2271 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
|
2272 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:289
|
2273 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:631
|
2274 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:749
|
2275 |
+
msgid "Amount"
|
2276 |
+
msgstr "Cantidad"
|
2277 |
+
|
2278 |
+
#: modules/mycred-module-management.php:768
|
2279 |
+
msgid "A positive or negative value"
|
2280 |
+
msgstr "Un valor positivo o negativo"
|
2281 |
+
|
2282 |
+
#: modules/mycred-module-management.php:794 modules/mycred-module-log.php:933
|
2283 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:518
|
2284 |
+
msgid "Log Entry"
|
2285 |
+
msgstr "Entrada de Registro"
|
2286 |
+
|
2287 |
+
#: modules/mycred-module-management.php:795
|
2288 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:79
|
2289 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:101
|
2290 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:105
|
2291 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:113
|
2292 |
+
msgid "optional"
|
2293 |
+
msgstr "opcional"
|
2294 |
+
|
2295 |
+
#: modules/mycred-module-settings.php:138
|
2296 |
+
msgid "Accounts successfully reset"
|
2297 |
+
msgstr "Las cuentas fueron reiniciadas con éxito."
|
2298 |
+
|
2299 |
+
#: modules/mycred-module-settings.php:190
|
2300 |
+
msgid "No users found to export"
|
2301 |
+
msgstr "No se encontro usuarios para exportar"
|
2302 |
+
|
2303 |
+
#: modules/mycred-module-settings.php:427
|
2304 |
+
msgid ""
|
2305 |
+
"Warning! All entries in your log will be permanently removed! This can not "
|
2306 |
+
"be undone!"
|
2307 |
+
msgstr ""
|
2308 |
+
"¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
|
2309 |
+
"¡Esto no se puede deshacer!"
|
2310 |
+
|
2311 |
+
#: modules/mycred-module-settings.php:428
|
2312 |
+
msgid ""
|
2313 |
+
"All log entries belonging to deleted users will be permanently deleted! This "
|
2314 |
+
"can not be undone!"
|
2315 |
+
msgstr ""
|
2316 |
+
"¡Todas las entradas de registro perteneciendo al usuario seran "
|
2317 |
+
"permanentemente borradas! ¡Esto no se puede deshacer!"
|
2318 |
+
|
2319 |
+
#: modules/mycred-module-settings.php:429
|
2320 |
+
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
2321 |
+
msgstr ""
|
2322 |
+
"¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
|
2323 |
+
"deshacer!"
|
2324 |
+
|
2325 |
+
#: modules/mycred-module-settings.php:430
|
2326 |
+
msgid "Done!"
|
2327 |
+
msgstr "¡Realizado!"
|
2328 |
+
|
2329 |
+
#: modules/mycred-module-settings.php:432
|
2330 |
+
msgid "Export users %plural%"
|
2331 |
+
msgstr "Exportar usuarios %plural%"
|
2332 |
+
|
2333 |
+
#: modules/mycred-module-settings.php:529
|
2334 |
+
msgid "%s Settings"
|
2335 |
+
msgstr "Configuración de %s"
|
2336 |
+
|
2337 |
+
#: modules/mycred-module-settings.php:538
|
2338 |
+
msgid "Core Settings"
|
2339 |
+
msgstr "Ajustes Basicos"
|
2340 |
+
|
2341 |
+
#: modules/mycred-module-settings.php:543 includes/mycred-setup.php:275
|
2342 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:460
|
2343 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:602
|
2344 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
|
2345 |
+
msgid "Labels"
|
2346 |
+
msgstr "Etiquetas"
|
2347 |
+
|
2348 |
+
#: modules/mycred-module-settings.php:561 includes/mycred-setup.php:293
|
2349 |
+
msgid "Format"
|
2350 |
+
msgstr "Formato"
|
2351 |
+
|
2352 |
+
#: modules/mycred-module-settings.php:565 includes/mycred-setup.php:297
|
2353 |
+
msgid "Prefix"
|
2354 |
+
msgstr "Prefijo"
|
2355 |
+
|
2356 |
+
#: modules/mycred-module-settings.php:571 includes/mycred-setup.php:303
|
2357 |
+
msgid "Separators"
|
2358 |
+
msgstr "Separadores"
|
2359 |
+
|
2360 |
+
#: modules/mycred-module-settings.php:579 includes/mycred-setup.php:311
|
2361 |
+
msgid "Decimals"
|
2362 |
+
msgstr "Decimales"
|
2363 |
+
|
2364 |
+
#: modules/mycred-module-settings.php:585 includes/mycred-setup.php:317
|
2365 |
+
msgid "Suffix"
|
2366 |
+
msgstr "Sufijo"
|
2367 |
+
|
2368 |
+
#: modules/mycred-module-settings.php:592
|
2369 |
+
msgid "Tip"
|
2370 |
+
msgstr "Pista"
|
2371 |
+
|
2372 |
+
#: modules/mycred-module-settings.php:599 includes/mycred-setup.php:328
|
2373 |
+
msgid "Security"
|
2374 |
+
msgstr "Seguridad"
|
2375 |
+
|
2376 |
+
#: modules/mycred-module-settings.php:646
|
2377 |
+
msgid "Delete log entries when user is deleted."
|
2378 |
+
msgstr "Elimina las entradas de registro cuando se elimina el usuario."
|
2379 |
+
|
2380 |
+
#: modules/mycred-module-settings.php:665
|
2381 |
+
msgid "Management"
|
2382 |
+
msgstr "Gestión"
|
2383 |
+
|
2384 |
+
#: modules/mycred-module-settings.php:677 modules/mycred-module-log.php:433
|
2385 |
+
msgid "Entries"
|
2386 |
+
msgstr "Entradas"
|
2387 |
+
|
2388 |
+
#: modules/mycred-module-settings.php:683
|
2389 |
+
#: modules/mycred-module-settings.php:708
|
2390 |
+
#: addons/ranks/myCRED-addon-ranks.php:1659
|
2391 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:466
|
2392 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:752
|
2393 |
+
msgid "Actions"
|
2394 |
+
msgstr "Acciones"
|
2395 |
+
|
2396 |
+
#: modules/mycred-module-settings.php:686
|
2397 |
+
msgid "Empty Log"
|
2398 |
+
msgstr "Registro Vacío"
|
2399 |
+
|
2400 |
+
#: modules/mycred-module-settings.php:702
|
2401 |
+
#: addons/ranks/myCRED-addon-ranks.php:1076
|
2402 |
+
#: addons/badges/myCRED-addon-badges.php:400
|
2403 |
+
msgid "Users"
|
2404 |
+
msgstr "Usuarios"
|
2405 |
+
|
2406 |
+
#: modules/mycred-module-settings.php:710
|
2407 |
+
msgid "Set all to zero"
|
2408 |
+
msgstr "Ajusta todo a cero"
|
2409 |
+
|
2410 |
+
#: modules/mycred-module-settings.php:727 includes/mycred-widgets.php:573
|
2411 |
+
#: addons/transfer/myCRED-addon-transfer.php:383
|
2412 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:437
|
2413 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:108
|
2414 |
+
#: addons/buy-creds/modules/buycred-module-core.php:336
|
2415 |
+
msgid "Point Types"
|
2416 |
+
msgstr "Clase de Puntos"
|
2417 |
+
|
2418 |
+
#: modules/mycred-module-settings.php:741
|
2419 |
+
#: modules/mycred-module-settings.php:767
|
2420 |
+
#: modules/mycred-module-settings.php:797
|
2421 |
+
msgid "Meta Key"
|
2422 |
+
msgstr "Clave Meta"
|
2423 |
+
|
2424 |
+
#: modules/mycred-module-settings.php:747
|
2425 |
+
#: modules/mycred-module-settings.php:773
|
2426 |
+
#: modules/mycred-module-settings.php:803
|
2427 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:575
|
2428 |
+
#: addons/gateway/carts/mycred-woocommerce.php:159
|
2429 |
+
msgid "Label"
|
2430 |
+
msgstr "Etiqueta"
|
2431 |
+
|
2432 |
+
#: modules/mycred-module-settings.php:754
|
2433 |
+
#: modules/mycred-module-settings.php:780
|
2434 |
+
#: includes/classes/class.query-log.php:492
|
2435 |
+
#: includes/classes/class.query-log.php:1075
|
2436 |
+
#: addons/banking/services/mycred-service-payouts.php:472
|
2437 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
|
2438 |
+
msgid "Delete"
|
2439 |
+
msgstr "Borrar"
|
2440 |
+
|
2441 |
+
#: modules/mycred-module-settings.php:793
|
2442 |
+
msgid "Add New Type"
|
2443 |
+
msgstr "Añadir Nuevo Clase"
|
2444 |
+
|
2445 |
+
#: modules/mycred-module-settings.php:821
|
2446 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:551
|
2447 |
+
#: addons/buy-creds/modules/buycred-module-core.php:613
|
2448 |
+
msgid "Update Settings"
|
2449 |
+
msgstr "Actualizar Configuraciones"
|
2450 |
+
|
2451 |
+
#: modules/mycred-module-settings.php:830
|
2452 |
+
msgid "Identify users by"
|
2453 |
+
msgstr "Identifique usuarios por"
|
2454 |
+
|
2455 |
+
#: modules/mycred-module-settings.php:836
|
2456 |
+
msgid "User ID"
|
2457 |
+
msgstr "ID del Usuario"
|
2458 |
+
|
2459 |
+
#: modules/mycred-module-settings.php:837
|
2460 |
+
msgid "User Email"
|
2461 |
+
msgstr "Email de Usuario"
|
2462 |
+
|
2463 |
+
#: modules/mycred-module-settings.php:838
|
2464 |
+
msgid "User Login"
|
2465 |
+
msgstr "Ingreso de Usuario"
|
2466 |
+
|
2467 |
+
#: modules/mycred-module-settings.php:846
|
2468 |
+
msgid ""
|
2469 |
+
"Use ID if you intend to use this export as a backup of your current site "
|
2470 |
+
"while Email is recommended if you want to export to a different site."
|
2471 |
+
msgstr ""
|
2472 |
+
"Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
|
2473 |
+
"Email si deseas exportar la data a otro sitio"
|
2474 |
+
|
2475 |
+
#: modules/mycred-module-settings.php:849
|
2476 |
+
msgid "Import Log Entry"
|
2477 |
+
msgstr "Importa la entrada de registro"
|
2478 |
+
|
2479 |
+
#: modules/mycred-module-settings.php:851
|
2480 |
+
msgid ""
|
2481 |
+
"Optional log entry to use if you intend to import this file in a different "
|
2482 |
+
"%s installation."
|
2483 |
+
msgstr ""
|
2484 |
+
"Usa la entrada de registro opcional si tiene la intención de importar este "
|
2485 |
+
"fichero en otra instalación %s."
|
2486 |
+
|
2487 |
+
#: modules/mycred-module-settings.php:854 modules/mycred-module-export.php:236
|
2488 |
+
#: modules/mycred-module-export.php:263 modules/mycred-module-export.php:313
|
2489 |
+
msgid "Export"
|
2490 |
+
msgstr "Exportar"
|
2491 |
+
|
2492 |
+
#: modules/mycred-module-addons.php:25 modules/mycred-module-addons.php:26
|
2493 |
+
#: includes/mycred-setup.php:171
|
2494 |
+
msgid "Add-ons"
|
2495 |
+
msgstr "Extensiones"
|
2496 |
+
|
2497 |
+
#: modules/mycred-module-addons.php:175
|
2498 |
+
msgid "Give your users badges based on their interaction with your website."
|
2499 |
+
msgstr ""
|
2500 |
+
"Dar insignias a tus usuarios basado en sus interacciones con tu sitio web."
|
2501 |
+
|
2502 |
+
#: modules/mycred-module-addons.php:186
|
2503 |
+
msgid ""
|
2504 |
+
"Setup recurring payouts or offer / charge interest on user account balances."
|
2505 |
+
msgstr ""
|
2506 |
+
"Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
|
2507 |
+
"de las cuentas de usuarios."
|
2508 |
+
|
2509 |
+
#: modules/mycred-module-addons.php:197
|
2510 |
+
msgid ""
|
2511 |
+
"The <strong>buy</strong>CRED Add-on allows your users to buy points using "
|
2512 |
+
"PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
|
2513 |
+
"also let your users buy points for other members."
|
2514 |
+
msgstr ""
|
2515 |
+
"La Extensión <strong>compra</strong>CRED permite que tus usuarios compren "
|
2516 |
+
"puntos utilizando PayPal, Skrill (Moneybookers) o NETbilling. <strong>"
|
2517 |
+
"compra</strong>CRED tambien permite que tus usuarios compren puntos para "
|
2518 |
+
"otros miembros."
|
2519 |
+
|
2520 |
+
#: modules/mycred-module-addons.php:208
|
2521 |
+
msgid ""
|
2522 |
+
"The coupons add-on allows you to create coupons that users can use to add "
|
2523 |
+
"points to their accounts."
|
2524 |
+
msgstr ""
|
2525 |
+
"Los cupones de add-on le permite crear cupones que los usuarios pueden "
|
2526 |
+
"utilizar para agregar puntos a sus cuentas."
|
2527 |
+
|
2528 |
+
#: modules/mycred-module-addons.php:219
|
2529 |
+
msgid "Create email notices for any type of myCRED instance."
|
2530 |
+
msgstr ""
|
2531 |
+
"Crea avisos por correo electrónico para cualquier tipo de instancias de "
|
2532 |
+
"myCRED."
|
2533 |
+
|
2534 |
+
#: modules/mycred-module-addons.php:230
|
2535 |
+
msgid ""
|
2536 |
+
"Let your users pay using their <strong>my</strong>CRED points balance. "
|
2537 |
+
"Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
|
2538 |
+
"Bookings: Event Espresso and Events Manager (free & pro)."
|
2539 |
+
msgstr ""
|
2540 |
+
"Permite que tus usuarios paguen utilizando el saldo de sus puntos <strong>"
|
2541 |
+
"my</strong>CRED. Carritos soportados: WooCommerce, MarketPress and WP E-"
|
2542 |
+
"Commerce. Reservas de Eventos soportados: Event Espresso and Events Manager "
|
2543 |
+
"(gratis y pro)."
|
2544 |
+
|
2545 |
+
#: modules/mycred-module-addons.php:241
|
2546 |
+
msgid "Create pop-up notifications for when users gain or loose points."
|
2547 |
+
msgstr ""
|
2548 |
+
"Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
|
2549 |
+
|
2550 |
+
#: modules/mycred-module-addons.php:253
|
2551 |
+
msgid ""
|
2552 |
+
"Create ranks for users reaching a certain number of %_plural% with the "
|
2553 |
+
"option to add logos for each rank."
|
2554 |
+
msgstr ""
|
2555 |
+
"Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
|
2556 |
+
"con la opción de añadir logotipos para cada rango."
|
2557 |
+
|
2558 |
+
#: modules/mycred-module-addons.php:264
|
2559 |
+
msgid ""
|
2560 |
+
"This add-on allows you to sell posts, pages or any public post types on your "
|
2561 |
+
"website. You can either sell the entire content or using our shortcode, sell "
|
2562 |
+
"parts of your content allowing you to offer \"teasers\"."
|
2563 |
+
msgstr ""
|
2564 |
+
"Esta extensión permite que vendas posts, páginas o cualquier tipo de "
|
2565 |
+
"publicación en tu sitio web. Puedes venter contenidos enteros o utilizando "
|
2566 |
+
"el código corto (shortcode), vender partes de tu contenido permitiendote "
|
2567 |
+
"ofrecer \"avances\"."
|
2568 |
+
|
2569 |
+
#: modules/mycred-module-addons.php:286
|
2570 |
+
msgid ""
|
2571 |
+
"Allow your users to send or \"donate\" points to other members by either "
|
2572 |
+
"using the mycred_transfer shortcode or the myCRED Transfer widget."
|
2573 |
+
msgstr ""
|
2574 |
+
"Permite que los usuarios envien o \"donen\" puntos a otros miembros "
|
2575 |
+
"utilizando el código corto (shortcode) de mycred_transfer o el widget de "
|
2576 |
+
"Transferencia myCRED."
|
2577 |
+
|
2578 |
+
#: modules/mycred-module-addons.php:330
|
2579 |
+
msgid "%s Add-ons"
|
2580 |
+
msgstr "%s Extensiones (addons)"
|
2581 |
+
|
2582 |
+
#: modules/mycred-module-addons.php:337
|
2583 |
+
msgid "Add-on Activated"
|
2584 |
+
msgstr "Extensión Activado"
|
2585 |
+
|
2586 |
+
#: modules/mycred-module-addons.php:340
|
2587 |
+
msgid "Add-on Deactivated"
|
2588 |
+
msgstr "Extensión Desactivado"
|
2589 |
+
|
2590 |
+
#: modules/mycred-module-addons.php:405
|
2591 |
+
msgid "Activate Add-on"
|
2592 |
+
msgstr "Activar Extensión"
|
2593 |
+
|
2594 |
+
#: modules/mycred-module-addons.php:406
|
2595 |
+
msgid "Activate"
|
2596 |
+
msgstr "Activar"
|
2597 |
+
|
2598 |
+
#: modules/mycred-module-addons.php:412
|
2599 |
+
msgid "Deactivate Add-on"
|
2600 |
+
msgstr "Desactivar Extensión"
|
2601 |
+
|
2602 |
+
#: modules/mycred-module-addons.php:413
|
2603 |
+
msgid "Deactivate"
|
2604 |
+
msgstr "Desactivar"
|
2605 |
+
|
2606 |
+
#: modules/mycred-module-log.php:24 modules/mycred-module-log.php:25
|
2607 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:515
|
2608 |
+
msgid "Log"
|
2609 |
+
msgstr "Registro"
|
2610 |
+
|
2611 |
+
#: modules/mycred-module-log.php:92 modules/mycred-module-log.php:910
|
2612 |
+
#: includes/shortcodes/mycred_history.php:58
|
2613 |
+
#: includes/classes/class.query-export.php:263
|
2614 |
+
#: includes/classes/class.query-export.php:371
|
2615 |
+
#: includes/classes/class.query-log.php:369
|
2616 |
+
#: includes/classes/class.query-log.php:381
|
2617 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:332
|
2618 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:565
|
2619 |
+
msgid "User"
|
2620 |
+
msgstr "Usuario"
|
2621 |
+
|
2622 |
+
#: modules/mycred-module-log.php:173
|
2623 |
+
msgid "Row Deleted"
|
2624 |
+
msgstr "Fila Borrado"
|
2625 |
+
|
2626 |
+
#: modules/mycred-module-log.php:232
|
2627 |
+
msgid "Log entry not found"
|
2628 |
+
msgstr "No se encontro la entrada de registro "
|
2629 |
+
|
2630 |
+
#: modules/mycred-module-log.php:464
|
2631 |
+
msgid "Edit Log Entry"
|
2632 |
+
msgstr "Edidar entrada de registro"
|
2633 |
+
|
2634 |
+
#: modules/mycred-module-log.php:468
|
2635 |
+
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
2636 |
+
msgstr ""
|
2637 |
+
"¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
|
2638 |
+
"deshacer!"
|
2639 |
+
|
2640 |
+
#: modules/mycred-module-log.php:502
|
2641 |
+
msgid "Search results for"
|
2642 |
+
msgstr "Buscar entre resultados por"
|
2643 |
+
|
2644 |
+
#: modules/mycred-module-log.php:554
|
2645 |
+
msgid "%s Log"
|
2646 |
+
msgstr "Registro de %s"
|
2647 |
+
|
2648 |
+
#: modules/mycred-module-log.php:670
|
2649 |
+
msgid "My %s History"
|
2650 |
+
msgstr "Mi Historial de %s"
|
2651 |
+
|
2652 |
+
#: modules/mycred-module-network.php:61 modules/mycred-module-network.php:62
|
2653 |
+
#: addons/gateway/carts/mycred-woocommerce.php:29
|
2654 |
+
msgid "myCRED"
|
2655 |
+
msgstr "myCRED"
|
2656 |
+
|
2657 |
+
#: modules/mycred-module-network.php:71 modules/mycred-module-network.php:72
|
2658 |
+
msgid "Network Settings"
|
2659 |
+
msgstr "Configuración de la Red"
|
2660 |
+
|
2661 |
+
#: modules/mycred-module-network.php:135
|
2662 |
+
msgid "%s Network"
|
2663 |
+
msgstr "Red de %s"
|
2664 |
+
|
2665 |
+
#: modules/mycred-module-network.php:151
|
2666 |
+
msgid "Note! %s has not yet been setup."
|
2667 |
+
msgstr "¡Aviso! %s no ha sido configurado."
|
2668 |
+
|
2669 |
+
#: modules/mycred-module-network.php:158
|
2670 |
+
msgid "Configure network settings for %s."
|
2671 |
+
msgstr "Configure los parámetros de red para %s."
|
2672 |
+
|
2673 |
+
#: modules/mycred-module-network.php:166
|
2674 |
+
msgid "Master Template"
|
2675 |
+
msgstr "Plantilla Principal"
|
2676 |
+
|
2677 |
+
#: modules/mycred-module-network.php:170 modules/mycred-module-network.php:184
|
2678 |
+
#: addons/buy-creds/gateways/bitpay.php:299
|
2679 |
+
msgid "Yes"
|
2680 |
+
msgstr "Sí"
|
2681 |
+
|
2682 |
+
#: modules/mycred-module-network.php:174 modules/mycred-module-network.php:188
|
2683 |
+
#: addons/buy-creds/gateways/bitpay.php:298
|
2684 |
+
msgid "No"
|
2685 |
+
msgstr "No"
|
2686 |
+
|
2687 |
+
#: modules/mycred-module-network.php:177
|
2688 |
+
msgid ""
|
2689 |
+
"If enabled, %s will use your main site's settings for all other sites in "
|
2690 |
+
"your network."
|
2691 |
+
msgstr ""
|
2692 |
+
"Si activado, %s utilizara la configuración de tu sitio principal para todas "
|
2693 |
+
"los sitios en tu red."
|
2694 |
+
|
2695 |
+
#: modules/mycred-module-network.php:180
|
2696 |
+
msgid "Central Logging"
|
2697 |
+
msgstr "Central de Registro"
|
2698 |
+
|
2699 |
+
#: modules/mycred-module-network.php:191
|
2700 |
+
msgid "If enabled, %s will log all site actions in your main site's log."
|
2701 |
+
msgstr ""
|
2702 |
+
"Si está activado, %s registrará todas las acciones en el registro de tu "
|
2703 |
+
"sitio principal."
|
2704 |
+
|
2705 |
+
#: modules/mycred-module-network.php:194
|
2706 |
+
msgid "Site Block"
|
2707 |
+
msgstr "Bloqueo de Sitio"
|
2708 |
+
|
2709 |
+
#: modules/mycred-module-network.php:198
|
2710 |
+
msgid "Comma separated list of blog ids where %s is to be disabled."
|
2711 |
+
msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
|
2712 |
+
|
2713 |
+
#: modules/mycred-module-network.php:210
|
2714 |
+
msgid "Save Network Settings"
|
2715 |
+
msgstr "Guardar las Configuraciones de la Eed"
|
2716 |
+
|
2717 |
+
#: modules/mycred-module-export.php:285 modules/mycred-module-export.php:332
|
2718 |
+
#: includes/classes/class.query-log.php:1140
|
2719 |
+
msgid ""
|
2720 |
+
"Log entries are exported to a CSV file and depending on the number of "
|
2721 |
+
"entries selected, the process may take a few seconds."
|
2722 |
+
msgstr ""
|
2723 |
+
"Se exporta las entradas de registro a un fichero CSV y dependiendo del "
|
2724 |
+
"número de entradas seleccionadas, el proceso puede tardar unos segundos."
|
2725 |
+
|
2726 |
+
#. also, "Inhabilitar"
|
2727 |
+
#: modules/mycred-module-export.php:353
|
2728 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:253
|
2729 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:337
|
2730 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1115
|
2731 |
+
msgid "Disabled"
|
2732 |
+
msgstr "Desactivado"
|
2733 |
+
|
2734 |
+
#: modules/mycred-module-export.php:354
|
2735 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:338
|
2736 |
+
msgid "Enabled"
|
2737 |
+
msgstr "Habilitado"
|
2738 |
+
|
2739 |
+
#: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
|
2740 |
+
#: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
|
2741 |
+
#: includes/importers/mycred-cubepoints.php:401
|
2742 |
+
#: includes/classes/class.query-export.php:263
|
2743 |
+
#: includes/classes/class.query-export.php:391
|
2744 |
+
#: addons/ranks/myCRED-addon-ranks.php:1079
|
2745 |
+
#: addons/ranks/myCRED-addon-ranks.php:1247
|
2746 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:276
|
2747 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:582
|
2748 |
+
#: addons/coupons/myCRED-addon-coupons.php:254
|
2749 |
+
#: addons/coupons/myCRED-addon-coupons.php:488
|
2750 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:483
|
2751 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:550
|
2752 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611
|
2753 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:383
|
2754 |
+
#: addons/gateway/carts/mycred-woocommerce.php:119
|
2755 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:573
|
2756 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:751
|
2757 |
+
msgid "Point Type"
|
2758 |
+
msgstr "Clase de Puntos"
|
2759 |
+
|
2760 |
+
#: modules/mycred-module-buddypress.php:31
|
2761 |
+
msgid "My History"
|
2762 |
+
msgstr "Mi Historial"
|
2763 |
+
|
2764 |
+
#: modules/mycred-module-buddypress.php:32
|
2765 |
+
msgid "%s's History"
|
2766 |
+
msgstr "La Historial de %s"
|
2767 |
+
|
2768 |
+
#: modules/mycred-module-buddypress.php:131
|
2769 |
+
msgid "Current balance"
|
2770 |
+
msgstr "Saldo Actual"
|
2771 |
+
|
2772 |
+
#: modules/mycred-module-buddypress.php:236
|
2773 |
+
#: modules/mycred-module-buddypress.php:249
|
2774 |
+
#: includes/classes/class.query-log.php:1194
|
2775 |
+
msgid "All"
|
2776 |
+
msgstr "Todo"
|
2777 |
+
|
2778 |
+
#: modules/mycred-module-buddypress.php:237
|
2779 |
+
#: includes/classes/class.query-log.php:1195
|
2780 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:190
|
2781 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:320
|
2782 |
+
msgid "Today"
|
2783 |
+
msgstr "Hoy"
|
2784 |
+
|
2785 |
+
#: modules/mycred-module-buddypress.php:238
|
2786 |
+
#: includes/classes/class.query-log.php:1196
|
2787 |
+
msgid "Yesterday"
|
2788 |
+
msgstr "Ayer"
|
2789 |
+
|
2790 |
+
#: modules/mycred-module-buddypress.php:239
|
2791 |
+
#: includes/classes/class.query-log.php:1197
|
2792 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:191
|
2793 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:321
|
2794 |
+
msgid "This Week"
|
2795 |
+
msgstr "Esta Semana"
|
2796 |
+
|
2797 |
+
#: modules/mycred-module-buddypress.php:240
|
2798 |
+
#: includes/classes/class.query-log.php:1198
|
2799 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:192
|
2800 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:322
|
2801 |
+
msgid "This Month"
|
2802 |
+
msgstr "Este Mes"
|
2803 |
+
|
2804 |
+
#: modules/mycred-module-buddypress.php:350
|
2805 |
+
msgid "Go"
|
2806 |
+
msgstr "Ir a"
|
2807 |
+
|
2808 |
+
#: modules/mycred-module-buddypress.php:402
|
2809 |
+
#: addons/badges/myCRED-addon-badges.php:1146
|
2810 |
+
#: addons/badges/myCRED-addon-badges.php:1182
|
2811 |
+
#: addons/gateway/carts/mycred-woocommerce.php:151
|
2812 |
+
msgid "Do not show"
|
2813 |
+
msgstr "No Mostrar"
|
2814 |
+
|
2815 |
+
#: modules/mycred-module-buddypress.php:403
|
2816 |
+
#: addons/badges/myCRED-addon-badges.php:1147
|
2817 |
+
msgid "Include in Profile Header"
|
2818 |
+
msgstr "Incluir en el Encabezado del Perfil"
|
2819 |
+
|
2820 |
+
#: modules/mycred-module-buddypress.php:404
|
2821 |
+
#: addons/ranks/myCRED-addon-ranks.php:1455
|
2822 |
+
#: addons/badges/myCRED-addon-badges.php:1148
|
2823 |
+
msgid "Include under the \"Profile\" tab"
|
2824 |
+
msgstr "Incluir debajo de la pestaña del \"Perfil\""
|
2825 |
+
|
2826 |
+
#: modules/mycred-module-buddypress.php:405
|
2827 |
+
#: addons/badges/myCRED-addon-badges.php:1149
|
2828 |
+
msgid "Include under the \"Profile\" tab and Profile Header"
|
2829 |
+
msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil"
|
2830 |
+
|
2831 |
+
#: modules/mycred-module-buddypress.php:409
|
2832 |
+
#: addons/ranks/myCRED-addon-ranks.php:1453
|
2833 |
+
#: addons/ranks/myCRED-addon-ranks.php:1498
|
2834 |
+
msgid "Do not show."
|
2835 |
+
msgstr "No mostrar."
|
2836 |
+
|
2837 |
+
#: modules/mycred-module-buddypress.php:410
|
2838 |
+
msgid "Show in Profile"
|
2839 |
+
msgstr "Mostrar en Perfil"
|
2840 |
+
|
2841 |
+
#: modules/mycred-module-buddypress.php:427
|
2842 |
+
msgid "%singular% Balance"
|
2843 |
+
msgstr "%singular% Saldo"
|
2844 |
+
|
2845 |
+
#: modules/mycred-module-buddypress.php:449
|
2846 |
+
#: addons/ranks/myCRED-addon-ranks.php:1475
|
2847 |
+
#: addons/ranks/myCRED-addon-ranks.php:1520
|
2848 |
+
#: addons/notifications/myCRED-addon-notifications.php:199
|
2849 |
+
msgid "Template"
|
2850 |
+
msgstr "Plantilla"
|
2851 |
+
|
2852 |
+
#: modules/mycred-module-buddypress.php:454
|
2853 |
+
msgid "%plural% History"
|
2854 |
+
msgstr "Historial de %plural%"
|
2855 |
+
|
2856 |
+
#: modules/mycred-module-buddypress.php:471
|
2857 |
+
msgid "Members can view each others %_plural% history."
|
2858 |
+
msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
|
2859 |
+
|
2860 |
+
#: modules/mycred-module-buddypress.php:476
|
2861 |
+
msgid "Menu Title"
|
2862 |
+
msgstr "Título de Menú"
|
2863 |
+
|
2864 |
+
#: modules/mycred-module-buddypress.php:478
|
2865 |
+
msgid "Title shown to me"
|
2866 |
+
msgstr "Título mostrado a mi"
|
2867 |
+
|
2868 |
+
#: modules/mycred-module-buddypress.php:483
|
2869 |
+
msgid "Title shown to others. Use %s to show the first name."
|
2870 |
+
msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
|
2871 |
+
|
2872 |
+
#: modules/mycred-module-buddypress.php:488
|
2873 |
+
msgid "Menu Position"
|
2874 |
+
msgstr "Posición del Menú"
|
2875 |
+
|
2876 |
+
#: modules/mycred-module-buddypress.php:490
|
2877 |
+
msgid "Current menu positions:"
|
2878 |
+
msgstr "Posiciones Acuales del Menú"
|
2879 |
+
|
2880 |
+
#: modules/mycred-module-buddypress.php:495
|
2881 |
+
msgid "History URL slug"
|
2882 |
+
msgstr "La ficha historial de la URL"
|
2883 |
+
|
2884 |
+
#: modules/mycred-module-buddypress.php:497
|
2885 |
+
msgid "Do not use empty spaces!"
|
2886 |
+
msgstr "¡No utilice espacios vacíos!"
|
2887 |
+
|
2888 |
+
#: modules/mycred-module-buddypress.php:502
|
2889 |
+
msgid "Number of history entries to show"
|
2890 |
+
msgstr "Numero de entradas de historial a mostrar"
|
2891 |
+
|
2892 |
+
#. does this really need to be translated?
|
2893 |
+
#: plugins/mycred-hook-invite-anyone.php:15
|
2894 |
+
msgid "Invite Anyone Plugin"
|
2895 |
+
msgstr "Invite Anyone Plugin"
|
2896 |
+
|
2897 |
+
#: plugins/mycred-hook-invite-anyone.php:16
|
2898 |
+
msgid ""
|
2899 |
+
"Awards %_plural% for sending invitations and/or %_plural% if the invite is "
|
2900 |
+
"accepted."
|
2901 |
+
msgstr ""
|
2902 |
+
"Concede %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
|
2903 |
+
"invitación."
|
2904 |
+
|
2905 |
+
#: plugins/mycred-hook-invite-anyone.php:204
|
2906 |
+
msgid "%plural% for Sending An Invite"
|
2907 |
+
msgstr "%plural% por Enviar una Invitación"
|
2908 |
+
|
2909 |
+
#: plugins/mycred-hook-invite-anyone.php:211
|
2910 |
+
#: plugins/mycred-hook-invite-anyone.php:232
|
2911 |
+
#: plugins/mycred-hook-wp-postratings.php:173
|
2912 |
+
#: plugins/mycred-hook-wp-postratings.php:192
|
2913 |
+
#: plugins/mycred-hook-gravityforms.php:165
|
2914 |
+
#: plugins/mycred-hook-simplepress.php:309
|
2915 |
+
#: plugins/mycred-hook-simplepress.php:322
|
2916 |
+
#: plugins/mycred-hook-simplepress.php:339
|
2917 |
+
#: plugins/mycred-hook-simplepress.php:357
|
2918 |
+
#: plugins/mycred-hook-buddypress.php:621
|
2919 |
+
#: plugins/mycred-hook-buddypress.php:638
|
2920 |
+
#: plugins/mycred-hook-buddypress.php:655
|
2921 |
+
#: plugins/mycred-hook-buddypress.php:672
|
2922 |
+
#: plugins/mycred-hook-buddypress.php:692
|
2923 |
+
#: plugins/mycred-hook-buddypress.php:705
|
2924 |
+
#: plugins/mycred-hook-buddypress.php:722
|
2925 |
+
#: plugins/mycred-hook-buddypress.php:735
|
2926 |
+
#: plugins/mycred-hook-buddypress.php:752
|
2927 |
+
#: plugins/mycred-hook-buddypress.php:765
|
2928 |
+
#: plugins/mycred-hook-buddypress.php:782
|
2929 |
+
#: plugins/mycred-hook-buddypress.php:799
|
2930 |
+
#: plugins/mycred-hook-buddypress.php:1429
|
2931 |
+
#: plugins/mycred-hook-buddypress.php:1442
|
2932 |
+
#: plugins/mycred-hook-buddypress.php:1459
|
2933 |
+
#: plugins/mycred-hook-buddypress.php:1476
|
2934 |
+
#: plugins/mycred-hook-buddypress.php:1493
|
2935 |
+
#: plugins/mycred-hook-buddypress.php:1510
|
2936 |
+
#: plugins/mycred-hook-buddypress.php:1528
|
2937 |
+
#: plugins/mycred-hook-buddypress.php:1541
|
2938 |
+
#: plugins/mycred-hook-buddypress.php:1558
|
2939 |
+
#: plugins/mycred-hook-buddypress.php:1575
|
2940 |
+
#: plugins/mycred-hook-buddypress.php:1592
|
2941 |
+
#: plugins/mycred-hook-affiliatewp.php:229
|
2942 |
+
#: plugins/mycred-hook-affiliatewp.php:246
|
2943 |
+
#: plugins/mycred-hook-sharethis.php:267
|
2944 |
+
#: plugins/mycred-hook-buddypress-media.php:316
|
2945 |
+
#: plugins/mycred-hook-buddypress-media.php:330
|
2946 |
+
#: plugins/mycred-hook-buddypress-media.php:344
|
2947 |
+
#: plugins/mycred-hook-buddypress-media.php:357
|
2948 |
+
#: plugins/mycred-hook-buddypress-media.php:367
|
2949 |
+
#: plugins/mycred-hook-buddypress-media.php:377
|
2950 |
+
#: plugins/mycred-hook-contact-form7.php:168
|
2951 |
+
#: plugins/mycred-hook-jetpack.php:545 plugins/mycred-hook-jetpack.php:558
|
2952 |
+
#: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:456
|
2953 |
+
#: plugins/mycred-hook-bbPress.php:473 plugins/mycred-hook-bbPress.php:491
|
2954 |
+
#: plugins/mycred-hook-bbPress.php:508 plugins/mycred-hook-bbPress.php:525
|
2955 |
+
#: plugins/mycred-hook-bbPress.php:551 plugins/mycred-hook-badgeOS.php:336
|
2956 |
+
#: addons/badges/myCRED-addon-badges.php:949
|
2957 |
+
msgid "Log template"
|
2958 |
+
msgstr "Plantilla de Registro"
|
2959 |
+
|
2960 |
+
#: plugins/mycred-hook-invite-anyone.php:216
|
2961 |
+
#: plugins/mycred-hook-invite-anyone.php:219
|
2962 |
+
#: plugins/mycred-hook-invite-anyone.php:237
|
2963 |
+
#: plugins/mycred-hook-invite-anyone.php:240
|
2964 |
+
#: plugins/mycred-hook-wp-postratings.php:165
|
2965 |
+
#: plugins/mycred-hook-wp-postratings.php:184
|
2966 |
+
#: plugins/mycred-hook-gravityforms.php:160
|
2967 |
+
#: plugins/mycred-hook-simplepress.php:304
|
2968 |
+
#: plugins/mycred-hook-simplepress.php:334
|
2969 |
+
#: plugins/mycred-hook-buddypress.php:616
|
2970 |
+
#: plugins/mycred-hook-buddypress.php:633
|
2971 |
+
#: plugins/mycred-hook-buddypress.php:650
|
2972 |
+
#: plugins/mycred-hook-buddypress.php:667
|
2973 |
+
#: plugins/mycred-hook-buddypress.php:684
|
2974 |
+
#: plugins/mycred-hook-buddypress.php:717
|
2975 |
+
#: plugins/mycred-hook-buddypress.php:747
|
2976 |
+
#: plugins/mycred-hook-buddypress.php:777
|
2977 |
+
#: plugins/mycred-hook-buddypress.php:794
|
2978 |
+
#: plugins/mycred-hook-buddypress.php:1454
|
2979 |
+
#: plugins/mycred-hook-buddypress.php:1471
|
2980 |
+
#: plugins/mycred-hook-buddypress.php:1488
|
2981 |
+
#: plugins/mycred-hook-buddypress.php:1505
|
2982 |
+
#: plugins/mycred-hook-buddypress.php:1523
|
2983 |
+
#: plugins/mycred-hook-buddypress.php:1553
|
2984 |
+
#: plugins/mycred-hook-buddypress.php:1570
|
2985 |
+
#: plugins/mycred-hook-buddypress.php:1587
|
2986 |
+
#: plugins/mycred-hook-affiliatewp.php:241
|
2987 |
+
#: plugins/mycred-hook-events-manager-light.php:205
|
2988 |
+
#: plugins/mycred-hook-sharethis.php:262
|
2989 |
+
#: plugins/mycred-hook-buddypress-media.php:312
|
2990 |
+
#: plugins/mycred-hook-buddypress-media.php:326
|
2991 |
+
#: plugins/mycred-hook-buddypress-media.php:340
|
2992 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:222
|
2993 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:240
|
2994 |
+
#: plugins/mycred-hook-contact-form7.php:163
|
2995 |
+
#: plugins/mycred-hook-bbPress.php:438 plugins/mycred-hook-bbPress.php:468
|
2996 |
+
#: plugins/mycred-hook-bbPress.php:503 plugins/mycred-hook-bbPress.php:520
|
2997 |
+
#: plugins/mycred-hook-woocommerce.php:336
|
2998 |
+
#: includes/shortcodes/mycred_hook_table.php:81
|
2999 |
+
#: addons/transfer/myCRED-addon-transfer.php:478
|
3000 |
+
msgid "Limit"
|
3001 |
+
msgstr "Límite"
|
3002 |
+
|
3003 |
+
#: plugins/mycred-hook-invite-anyone.php:224
|
3004 |
+
msgid "%plural% for Accepting An Invite"
|
3005 |
+
msgstr "%plural% por Aceptar una Invitación"
|
3006 |
+
|
3007 |
+
#: plugins/mycred-hook-invite-anyone.php:228
|
3008 |
+
msgid "%plural% for each invited user that accepts an invitation."
|
3009 |
+
msgstr "%plural% por cada usuario invitado que acepta la invitación."
|
3010 |
+
|
3011 |
+
#: plugins/mycred-hook-wp-polls.php:15
|
3012 |
+
msgid "WP-Polls"
|
3013 |
+
msgstr "WP-Polls"
|
3014 |
+
|
3015 |
+
#: plugins/mycred-hook-wp-polls.php:16
|
3016 |
+
msgid "Awards %_plural% for users voting in polls."
|
3017 |
+
msgstr ""
|
3018 |
+
"Concede %_plural% a usuarios que han votado en encuestas.Concede %_plural% a "
|
3019 |
+
"usuarios que han votado en encuestas."
|
3020 |
+
|
3021 |
+
#. can also be "Plantilla de Bitácora"
|
3022 |
+
#: plugins/mycred-hook-wp-polls.php:154
|
3023 |
+
#: plugins/mycred-hook-events-manager-light.php:209
|
3024 |
+
#: plugins/mycred-hook-events-manager-light.php:222
|
3025 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:226
|
3026 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:244
|
3027 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:258
|
3028 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:271
|
3029 |
+
#: plugins/mycred-hook-woocommerce.php:340 plugins/mycred-hook-badgeOS.php:143
|
3030 |
+
#: plugins/mycred-hook-badgeOS.php:145 plugins/mycred-hook-badgeOS.php:156
|
3031 |
+
#: addons/coupons/myCRED-addon-coupons.php:661
|
3032 |
+
#: addons/banking/services/mycred-service-interest.php:510
|
3033 |
+
#: addons/banking/services/mycred-service-payouts.php:710
|
3034 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:400
|
3035 |
+
#: addons/gateway/carts/mycred-woocommerce.php:103
|
3036 |
+
#: addons/gateway/carts/mycred-woocommerce.php:175
|
3037 |
+
#: addons/buy-creds/modules/buycred-module-core.php:357
|
3038 |
+
#: addons/buy-creds/modules/buycred-module-core.php:420
|
3039 |
+
msgid "Log Template"
|
3040 |
+
msgstr "Plantilla de Registro"
|
3041 |
+
|
3042 |
+
#: plugins/mycred-hook-gravityforms.php:15
|
3043 |
+
msgid "Gravityform Submissions"
|
3044 |
+
msgstr "Entregas de Gravityform"
|
3045 |
+
|
3046 |
+
#: plugins/mycred-hook-gravityforms.php:16
|
3047 |
+
msgid "Awards %_plural% for successful form submissions."
|
3048 |
+
msgstr "Concede %_plural% por el exitoso envío del formularios."
|
3049 |
+
|
3050 |
+
#: plugins/mycred-hook-gravityforms.php:129
|
3051 |
+
#: plugins/mycred-hook-contact-form7.php:130
|
3052 |
+
msgid "No forms found."
|
3053 |
+
msgstr "No se ha encontrado ningun formulario."
|
3054 |
+
|
3055 |
+
#: plugins/mycred-hook-simplepress.php:16
|
3056 |
+
msgid "Awards %_plural% for Simple:Press actions."
|
3057 |
+
msgstr "Concede %_plural% por acciones en Simple:Press."
|
3058 |
+
|
3059 |
+
#: plugins/mycred-hook-simplepress.php:298 plugins/mycred-hook-bbPress.php:462
|
3060 |
+
msgid "%plural% for New Topic"
|
3061 |
+
msgstr "%plural% por Nuevo Tema"
|
3062 |
+
|
3063 |
+
#: plugins/mycred-hook-simplepress.php:315 plugins/mycred-hook-bbPress.php:484
|
3064 |
+
msgid "%plural% for Topic Deletion"
|
3065 |
+
msgstr "%plural% por Borrar Tema"
|
3066 |
+
|
3067 |
+
#: plugins/mycred-hook-simplepress.php:328
|
3068 |
+
msgid "%plural% for New Topic Post"
|
3069 |
+
msgstr "%plural% por Nueva Publicacion "
|
3070 |
+
|
3071 |
+
#: plugins/mycred-hook-simplepress.php:346
|
3072 |
+
msgid "Topic authors can receive %_plural% for posting on their own Topic"
|
3073 |
+
msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
|
3074 |
+
|
3075 |
+
#: plugins/mycred-hook-simplepress.php:350
|
3076 |
+
msgid "%plural% for Topic Post Deletion"
|
3077 |
+
msgstr "%plural% por Borrar la Tema del Post"
|
3078 |
+
|
3079 |
+
#: plugins/mycred-hook-buddypress.php:16
|
3080 |
+
msgid "BuddyPress: Members"
|
3081 |
+
msgstr "BuddyPress: Miembros"
|
3082 |
+
|
3083 |
+
#: plugins/mycred-hook-buddypress.php:17
|
3084 |
+
msgid "Awards %_plural% for profile related actions."
|
3085 |
+
msgstr "Concede %_plural% por acciones relacionados al perfil."
|
3086 |
+
|
3087 |
+
#: plugins/mycred-hook-buddypress.php:24
|
3088 |
+
msgid "BuddyPress: Groups"
|
3089 |
+
msgstr "BuddyPress: Grupos"
|
3090 |
+
|
3091 |
+
#: plugins/mycred-hook-buddypress.php:25
|
3092 |
+
msgid ""
|
3093 |
+
"Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
|
3094 |
+
"zero to disable a specific hook."
|
3095 |
+
msgstr ""
|
3096 |
+
"Concede %_plural% para acciones relacionados a grupos. Usa negativo para "
|
3097 |
+
"sustraer %_plural% o cero para desabilitar un gancho especifico."
|
3098 |
+
|
3099 |
+
#: plugins/mycred-hook-buddypress.php:307
|
3100 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:591
|
3101 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:636
|
3102 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:727
|
3103 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:415
|
3104 |
+
msgid "Insufficient Funds"
|
3105 |
+
msgstr "Fondos Insuficientes"
|
3106 |
+
|
3107 |
+
#: plugins/mycred-hook-buddypress.php:678
|
3108 |
+
#: includes/classes/class.query-log.php:1564
|
3109 |
+
msgid "New Friendship"
|
3110 |
+
msgstr "Nueva Amistad"
|
3111 |
+
|
3112 |
+
#: plugins/mycred-hook-buddypress.php:728
|
3113 |
+
#: includes/classes/class.query-log.php:1552
|
3114 |
+
msgid "Deleted Comment"
|
3115 |
+
msgstr "Comentario Borrado"
|
3116 |
+
|
3117 |
+
#: plugins/mycred-hook-buddypress.php:788
|
3118 |
+
#: includes/classes/class.query-log.php:1571
|
3119 |
+
msgid "Sending Gift"
|
3120 |
+
msgstr "Mandando Regalo"
|
3121 |
+
|
3122 |
+
#: plugins/mycred-hook-buddypress.php:1415
|
3123 |
+
msgid "%plural% for Creating Groups"
|
3124 |
+
msgstr "%plural% por Creat Cupones"
|
3125 |
+
|
3126 |
+
#: plugins/mycred-hook-buddypress.php:1419
|
3127 |
+
msgid ""
|
3128 |
+
"If you use a negative value and the user does not have enough %_plural% the "
|
3129 |
+
"\"Create Group\" button will be disabled."
|
3130 |
+
msgstr ""
|
3131 |
+
"Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
|
3132 |
+
"\"Crear Grupo\" sera desactivada."
|
3133 |
+
|
3134 |
+
#: plugins/mycred-hook-buddypress.php:1423
|
3135 |
+
msgid "Number of members before awarding %_plural%"
|
3136 |
+
msgstr "Numero de miembros antes de conceder %_plural%"
|
3137 |
+
|
3138 |
+
#: plugins/mycred-hook-buddypress.php:1425
|
3139 |
+
msgid "Use zero to award %_plural% when group is created."
|
3140 |
+
msgstr "Ponga cero para %_plural% cuando se crea un grupo."
|
3141 |
+
|
3142 |
+
#: plugins/mycred-hook-buddypress.php:1435
|
3143 |
+
msgid "%plural% for Deleting Groups"
|
3144 |
+
msgstr "%plural% por Borrar Grupos"
|
3145 |
+
|
3146 |
+
#: plugins/mycred-hook-buddypress.php:1448
|
3147 |
+
msgid "%plural% for New Forum Topic"
|
3148 |
+
msgstr "%plural% por Nuevo Tema de Foro"
|
3149 |
+
|
3150 |
+
#: plugins/mycred-hook-buddypress.php:1465
|
3151 |
+
msgid "%plural% for Editing Forum Topic"
|
3152 |
+
msgstr "%plural% por Editar Tema de Foro"
|
3153 |
+
|
3154 |
+
#: plugins/mycred-hook-buddypress.php:1482
|
3155 |
+
msgid "%plural% for New Forum Post"
|
3156 |
+
msgstr "%plural% por Nueva Publicación en Foro"
|
3157 |
+
|
3158 |
+
#: plugins/mycred-hook-buddypress.php:1499
|
3159 |
+
msgid "%plural% for Editing Forum Post"
|
3160 |
+
msgstr "%plural% por Editar Publicación en Foro"
|
3161 |
+
|
3162 |
+
#: plugins/mycred-hook-buddypress.php:1516
|
3163 |
+
msgid "%plural% for Joining Groups"
|
3164 |
+
msgstr "%plural% por Unirse a Grupos"
|
3165 |
+
|
3166 |
+
#: plugins/mycred-hook-buddypress.php:1520
|
3167 |
+
msgid ""
|
3168 |
+
"If you use a negative value and the user does not have enough %_plural% the "
|
3169 |
+
"\"Join Group\" button will be disabled."
|
3170 |
+
msgstr ""
|
3171 |
+
"Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
|
3172 |
+
"\"Unirse a Grupo\" sera desactivada."
|
3173 |
+
|
3174 |
+
#: plugins/mycred-hook-buddypress.php:1534
|
3175 |
+
msgid "%plural% for Leaving Groups"
|
3176 |
+
msgstr "%plural% por Dejar Grupos"
|
3177 |
+
|
3178 |
+
#: plugins/mycred-hook-buddypress.php:1547
|
3179 |
+
msgid "%plural% for New Group Avatar"
|
3180 |
+
msgstr "%plural% por Nuevo Avatar de Grupo"
|
3181 |
+
|
3182 |
+
#: plugins/mycred-hook-buddypress.php:1581
|
3183 |
+
msgid "%plural% for New Group Comment"
|
3184 |
+
msgstr "%plural% por Nuevo Comentario Grupo"
|
3185 |
+
|
3186 |
+
#: plugins/mycred-hook-affiliatewp.php:235
|
3187 |
+
msgid "Referring Visitors"
|
3188 |
+
msgstr "Referiendo Visitantes"
|
3189 |
+
|
3190 |
+
#: plugins/mycred-hook-events-manager-light.php:15
|
3191 |
+
msgid "Events Manager"
|
3192 |
+
msgstr "Gestionamiento de Eventos"
|
3193 |
+
|
3194 |
+
#: plugins/mycred-hook-events-manager-light.php:16
|
3195 |
+
msgid "Awards %_plural% for users attending events."
|
3196 |
+
msgstr "Concede %_plural% para usuarios que asistieron actividades o eventos."
|
3197 |
+
|
3198 |
+
#: plugins/mycred-hook-events-manager-light.php:199
|
3199 |
+
msgid "Attending Event"
|
3200 |
+
msgstr "Asistir Evento"
|
3201 |
+
|
3202 |
+
#: plugins/mycred-hook-events-manager-light.php:216
|
3203 |
+
msgid "Cancelling Attendance"
|
3204 |
+
msgstr "Cancelando Asistencia"
|
3205 |
+
|
3206 |
+
#: plugins/mycred-hook-sharethis.php:15
|
3207 |
+
msgid "%plural% for Sharing"
|
3208 |
+
msgstr "%plural% para Compartir"
|
3209 |
+
|
3210 |
+
#: plugins/mycred-hook-sharethis.php:16
|
3211 |
+
msgid ""
|
3212 |
+
"Awards %_plural% for users sharing / liking your website content to popular "
|
3213 |
+
"social media sites."
|
3214 |
+
msgstr ""
|
3215 |
+
"Concede %_plural% a usuarios por compartir / gustar el contenido de tu sitio "
|
3216 |
+
"web atraves de sitio de los medios de comunicación social."
|
3217 |
+
|
3218 |
+
#: plugins/mycred-hook-sharethis.php:217
|
3219 |
+
msgid "Your ShareThis public key is not set."
|
3220 |
+
msgstr "Tu llave publico de ShareThis no ha sido configurado."
|
3221 |
+
|
3222 |
+
#: plugins/mycred-hook-sharethis.php:222
|
3223 |
+
msgid "No ShareThis services detected. Please check your installation."
|
3224 |
+
msgstr ""
|
3225 |
+
"Ningun servicio ShareThis detectado. Por favor verifique su instalación."
|
3226 |
+
|
3227 |
+
#: plugins/mycred-hook-buddypress-media.php:15
|
3228 |
+
msgid "rtMedia Galleries"
|
3229 |
+
msgstr "Galerías rtMedia (rtMedia Galleries)"
|
3230 |
+
|
3231 |
+
#: plugins/mycred-hook-buddypress-media.php:16
|
3232 |
+
msgid ""
|
3233 |
+
"Award / Deduct %_plural% for users creating albums or uploading new photos."
|
3234 |
+
msgstr ""
|
3235 |
+
"Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevos fotos."
|
3236 |
+
|
3237 |
+
#: plugins/mycred-hook-buddypress-media.php:305
|
3238 |
+
msgid "New Media Upload"
|
3239 |
+
msgstr "Subir Nuevo Media"
|
3240 |
+
|
3241 |
+
#: plugins/mycred-hook-buddypress-media.php:308
|
3242 |
+
#: includes/classes/class.query-log.php:1586
|
3243 |
+
msgid "Photo Upload"
|
3244 |
+
msgstr "Subir Foto"
|
3245 |
+
|
3246 |
+
#: plugins/mycred-hook-buddypress-media.php:322
|
3247 |
+
#: includes/classes/class.query-log.php:1587
|
3248 |
+
msgid "Video Upload"
|
3249 |
+
msgstr "Subir Video"
|
3250 |
+
|
3251 |
+
#: plugins/mycred-hook-buddypress-media.php:336
|
3252 |
+
#: includes/classes/class.query-log.php:1588
|
3253 |
+
msgid "Music Upload"
|
3254 |
+
msgstr "Subir Música"
|
3255 |
+
|
3256 |
+
#: plugins/mycred-hook-buddypress-media.php:350
|
3257 |
+
msgid "Delete Media"
|
3258 |
+
msgstr "Borrar Medios"
|
3259 |
+
|
3260 |
+
#: plugins/mycred-hook-buddypress-media.php:353
|
3261 |
+
msgid "Delete Photo"
|
3262 |
+
msgstr "Borrar Foto"
|
3263 |
+
|
3264 |
+
#: plugins/mycred-hook-buddypress-media.php:363
|
3265 |
+
msgid "Delete Video"
|
3266 |
+
msgstr "Borrar Video"
|
3267 |
+
|
3268 |
+
#: plugins/mycred-hook-buddypress-media.php:373
|
3269 |
+
msgid "Delete Music"
|
3270 |
+
msgstr "Borrar Música"
|
3271 |
+
|
3272 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:15
|
3273 |
+
msgid "WP Favorite Posts"
|
3274 |
+
msgstr "WP Favorite Posts"
|
3275 |
+
|
3276 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:16
|
3277 |
+
msgid "Awards %_plural% for users adding posts to their favorites."
|
3278 |
+
msgstr "Concede %_plural% a usuarios por añadir entradas a sus favoritos."
|
3279 |
+
|
3280 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:216
|
3281 |
+
msgid "Adding Content to Favorites"
|
3282 |
+
msgstr "Añadiendo Contenido a Favoritos"
|
3283 |
+
|
3284 |
+
#: plugins/mycred-hook-wp-favorite-posts.php:252
|
3285 |
+
msgid "Removing Content from Favorites"
|
3286 |
+
msgstr "Quitando Contenido de Favoritos"
|
3287 |
+
|
3288 |
+
#: plugins/mycred-hook-contact-form7.php:15
|
3289 |
+
msgid "Contact Form 7 Form Submissions"
|
3290 |
+
msgstr "Presentación Formulario de Contact Form 7"
|
3291 |
+
|
3292 |
+
#: plugins/mycred-hook-contact-form7.php:16
|
3293 |
+
msgid "Awards %_plural% for successful form submissions (by logged in users)."
|
3294 |
+
msgstr ""
|
3295 |
+
"Concede %_plural% por el exitoso envío del formulario (por usuarios que han "
|
3296 |
+
"iniciado sesión)"
|
3297 |
+
|
3298 |
+
#: plugins/mycred-hook-jetpack.php:15
|
3299 |
+
msgid "Jetpack Subscriptions"
|
3300 |
+
msgstr "Suscripciónes a Jetpack"
|
3301 |
+
|
3302 |
+
#: plugins/mycred-hook-jetpack.php:16
|
3303 |
+
msgid ""
|
3304 |
+
"Awards %_plural% for users signing up for site or comment updates using "
|
3305 |
+
"Jetpack."
|
3306 |
+
msgstr ""
|
3307 |
+
"Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio "
|
3308 |
+
"web o a los comentarios atraves de Jetpack."
|
3309 |
+
|
3310 |
+
#: plugins/mycred-hook-jetpack.php:538
|
3311 |
+
msgid "Site Subscriptions"
|
3312 |
+
msgstr "Suscripciónes al Sitio Web"
|
3313 |
+
|
3314 |
+
#: plugins/mycred-hook-jetpack.php:551
|
3315 |
+
msgid "Comment Subscriptions"
|
3316 |
+
msgstr "Suscripciónes a commentarios"
|
3317 |
+
|
3318 |
+
#: plugins/mycred-hook-bbPress.php:16
|
3319 |
+
msgid "Awards %_plural% for bbPress actions."
|
3320 |
+
msgstr "Concede %_plural% por acciones en bbPress."
|
3321 |
+
|
3322 |
+
#: plugins/mycred-hook-bbPress.php:432
|
3323 |
+
msgid "%plural% for New Forum"
|
3324 |
+
msgstr "%plural% por nuevo foro"
|
3325 |
+
|
3326 |
+
#: plugins/mycred-hook-bbPress.php:449
|
3327 |
+
msgid "%plural% for Forum Deletion"
|
3328 |
+
msgstr "%plural% por Eliminar Foro"
|
3329 |
+
|
3330 |
+
#: plugins/mycred-hook-bbPress.php:480
|
3331 |
+
msgid "Forum authors can receive %_plural% for creating new topics."
|
3332 |
+
msgstr "Autores "
|
3333 |
+
|
3334 |
+
#: plugins/mycred-hook-bbPress.php:497
|
3335 |
+
msgid "%plural% for Favorited Topic"
|
3336 |
+
msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
|
3337 |
+
|
3338 |
+
#: plugins/mycred-hook-bbPress.php:514
|
3339 |
+
msgid "%plural% for New Reply"
|
3340 |
+
msgstr "%plural% por Nueva Respuesta"
|
3341 |
+
|
3342 |
+
#: plugins/mycred-hook-bbPress.php:532
|
3343 |
+
msgid "Topic authors can receive %_plural% for replying to their own Topic"
|
3344 |
+
msgstr ""
|
3345 |
+
"Autor de la tema puede recibir %_plural% por responder a su propia Tema"
|
3346 |
+
|
3347 |
+
#: plugins/mycred-hook-bbPress.php:536
|
3348 |
+
msgid "Show users %_plural% balance in replies"
|
3349 |
+
msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
|
3350 |
+
|
3351 |
+
#: plugins/mycred-hook-bbPress.php:544
|
3352 |
+
msgid "%plural% for Reply Deletion"
|
3353 |
+
msgstr "%plural% para Borrar Respuesta"
|
3354 |
+
|
3355 |
+
#: plugins/mycred-hook-woocommerce.php:87
|
3356 |
+
msgid "Reward with %plural%"
|
3357 |
+
msgstr "Premiar con %plural%"
|
3358 |
+
|
3359 |
+
#: plugins/mycred-hook-woocommerce.php:216
|
3360 |
+
msgid "WooCommerce Product Reviews"
|
3361 |
+
msgstr ""
|
3362 |
+
" Revisión del Producto WooCommerce\n"
|
3363 |
+
|
3364 |
+
#: plugins/mycred-hook-woocommerce.php:217
|
3365 |
+
msgid ""
|
3366 |
+
"Awards %_plural% for users leaving reviews on your WooCommerce products."
|
3367 |
+
msgstr ""
|
3368 |
+
"Concede %_plural% a usuarios por escribir reseñas sobre tus productos "
|
3369 |
+
"WooCommerce."
|
3370 |
+
|
3371 |
+
#: plugins/mycred-hook-badgeOS.php:15
|
3372 |
+
msgid "BadgeOS"
|
3373 |
+
msgstr "BadgeOS"
|
3374 |
+
|
3375 |
+
#: plugins/mycred-hook-badgeOS.php:16
|
3376 |
+
msgid ""
|
3377 |
+
"Default settings for each BadgeOS Achievement type. These settings may be "
|
3378 |
+
"overridden for individual achievement type."
|
3379 |
+
msgstr ""
|
3380 |
+
"Configuraciones predefinidos para cada clase de BadgeOS Logro (Achievement). "
|
3381 |
+
"Estos ajustes pueden ser anulados para el tipo de logro individual."
|
3382 |
+
|
3383 |
+
#: plugins/mycred-hook-badgeOS.php:121
|
3384 |
+
msgid ""
|
3385 |
+
"Please setup your <a href=\"%s\">default settings</a> before using this "
|
3386 |
+
"feature."
|
3387 |
+
msgstr ""
|
3388 |
+
"Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> "
|
3389 |
+
"antes de usar este función."
|
3390 |
+
|
3391 |
+
#: plugins/mycred-hook-badgeOS.php:137 plugins/mycred-hook-badgeOS.php:139
|
3392 |
+
msgid "%plural% to Award"
|
3393 |
+
msgstr "%plural% a Conceder"
|
3394 |
+
|
3395 |
+
#. also "Ponga cero para inhabilitar"
|
3396 |
+
#: plugins/mycred-hook-badgeOS.php:141
|
3397 |
+
msgid "Use zero to disable"
|
3398 |
+
msgstr "Ponga cero para desactivar"
|
3399 |
+
|
3400 |
+
#: plugins/mycred-hook-badgeOS.php:154
|
3401 |
+
msgid "Deduction Log Template"
|
3402 |
+
msgstr "Plantilla de Registro Descontado"
|
3403 |
+
|
3404 |
+
#: plugins/mycred-hook-badgeOS.php:315
|
3405 |
+
msgid "Default %s for %s"
|
3406 |
+
msgstr "Predeterminar %s por %s"
|
3407 |
+
|
3408 |
+
#: plugins/mycred-hook-badgeOS.php:322
|
3409 |
+
msgid "Use zero to disable users gaining %_plural%"
|
3410 |
+
msgstr "Ponga cero para que los usuarios no obtengan %_plural%"
|
3411 |
+
|
3412 |
+
#: plugins/mycred-hook-badgeOS.php:326
|
3413 |
+
msgid "Default Log template"
|
3414 |
+
msgstr "Plantilla de Registro Predefinido"
|
3415 |
+
|
3416 |
+
#: includes/mycred-setup.php:50
|
3417 |
+
msgid "myCRED needs your attention."
|
3418 |
+
msgstr "myCRED precisa tu atención."
|
3419 |
+
|
3420 |
+
#: includes/mycred-setup.php:50
|
3421 |
+
msgid "Run Setup"
|
3422 |
+
msgstr "Ejecutar Configuración"
|
3423 |
+
|
3424 |
+
#: includes/mycred-setup.php:63 includes/mycred-setup.php:64
|
3425 |
+
msgid "myCRED Setup"
|
3426 |
+
msgstr "Instalación de myCRED"
|
3427 |
+
|
3428 |
+
#: includes/mycred-setup.php:105
|
3429 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:490
|
3430 |
+
msgid "%s Setup"
|
3431 |
+
msgstr "Configurar %s"
|
3432 |
+
|
3433 |
+
#: includes/mycred-remote.php:581
|
3434 |
+
msgid "This feature requires WordPress Permalinks to be setup and enabled!"
|
3435 |
+
msgstr ""
|
3436 |
+
"¡Esta característica técnica requiere que los Permalinks de Wordpress esten "
|
3437 |
+
"activados y configurado!"
|
3438 |
+
|
3439 |
+
#: includes/mycred-remote.php:585
|
3440 |
+
msgid "Click Update Settings to load the Remote API settings."
|
3441 |
+
msgstr ""
|
3442 |
+
"Haga clic sobre Actualizar Configuraciones para cargar la configuración de "
|
3443 |
+
"API remoto."
|
3444 |
+
|
3445 |
+
#: includes/mycred-remote.php:588
|
3446 |
+
msgid "Allow Remote Access"
|
3447 |
+
msgstr "Permita Acceso Remoto"
|
3448 |
+
|
3449 |
+
#: includes/mycred-remote.php:613
|
3450 |
+
msgid "Remote Access"
|
3451 |
+
msgstr "Acceso Remoto"
|
3452 |
+
|
3453 |
+
#: includes/mycred-remote.php:615 addons/buy-creds/gateways/bitpay.php:245
|
3454 |
+
msgid "API Key"
|
3455 |
+
msgstr "Clave de la API"
|
3456 |
+
|
3457 |
+
#: includes/mycred-remote.php:618
|
3458 |
+
msgid "Key"
|
3459 |
+
msgstr "Clave"
|
3460 |
+
|
3461 |
+
#: includes/mycred-remote.php:620
|
3462 |
+
msgid "Required for this feature to work!<br />Minimum 12 characters."
|
3463 |
+
msgstr ""
|
3464 |
+
"¡Precisado para que esta característica técnica funcione!<br /> Minimo 12 "
|
3465 |
+
"símbolos."
|
3466 |
+
|
3467 |
+
#: includes/mycred-remote.php:623
|
3468 |
+
msgid "Key Length"
|
3469 |
+
msgstr "Longitud de la Clave"
|
3470 |
+
|
3471 |
+
#: includes/mycred-remote.php:628
|
3472 |
+
msgid "Generate New Key"
|
3473 |
+
msgstr "Generar nueva clave"
|
3474 |
+
|
3475 |
+
#: includes/mycred-remote.php:630
|
3476 |
+
msgid "Warning!"
|
3477 |
+
msgstr "¡Aviso!"
|
3478 |
+
|
3479 |
+
#: includes/mycred-remote.php:630
|
3480 |
+
msgid ""
|
3481 |
+
"Keep this key safe! Those you share this key with will be able to remotely "
|
3482 |
+
"deduct / add / transfer %plural%!"
|
3483 |
+
msgstr ""
|
3484 |
+
"¡Mantenga la seguridad de esta clave! Aquellos con quien compartes esta "
|
3485 |
+
"clave podran restar / añadir / transferir %plural% de forma remota."
|
3486 |
+
|
3487 |
+
#: includes/mycred-remote.php:632
|
3488 |
+
msgid "Incoming URI"
|
3489 |
+
msgstr "URI Entrante"
|
3490 |
+
|
3491 |
+
#: includes/mycred-remote.php:636
|
3492 |
+
msgid ""
|
3493 |
+
"The incoming call address. Remote calls made to any other URL will be "
|
3494 |
+
"ignored."
|
3495 |
+
msgstr ""
|
3496 |
+
"La dirección de la llamada entrante. Se ignorará las llamadas remotas a "
|
3497 |
+
"cualquier otro URL."
|
3498 |
+
|
3499 |
+
#: includes/mycred-remote.php:639
|
3500 |
+
msgid "Debug Mode"
|
3501 |
+
msgstr "Modo de Depuración"
|
3502 |
+
|
3503 |
+
#: includes/mycred-remote.php:642
|
3504 |
+
msgid ""
|
3505 |
+
"Remember to disable when not used to prevent mischievous calls from learning "
|
3506 |
+
"about your setup!"
|
3507 |
+
msgstr ""
|
3508 |
+
"Recuerda a desactivarlo cuando no está en uso para prevenir que llamadas "
|
3509 |
+
"maliciosas conozcan detalles de tu configuración!"
|
3510 |
+
|
3511 |
+
#: includes/mycred-about.php:32
|
3512 |
+
msgid "Welcome to %s %s"
|
3513 |
+
msgstr "Bienvenido a %s %s"
|
3514 |
+
|
3515 |
+
#: includes/mycred-overview.php:25
|
3516 |
+
msgid "%s Overview"
|
3517 |
+
msgstr "Descripción de %s"
|
3518 |
+
|
3519 |
+
#: includes/mycred-overview.php:82
|
3520 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:136
|
3521 |
+
#: addons/stats/widgets/mycred-stats-widget-circulation.php:265
|
3522 |
+
msgid "Total amount in circulation"
|
3523 |
+
msgstr "Suma total en circulación"
|
3524 |
+
|
3525 |
+
#. also, "Otorgado"
|
3526 |
+
#: includes/mycred-overview.php:85
|
3527 |
+
msgid "Awarded"
|
3528 |
+
msgstr "Concedido"
|
3529 |
+
|
3530 |
+
#: includes/mycred-overview.php:88
|
3531 |
+
msgid "Deducted"
|
3532 |
+
msgstr "Deducido"
|
3533 |
+
|
3534 |
+
#: includes/mycred-install.php:73
|
3535 |
+
msgid "myCRED requires SQL 5.0 or higher. Version detected: "
|
3536 |
+
msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
|
3537 |
+
|
3538 |
+
#: includes/mycred-install.php:78
|
3539 |
+
msgid ""
|
3540 |
+
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
3541 |
+
"check your PHP configuration or contact your host and ask them to enable it "
|
3542 |
+
"for you!"
|
3543 |
+
msgstr ""
|
3544 |
+
"La biblioteca PHP mcrypt debe ser habilitado para poder usar este plugin! "
|
3545 |
+
"Por favor verifica tu configuración de PHP o contacta a tu web host y "
|
3546 |
+
"pideles que lo habiliten para ti!"
|
3547 |
+
|
3548 |
+
#: includes/mycred-install.php:83
|
3549 |
+
msgid ""
|
3550 |
+
"Sorry but your WordPress installation does not reach the minimum "
|
3551 |
+
"requirements for running myCRED. The following errors were given:"
|
3552 |
+
msgstr ""
|
3553 |
+
"Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
|
3554 |
+
"mínimos de mycred. Se produce los siguientes errores:"
|
3555 |
+
|
3556 |
+
#: includes/mycred-widgets.php:19
|
3557 |
+
msgid "(%s) My Balance"
|
3558 |
+
msgstr "(%s) Mi Saldo"
|
3559 |
+
|
3560 |
+
#: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
|
3561 |
+
#: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1366
|
3562 |
+
#: addons/gateway/carts/mycred-woocommerce.php:91
|
3563 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:78
|
3564 |
+
#: addons/sell-content/includes/mycred-sell-shortcodes.php:186
|
3565 |
+
#: addons/buy-creds/gateways/bank-transfer.php:161
|
3566 |
+
#: addons/buy-creds/gateways/skrill.php:333
|
3567 |
+
msgid "Title"
|
3568 |
+
msgstr "Titulo"
|
3569 |
+
|
3570 |
+
#: includes/mycred-widgets.php:199
|
3571 |
+
msgid "Include history"
|
3572 |
+
msgstr "Incluir el historial"
|
3573 |
+
|
3574 |
+
#: includes/mycred-widgets.php:203
|
3575 |
+
msgid "History Title"
|
3576 |
+
msgstr "Titulo de Historial"
|
3577 |
+
|
3578 |
+
#. the English needs to be corrected to "Number of Entries"
|
3579 |
+
#: includes/mycred-widgets.php:207
|
3580 |
+
msgid "Number of entires"
|
3581 |
+
msgstr "Numero de Entradas"
|
3582 |
+
|
3583 |
+
#: includes/mycred-widgets.php:211 includes/mycred-widgets.php:386
|
3584 |
+
msgid "Row layout"
|
3585 |
+
msgstr "Disposición de Filas"
|
3586 |
+
|
3587 |
+
#: includes/mycred-widgets.php:218 includes/mycred-widgets.php:586
|
3588 |
+
msgid "Show message when not logged in"
|
3589 |
+
msgstr "Mostrar mensaje cuando no ha iniciado la sesión"
|
3590 |
+
|
3591 |
+
#: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
|
3592 |
+
msgid "Message"
|
3593 |
+
msgstr "Mensaje"
|
3594 |
+
|
3595 |
+
#: includes/mycred-widgets.php:282
|
3596 |
+
msgid "(%s) Leaderboard"
|
3597 |
+
msgstr "(%s) Tabla de Clasificación"
|
3598 |
+
|
3599 |
+
#: includes/mycred-widgets.php:373
|
3600 |
+
msgid "Based On"
|
3601 |
+
msgstr "Basado Sobre"
|
3602 |
+
|
3603 |
+
#: includes/mycred-widgets.php:375
|
3604 |
+
msgid ""
|
3605 |
+
"Use \"balance\" to base the leaderboard on your users current balances or "
|
3606 |
+
"use a specific reference."
|
3607 |
+
msgstr ""
|
3608 |
+
"Utiliza \"saldo\" para basar la tabla de clasificación sobre los saldos "
|
3609 |
+
"actuales de tus usuarios o utiliza una referencia especifica."
|
3610 |
+
|
3611 |
+
#: includes/mycred-widgets.php:375
|
3612 |
+
msgid "Reference Guide"
|
3613 |
+
msgstr "Guia de Referencia"
|
3614 |
+
|
3615 |
+
#: includes/mycred-widgets.php:379
|
3616 |
+
msgid "Visible to non-members"
|
3617 |
+
msgstr "Visible al público (no miembros)"
|
3618 |
+
|
3619 |
+
#: includes/mycred-widgets.php:382
|
3620 |
+
msgid "Number of users"
|
3621 |
+
msgstr "Numero de Usuarios"
|
3622 |
+
|
3623 |
+
#: includes/mycred-widgets.php:391
|
3624 |
+
msgid "Offset"
|
3625 |
+
msgstr "Offset"
|
3626 |
+
|
3627 |
+
#: includes/mycred-widgets.php:393
|
3628 |
+
msgid "Optional offset of order. Use zero to return the first in the list."
|
3629 |
+
msgstr ""
|
3630 |
+
"Opcional desplazamiento (offset) de la orden. Utilice cero para devolver el "
|
3631 |
+
"primero en la lista."
|
3632 |
+
|
3633 |
+
#: includes/mycred-widgets.php:396
|
3634 |
+
msgid "Order"
|
3635 |
+
msgstr "Orden"
|
3636 |
+
|
3637 |
+
#: includes/mycred-widgets.php:401 includes/classes/class.query-log.php:553
|
3638 |
+
msgid "Ascending"
|
3639 |
+
msgstr "Ascendente"
|
3640 |
+
|
3641 |
+
#: includes/mycred-widgets.php:402 includes/classes/class.query-log.php:553
|
3642 |
+
msgid "Descending"
|
3643 |
+
msgstr "Descendente"
|
3644 |
+
|
3645 |
+
#: includes/mycred-widgets.php:415
|
3646 |
+
msgid "Append current users position"
|
3647 |
+
msgstr "Añade la posición actual de usuarios "
|
3648 |
+
|
3649 |
+
#: includes/mycred-widgets.php:416
|
3650 |
+
msgid ""
|
3651 |
+
"If the current user is not in this leaderboard, you can select to append "
|
3652 |
+
"them at the end with their current position."
|
3653 |
+
msgstr ""
|
3654 |
+
"Si el usuario actual no esta en esta tabla de clasificación, puedes elegir a "
|
3655 |
+
"agregarles al final con su posición actual."
|
3656 |
+
|
3657 |
+
#: includes/mycred-widgets.php:469
|
3658 |
+
msgid "(%s) Wallet"
|
3659 |
+
msgstr "(%s) Cartera"
|
3660 |
+
|
3661 |
+
#: includes/mycred-widgets.php:579
|
3662 |
+
msgid "Row Layout"
|
3663 |
+
msgstr "Disposición de Filas"
|
3664 |
+
|
3665 |
+
#: includes/mycred-functions.php:85
|
3666 |
+
msgid "Point"
|
3667 |
+
msgstr "Punto"
|
3668 |
+
|
3669 |
+
#: includes/mycred-functions.php:86
|
3670 |
+
msgid "Points"
|
3671 |
+
msgstr "Puntos"
|
3672 |
+
|
3673 |
+
#: includes/mycred-functions.php:466
|
3674 |
+
msgid "Deleted"
|
3675 |
+
msgstr "Borrado"
|
3676 |
+
|
3677 |
+
#: includes/mycred-functions.php:607
|
3678 |
+
msgid "Deleted Item"
|
3679 |
+
msgstr "Artículo Borrado"
|
3680 |
+
|
3681 |
+
#: includes/mycred-functions.php:671
|
3682 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:861
|
3683 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:370
|
3684 |
+
msgid "General"
|
3685 |
+
msgstr "General"
|
3686 |
+
|
3687 |
+
#: includes/mycred-functions.php:678
|
3688 |
+
msgid "User Related"
|
3689 |
+
msgstr "Relacionado al Usuario"
|
3690 |
+
|
3691 |
+
#: includes/mycred-functions.php:685
|
3692 |
+
msgid "Post Related"
|
3693 |
+
msgstr "Relacionado a la Entrada"
|
3694 |
+
|
3695 |
+
#: includes/mycred-functions.php:692
|
3696 |
+
msgid "Comment Related"
|
3697 |
+
msgstr "Relacionado al Comentario"
|
3698 |
+
|
3699 |
+
#: includes/mycred-functions.php:699
|
3700 |
+
msgid "Widget Related"
|
3701 |
+
msgstr "Relacionado al Widget"
|
3702 |
+
|
3703 |
+
#: includes/mycred-functions.php:706
|
3704 |
+
msgid "Amount Related"
|
3705 |
+
msgstr "Cantidad Relacionada"
|
3706 |
+
|
3707 |
+
#: includes/mycred-functions.php:713
|
3708 |
+
msgid "Video Related"
|
3709 |
+
msgstr "Relacionado al Video"
|
3710 |
+
|
3711 |
+
#: includes/mycred-functions.php:724
|
3712 |
+
msgid "and"
|
3713 |
+
msgstr "y"
|
3714 |
+
|
3715 |
+
#: includes/mycred-functions.php:726
|
3716 |
+
msgid "Available Template Tags:"
|
3717 |
+
msgstr "Etiquetas de Plantilla Disponibles:"
|
3718 |
+
|
3719 |
+
#: includes/importers/mycred-cubepoints.php:298
|
3720 |
+
msgid "No balances were imported."
|
3721 |
+
msgstr "Ningun saldo fue importado."
|
3722 |
+
|
3723 |
+
#: includes/importers/mycred-cubepoints.php:298
|
3724 |
+
msgid "No log entries were imported!"
|
3725 |
+
msgstr "¡No se importo ninguna entrada de registro!"
|
3726 |
+
|
3727 |
+
#: includes/importers/mycred-cubepoints.php:306
|
3728 |
+
#: includes/importers/mycred-log-entries.php:168
|
3729 |
+
msgid ""
|
3730 |
+
"Import complete - A total of <strong>%d</strong> entries were successfully "
|
3731 |
+
"imported. <strong>%d</strong> was skipped."
|
3732 |
+
msgstr ""
|
3733 |
+
"Importación Finalizado - En total, <strong>%d</strong> entradas fueron "
|
3734 |
+
"importado con éxito. Se saltaron <strong>%d</strong>."
|
3735 |
+
|
3736 |
+
#: includes/importers/mycred-cubepoints.php:320
|
3737 |
+
#: includes/importers/mycred-balances.php:212
|
3738 |
+
#: includes/importers/mycred-log-entries.php:180
|
3739 |
+
#: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
|
3740 |
+
msgid "View Log"
|
3741 |
+
msgstr "Ver Registro"
|
3742 |
+
|
3743 |
+
#: includes/importers/mycred-cubepoints.php:320
|
3744 |
+
#: includes/importers/mycred-balances.php:212
|
3745 |
+
#: includes/importers/mycred-log-entries.php:180
|
3746 |
+
msgid "Import More"
|
3747 |
+
msgstr "Importar Más"
|
3748 |
+
|
3749 |
+
#: includes/importers/mycred-cubepoints.php:335
|
3750 |
+
msgid "No CubePoints log."
|
3751 |
+
msgstr "No hay registro de CubePoints."
|
3752 |
+
|
3753 |
+
#: includes/importers/mycred-cubepoints.php:348
|
3754 |
+
msgid "Import CubePoints Log"
|
3755 |
+
msgstr "Importar registro de CubePoints"
|
3756 |
+
|
3757 |
+
#: includes/importers/mycred-cubepoints.php:369
|
3758 |
+
msgid "Select what to import"
|
3759 |
+
msgstr "Elige lo que deseas importar"
|
3760 |
+
|
3761 |
+
#: includes/importers/mycred-cubepoints.php:370
|
3762 |
+
msgid "Log Entries Only"
|
3763 |
+
msgstr "Solo Entradas de Registro"
|
3764 |
+
|
3765 |
+
#: includes/importers/mycred-cubepoints.php:371
|
3766 |
+
msgid "CubePoints Balances Only"
|
3767 |
+
msgstr "Saldos de CubePoints Unicamente"
|
3768 |
+
|
3769 |
+
#: includes/importers/mycred-cubepoints.php:372
|
3770 |
+
msgid "Log Entries and Balances"
|
3771 |
+
msgstr "Solo Entradas y Saldos de Registro"
|
3772 |
+
|
3773 |
+
#: includes/importers/mycred-cubepoints.php:387
|
3774 |
+
msgid "Import"
|
3775 |
+
msgstr "Importar"
|
3776 |
+
|
3777 |
+
#: includes/importers/mycred-cubepoints.php:396
|
3778 |
+
msgid ""
|
3779 |
+
"Warning! Importing CubePoints balances will replace your users myCRED "
|
3780 |
+
"balance!"
|
3781 |
+
msgstr ""
|
3782 |
+
"¡Advertencia! ¡La importación de los saldos de CubePoints reemplazará el "
|
3783 |
+
"saldo de myCRED para tus usuarios!"
|
3784 |
+
|
3785 |
+
#: includes/importers/mycred-balances.php:104
|
3786 |
+
#: includes/importers/mycred-balances.php:187
|
3787 |
+
#: includes/importers/mycred-balances.php:230
|
3788 |
+
#: includes/importers/mycred-balances.php:245
|
3789 |
+
#: includes/importers/mycred-log-entries.php:104
|
3790 |
+
#: includes/importers/mycred-log-entries.php:153
|
3791 |
+
#: includes/importers/mycred-log-entries.php:199
|
3792 |
+
#: includes/importers/mycred-log-entries.php:216
|
3793 |
+
msgid "Sorry, there has been an error."
|
3794 |
+
msgstr "Lo sentimos, se ha producido un error."
|
3795 |
+
|
3796 |
+
#: includes/importers/mycred-balances.php:105
|
3797 |
+
#: includes/importers/mycred-log-entries.php:105
|
3798 |
+
msgid "The file does not exist, please try again."
|
3799 |
+
msgstr "El fichero no existe, por favor inténtelo de nuevo más tarde."
|
3800 |
+
|
3801 |
+
#: includes/importers/mycred-balances.php:188
|
3802 |
+
#: includes/importers/mycred-log-entries.php:154
|
3803 |
+
msgid "The CSV is invalid."
|
3804 |
+
msgstr "El CSV no es valido."
|
3805 |
+
|
3806 |
+
#: includes/importers/mycred-balances.php:200
|
3807 |
+
msgid ""
|
3808 |
+
"Import complete - A total of <strong>%d</strong> balances were successfully "
|
3809 |
+
"imported. <strong>%d</strong> was skipped."
|
3810 |
+
msgstr ""
|
3811 |
+
"Importación Finalizado - En total, <strong>%d</strong> saldos fueron "
|
3812 |
+
"importado con éxito. Se saltaron <strong>%d</strong>."
|
3813 |
+
|
3814 |
+
#: includes/importers/mycred-balances.php:261
|
3815 |
+
msgid "Import Balances"
|
3816 |
+
msgstr "Saldos Importar"
|
3817 |
+
|
3818 |
+
#: includes/importers/mycred-balances.php:282
|
3819 |
+
msgid "Import balances from a CSV file."
|
3820 |
+
msgstr "Importa saldos de registro desde un fichero CSV."
|
3821 |
+
|
3822 |
+
#: includes/importers/mycred-balances.php:293
|
3823 |
+
#: includes/importers/mycred-log-entries.php:263
|
3824 |
+
msgid ""
|
3825 |
+
"Before you can upload your import file, you will need to fix the following "
|
3826 |
+
"error:"
|
3827 |
+
msgstr ""
|
3828 |
+
"Antes que puedas subir tu fichero de importe, tendras que corregir los "
|
3829 |
+
"errores siguientes:"
|
3830 |
+
|
3831 |
+
#: includes/importers/mycred-balances.php:305
|
3832 |
+
#: includes/importers/mycred-log-entries.php:275
|
3833 |
+
msgid "Choose a file from your computer:"
|
3834 |
+
msgstr "Elige un fichero en tu ordenador:"
|
3835 |
+
|
3836 |
+
#: includes/importers/mycred-balances.php:311
|
3837 |
+
#: includes/importers/mycred-log-entries.php:281
|
3838 |
+
msgid "Maximum size: %s"
|
3839 |
+
msgstr "Tamaño Máximo: %s"
|
3840 |
+
|
3841 |
+
#: includes/importers/mycred-balances.php:316
|
3842 |
+
#: includes/importers/mycred-log-entries.php:286
|
3843 |
+
msgid "OR enter path to file:"
|
3844 |
+
msgstr "O rellena la ruta al fichero:"
|
3845 |
+
|
3846 |
+
#: includes/importers/mycred-balances.php:323
|
3847 |
+
#: includes/importers/mycred-log-entries.php:293
|
3848 |
+
msgid "Delimiter"
|
3849 |
+
msgstr "Delimitador"
|
3850 |
+
|
3851 |
+
#: includes/importers/mycred-balances.php:327
|
3852 |
+
msgid "Method"
|
3853 |
+
msgstr "Método"
|
3854 |
+
|
3855 |
+
#: includes/importers/mycred-balances.php:329
|
3856 |
+
msgid "Replace current balances with the amount in this CSV file"
|
3857 |
+
msgstr "Sustituir los balances actuales con los montos en el archivo CSV"
|
3858 |
+
|
3859 |
+
#: includes/importers/mycred-balances.php:330
|
3860 |
+
msgid "Adjust current balances according to the amount in this CSV file"
|
3861 |
+
msgstr "Ajustar los balances actuales de acuerdo al monto en el archivo CSV"
|
3862 |
+
|
3863 |
+
#: includes/importers/mycred-log-entries.php:232
|
3864 |
+
msgid "Import Log Entries"
|
3865 |
+
msgstr "Importar Entradas de Registro"
|
3866 |
+
|
3867 |
+
#: includes/importers/mycred-log-entries.php:253
|
3868 |
+
msgid "Import log entries from a CSV file."
|
3869 |
+
msgstr "Importa las entradas de registro desde un fichero CSV."
|
3870 |
+
|
3871 |
+
#: includes/shortcodes/mycred_exchange.php:33
|
3872 |
+
#: includes/shortcodes/mycred_exchange.php:41
|
3873 |
+
#: includes/shortcodes/mycred_exchange.php:136
|
3874 |
+
#: includes/shortcodes/mycred_exchange.php:156
|
3875 |
+
msgid "You are excluded from using %s."
|
3876 |
+
msgstr "Esta exluido del uso de %s."
|
3877 |
+
|
3878 |
+
#: includes/shortcodes/mycred_exchange.php:37
|
3879 |
+
#: includes/shortcodes/mycred_exchange.php:146
|
3880 |
+
msgid "Your balance is too low to use this feature."
|
3881 |
+
msgstr "Tu saldo esta demasiado bajo para usar esta característica."
|
3882 |
+
|
3883 |
+
#: includes/shortcodes/mycred_exchange.php:63
|
3884 |
+
msgid "Your current %s balance"
|
3885 |
+
msgstr "Tu Saldo Actual %s"
|
3886 |
+
|
3887 |
+
#: includes/shortcodes/mycred_exchange.php:70
|
3888 |
+
msgid "Minimum %s"
|
3889 |
+
msgstr "Minimo %s"
|
3890 |
+
|
3891 |
+
#: includes/shortcodes/mycred_exchange.php:75
|
3892 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:498
|
3893 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:578
|
3894 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:650
|
3895 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:389
|
3896 |
+
#: addons/gateway/carts/mycred-woocommerce.php:140
|
3897 |
+
msgid "Exchange Rate"
|
3898 |
+
msgstr "Tipo de Cambio"
|
3899 |
+
|
3900 |
+
#: includes/shortcodes/mycred_exchange.php:76
|
3901 |
+
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
3902 |
+
msgstr "1 %s = <span class=\"rate\">%s</span> %s"
|
3903 |
+
|
3904 |
+
#: includes/shortcodes/mycred_exchange.php:124
|
3905 |
+
msgid "Point types not found."
|
3906 |
+
msgstr "Clase de puntos no encontrado."
|
3907 |
+
|
3908 |
+
#: includes/shortcodes/mycred_exchange.php:169
|
3909 |
+
msgid "You must exchange at least %s!"
|
3910 |
+
msgstr "Debes intercambiar por lo menos %s!"
|
3911 |
+
|
3912 |
+
#: includes/shortcodes/mycred_exchange.php:178
|
3913 |
+
#: addons/transfer/myCRED-addon-transfer.php:153
|
3914 |
+
msgid "Insufficient Funds. Please try a lower amount."
|
3915 |
+
msgstr "Fondos Insuficientes. Por favor intenta con una cantidad menor."
|
3916 |
+
|
3917 |
+
#: includes/shortcodes/mycred_exchange.php:191
|
3918 |
+
msgid "Exchange from %s"
|
3919 |
+
msgstr "Intercambiar desde %s"
|
3920 |
+
|
3921 |
+
#: includes/shortcodes/mycred_exchange.php:203
|
3922 |
+
msgid "Exchange to %s"
|
3923 |
+
msgstr "Intercambiar a %s"
|
3924 |
+
|
3925 |
+
#: includes/shortcodes/mycred_exchange.php:211
|
3926 |
+
msgid "You have successfully exchanged %s into %s."
|
3927 |
+
msgstr "Has intercambiado %s a %s con éxito."
|
3928 |
+
|
3929 |
+
#: includes/shortcodes/mycred_video.php:44
|
3930 |
+
msgid "A video ID is required for this shortcode"
|
3931 |
+
msgstr "Este código corto (shortcode) precisa un ID del video."
|
3932 |
+
|
3933 |
+
#: includes/classes/class.query-export.php:374
|
3934 |
+
#: includes/classes/class.query-log.php:979
|
3935 |
+
msgid "User Missing"
|
3936 |
+
msgstr "Usuario Ausente"
|
3937 |
+
|
3938 |
+
#: includes/classes/class.query-export.php:487
|
3939 |
+
msgid "Search Results"
|
3940 |
+
msgstr "Resultados de la Búsqueda"
|
3941 |
+
|
3942 |
+
#: includes/classes/class.query-log.php:427
|
3943 |
+
msgid "No log entries found"
|
3944 |
+
msgstr "Ninguna entrada de registro encontrada"
|
3945 |
+
|
3946 |
+
#: includes/classes/class.query-log.php:527
|
3947 |
+
msgid "Show all references"
|
3948 |
+
msgstr "Muestra todas las referencias"
|
3949 |
+
|
3950 |
+
#: includes/classes/class.query-log.php:552
|
3951 |
+
msgid "Show in order"
|
3952 |
+
msgstr "Mostrar en Orden"
|
3953 |
+
|
3954 |
+
#: includes/classes/class.query-log.php:573
|
3955 |
+
msgid "Filter"
|
3956 |
+
msgstr "Filtro"
|
3957 |
+
|
3958 |
+
#: includes/classes/class.query-log.php:1147
|
3959 |
+
msgid "No export options available."
|
3960 |
+
msgstr "No hay opciones para exportar."
|
3961 |
+
|
3962 |
+
#: includes/classes/class.query-log.php:1178
|
3963 |
+
#: includes/classes/class.query-log.php:1180
|
3964 |
+
msgid "Search Log"
|
3965 |
+
msgstr "Busqueda de Registro"
|
3966 |
+
|
3967 |
+
#. buscar las entradas en el registro
|
3968 |
+
#: includes/classes/class.query-log.php:1179
|
3969 |
+
msgid "search log entries"
|
3970 |
+
msgstr "Búsqueda de las entradas de registro"
|
3971 |
+
|
3972 |
+
#: includes/classes/class.query-log.php:1543
|
3973 |
+
msgid "Website Registration"
|
3974 |
+
msgstr "Inscripción del Sitio Web"
|
3975 |
+
|
3976 |
+
#: includes/classes/class.query-log.php:1544
|
3977 |
+
msgid "Website Visit"
|
3978 |
+
msgstr "Visita de Sitio Web"
|
3979 |
+
|
3980 |
+
#: includes/classes/class.query-log.php:1545
|
3981 |
+
msgid "Viewing Content (Member)"
|
3982 |
+
msgstr "Viendo Contenido (Miembro)"
|
3983 |
+
|
3984 |
+
#: includes/classes/class.query-log.php:1546
|
3985 |
+
msgid "Viewing Content (Author)"
|
3986 |
+
msgstr "Viendo Contenido (Autor)"
|
3987 |
+
|
3988 |
+
#: includes/classes/class.query-log.php:1547
|
3989 |
+
msgid "Logging in"
|
3990 |
+
msgstr "Accediendo"
|
3991 |
+
|
3992 |
+
#: includes/classes/class.query-log.php:1548
|
3993 |
+
msgid "Publishing Content"
|
3994 |
+
msgstr "Publicando Contenido"
|
3995 |
+
|
3996 |
+
#: includes/classes/class.query-log.php:1549
|
3997 |
+
msgid "Approved Comment"
|
3998 |
+
msgstr "Comentario Aprobado"
|
3999 |
+
|
4000 |
+
#: includes/classes/class.query-log.php:1550
|
4001 |
+
msgid "Unapproved Comment"
|
4002 |
+
msgstr "Comentario no Aprobado"
|
4003 |
+
|
4004 |
+
#: includes/classes/class.query-log.php:1551
|
4005 |
+
msgid "SPAM Comment"
|
4006 |
+
msgstr "Comentario SPAM"
|
4007 |
+
|
4008 |
+
#: includes/classes/class.query-log.php:1553
|
4009 |
+
msgid "Link Click"
|
4010 |
+
msgstr "Click al Enlace"
|
4011 |
+
|
4012 |
+
#: includes/classes/class.query-log.php:1554
|
4013 |
+
msgid "Watching Video"
|
4014 |
+
msgstr "Mirando Video"
|
4015 |
+
|
4016 |
+
#: includes/classes/class.query-log.php:1555
|
4017 |
+
msgid "Visitor Referral"
|
4018 |
+
msgstr "Referencia de Visitante"
|
4019 |
+
|
4020 |
+
#: includes/classes/class.query-log.php:1556
|
4021 |
+
msgid "Signup Referral"
|
4022 |
+
msgstr "Referencia de Inscripción "
|
4023 |
+
|
4024 |
+
#: includes/classes/class.query-log.php:1560
|
4025 |
+
msgid "New Profile Update"
|
4026 |
+
msgstr "Nuevo Perfil Actualizado"
|
4027 |
+
|
4028 |
+
#: includes/classes/class.query-log.php:1562
|
4029 |
+
msgid "Avatar Upload"
|
4030 |
+
msgstr "Subir Avatar"
|
4031 |
+
|
4032 |
+
#: includes/classes/class.query-log.php:1565
|
4033 |
+
msgid "Ended Friendship"
|
4034 |
+
msgstr "Amistad Terminada"
|
4035 |
+
|
4036 |
+
#: includes/classes/class.query-log.php:1566
|
4037 |
+
msgid "New Profile Comment"
|
4038 |
+
msgstr "Nuevo Comentario de Perfil"
|
4039 |
+
|
4040 |
+
#: includes/classes/class.query-log.php:1567
|
4041 |
+
msgid "Profile Comment Deletion"
|
4042 |
+
msgstr "Borrar Comentario del Perfil"
|
4043 |
+
|
4044 |
+
#: includes/classes/class.query-log.php:1570
|
4045 |
+
msgid "New Message"
|
4046 |
+
msgstr "Nuevo Mensaje"
|
4047 |
+
|
4048 |
+
#: includes/classes/class.query-log.php:1572
|
4049 |
+
msgid "New Group"
|
4050 |
+
msgstr "Nuevo Grupo"
|
4051 |
+
|
4052 |
+
#: includes/classes/class.query-log.php:1573
|
4053 |
+
msgid "Deleted Group"
|
4054 |
+
msgstr "Grupo Borrado"
|
4055 |
+
|
4056 |
+
#: includes/classes/class.query-log.php:1574
|
4057 |
+
msgid "New Group Forum Topic"
|
4058 |
+
msgstr "Nuevo Tema del Fórum de Grupo"
|
4059 |
+
|
4060 |
+
#: includes/classes/class.query-log.php:1575
|
4061 |
+
msgid "Edit Group Forum Topic"
|
4062 |
+
msgstr "Editar el Tema del Fórum de Grupo"
|
4063 |
+
|
4064 |
+
#: includes/classes/class.query-log.php:1576
|
4065 |
+
msgid "New Group Forum Post"
|
4066 |
+
msgstr "Nueva Entrada del Fórum de Grupo"
|
4067 |
+
|
4068 |
+
#: includes/classes/class.query-log.php:1577
|
4069 |
+
msgid "Edit Group Forum Post"
|
4070 |
+
msgstr "Editar Entrada del Fórum de Grupo"
|
4071 |
+
|
4072 |
+
#: includes/classes/class.query-log.php:1578
|
4073 |
+
msgid "Joining Group"
|
4074 |
+
msgstr "Agregar al Grupo"
|
4075 |
+
|
4076 |
+
#: includes/classes/class.query-log.php:1579
|
4077 |
+
msgid "Leaving Group"
|
4078 |
+
msgstr "Dejando el Grupo"
|
4079 |
+
|
4080 |
+
#: includes/classes/class.query-log.php:1580
|
4081 |
+
msgid "New Group Avatar"
|
4082 |
+
msgstr "Nuevo Avatar del Grupo"
|
4083 |
+
|
4084 |
+
#: includes/classes/class.query-log.php:1582
|
4085 |
+
msgid "New Group Comment"
|
4086 |
+
msgstr ""
|
4087 |
+
"Nuevo Comentario al Grupo\n"
|
4088 |
+
|
4089 |
+
#: includes/classes/class.query-log.php:1592
|
4090 |
+
msgid "New Link"
|
4091 |
+
msgstr "Nuevo Enlace"
|
4092 |
+
|
4093 |
+
#: includes/classes/class.query-log.php:1593
|
4094 |
+
msgid "Link Voting"
|
4095 |
+
msgstr "Votar sobre Enlace"
|
4096 |
+
|
4097 |
+
#: includes/classes/class.query-log.php:1594
|
4098 |
+
msgid "Link Update"
|
4099 |
+
msgstr "Enlace Actualizado"
|
4100 |
+
|
4101 |
+
#: includes/classes/class.query-log.php:1598
|
4102 |
+
msgid "New Forum (bbPress)"
|
4103 |
+
msgstr "Nuevo Fórum (bbPress)"
|
4104 |
+
|
4105 |
+
#: includes/classes/class.query-log.php:1599
|
4106 |
+
msgid "New Forum Topic (bbPress)"
|
4107 |
+
msgstr "Nuevo Tema de Fórum (bbPress)"
|
4108 |
+
|
4109 |
+
#: includes/classes/class.query-log.php:1600
|
4110 |
+
msgid "Favorited Topic (bbPress)"
|
4111 |
+
msgstr "Tema Favorito (bbPress)"
|
4112 |
+
|
4113 |
+
#: includes/classes/class.query-log.php:1601
|
4114 |
+
msgid "New Topic Reply (bbPress)"
|
4115 |
+
msgstr "Nueva Respuesta a Tema (bbPress)"
|
4116 |
+
|
4117 |
+
#: includes/classes/class.query-log.php:1605
|
4118 |
+
msgid "Form Submission (Contact Form 7)"
|
4119 |
+
msgstr "Sumisión de Formulario (Contact Form 7)"
|
4120 |
+
|
4121 |
+
#: includes/classes/class.query-log.php:1608
|
4122 |
+
msgid "Form Submission (Gravity Form)"
|
4123 |
+
msgstr "Sumisión de Formulario (Gravity Form)"
|
4124 |
+
|
4125 |
+
#: includes/classes/class.query-log.php:1611
|
4126 |
+
msgid "New Forum Topic (SimplePress)"
|
4127 |
+
msgstr "Nuevo Tema de Fórum (SimplePress)"
|
4128 |
+
|
4129 |
+
#: includes/classes/class.query-log.php:1612
|
4130 |
+
msgid "New Forum Post (SimplePress)"
|
4131 |
+
msgstr "Nueva Entrada de Fórum (SimplePress)"
|
4132 |
+
|
4133 |
+
#: includes/classes/class.query-log.php:1633
|
4134 |
+
msgid "Poll Voting"
|
4135 |
+
msgstr "Votación"
|
4136 |
+
|
4137 |
+
#: includes/classes/class.query-log.php:1636
|
4138 |
+
msgid "Sending an Invite"
|
4139 |
+
msgstr "Mandando una Invitación"
|
4140 |
+
|
4141 |
+
#: includes/classes/class.query-log.php:1637
|
4142 |
+
msgid "Accepting an Invite"
|
4143 |
+
msgstr "Aceptando una Invitación"
|
4144 |
+
|
4145 |
+
#: includes/classes/class.query-log.php:1643
|
4146 |
+
#: addons/banking/myCRED-addon-banking.php:150
|
4147 |
+
msgid "Compound Interest"
|
4148 |
+
msgstr "Interés Compuesto"
|
4149 |
+
|
4150 |
+
#: includes/classes/class.query-log.php:1651
|
4151 |
+
msgid "buyCRED Purchase (PayPal Standard)"
|
4152 |
+
msgstr "Compra buyCRED (PayPal Standard)"
|
4153 |
+
|
4154 |
+
#: includes/classes/class.query-log.php:1652
|
4155 |
+
msgid "buyCRED Purchase (Skrill)"
|
4156 |
+
msgstr "Compra buyCRED (Skrill)"
|
4157 |
+
|
4158 |
+
#: includes/classes/class.query-log.php:1653
|
4159 |
+
msgid "buyCRED Purchase (Zombaio)"
|
4160 |
+
msgstr "Compra buyCRED (Zombaio)"
|
4161 |
+
|
4162 |
+
#: includes/classes/class.query-log.php:1654
|
4163 |
+
msgid "buyCRED Purchase (NETBilling)"
|
4164 |
+
msgstr "Compra buyCRED (NETBilling)"
|
4165 |
+
|
4166 |
+
#: includes/classes/class.query-log.php:1655
|
4167 |
+
msgid "buyCRED Purchase (BitPay)"
|
4168 |
+
msgstr "Compra buyCRED (BitPay)"
|
4169 |
+
|
4170 |
+
#: includes/classes/class.query-log.php:1660
|
4171 |
+
msgid "Coupon Purchase"
|
4172 |
+
msgstr "Compra Cupón"
|
4173 |
+
|
4174 |
+
#: includes/classes/class.query-log.php:1664
|
4175 |
+
msgid "Store Purchase (WooCommerce)"
|
4176 |
+
msgstr "Compra de Tienda (WooCommerce)"
|
4177 |
+
|
4178 |
+
#: includes/classes/class.query-log.php:1669
|
4179 |
+
msgid "Store Purchase (MarketPress)"
|
4180 |
+
msgstr "Compra de Tienda (MarketPress)"
|
4181 |
+
|
4182 |
+
#: includes/classes/class.query-log.php:1673
|
4183 |
+
msgid "Store Purchase (WP E-Commerce)"
|
4184 |
+
msgstr "Compra de Tienda (WP E-Commerce)"
|
4185 |
+
|
4186 |
+
#: includes/classes/class.query-log.php:1679
|
4187 |
+
msgid "Event Payment (Event Espresso)"
|
4188 |
+
msgstr "Pago por Evento (Event Espresso)"
|
4189 |
+
|
4190 |
+
#: includes/classes/class.query-log.php:1680
|
4191 |
+
msgid "Event Sale (Event Espresso)"
|
4192 |
+
msgstr "Venta de Evento (Event Espresso)"
|
4193 |
+
|
4194 |
+
#: includes/classes/class.query-log.php:1684
|
4195 |
+
msgid "Event Payment (Events Manager)"
|
4196 |
+
msgstr "Pago por Evento (Events Manager)"
|
4197 |
+
|
4198 |
+
#: includes/classes/class.query-log.php:1685
|
4199 |
+
msgid "Event Sale (Events Manager)"
|
4200 |
+
msgstr "Venta de Evento (Events Manager)"
|
4201 |
+
|
4202 |
+
#: includes/classes/class.query-log.php:1694
|
4203 |
+
#: addons/transfer/myCRED-addon-transfer.php:48
|
4204 |
+
msgid "Transfer"
|
4205 |
+
msgstr "Transferir"
|
4206 |
+
|
4207 |
+
#: includes/classes/class.query-log.php:1698
|
4208 |
+
msgid "Manual Adjustment by Admin"
|
4209 |
+
msgstr "Ajuste Manual por Admin"
|
4210 |
+
|
4211 |
+
#: addons/banking/myCRED-addon-banking.php:45
|
4212 |
+
#: addons/banking/myCRED-addon-banking.php:46
|
4213 |
+
#: addons/banking/myCRED-addon-banking.php:47
|
4214 |
+
msgid "Banking"
|
4215 |
+
msgstr "Banco"
|
4216 |
+
|
4217 |
+
#: addons/banking/myCRED-addon-banking.php:141
|
4218 |
+
msgid "Central Banking"
|
4219 |
+
msgstr "Banco Central"
|
4220 |
+
|
4221 |
+
#: addons/banking/myCRED-addon-banking.php:159
|
4222 |
+
msgid "Recurring Payouts"
|
4223 |
+
msgstr "Pagos Recurrentes"
|
4224 |
+
|
4225 |
+
#: addons/banking/myCRED-addon-banking.php:160
|
4226 |
+
msgid "Setup mass %_singular% payouts for your users."
|
4227 |
+
msgstr "Configurar pago en masa &_singular% para tus usuarios."
|
4228 |
+
|
4229 |
+
#: addons/banking/myCRED-addon-banking.php:253
|
4230 |
+
msgid "%s Banking"
|
4231 |
+
msgstr "%s Bancario"
|
4232 |
+
|
4233 |
+
#: addons/banking/myCRED-addon-banking.php:273
|
4234 |
+
#: addons/buy-creds/modules/buycred-module-core.php:581
|
4235 |
+
msgid "Enable"
|
4236 |
+
msgstr "Habilitar"
|
4237 |
+
|
4238 |
+
#: addons/banking/myCRED-addon-banking.php:292
|
4239 |
+
msgid "Update Changes"
|
4240 |
+
msgstr "Actualizar Cambios"
|
4241 |
+
|
4242 |
+
#: addons/transfer/myCRED-addon-transfer.php:41
|
4243 |
+
msgid "You do not have enough %plural% to send."
|
4244 |
+
msgstr "No tienes bastante %plural% para mandar."
|
4245 |
+
|
4246 |
+
#: addons/transfer/myCRED-addon-transfer.php:42
|
4247 |
+
msgid "You have exceeded your %limit% transfer limit."
|
4248 |
+
msgstr "Has excedido tu limite de transferencia de %limit%."
|
4249 |
+
|
4250 |
+
#: addons/transfer/myCRED-addon-transfer.php:146
|
4251 |
+
msgid "Transaction completed."
|
4252 |
+
msgstr "Transacción Finalizada"
|
4253 |
+
|
4254 |
+
#: addons/transfer/myCRED-addon-transfer.php:147
|
4255 |
+
msgid ""
|
4256 |
+
"Security token could not be verified. Please contact your site administrator!"
|
4257 |
+
msgstr ""
|
4258 |
+
"No se pudo verificar el 'token' (código) de seguridad. ¡Por favor, póngase "
|
4259 |
+
"en contacto con el administrador del sitio!"
|
4260 |
+
|
4261 |
+
#: addons/transfer/myCRED-addon-transfer.php:148
|
4262 |
+
#: addons/transfer/myCRED-addon-transfer.php:155
|
4263 |
+
msgid "Communications error. Please try again later."
|
4264 |
+
msgstr "Error en comunicación. Por favor inténtelo de nuevo más tarde."
|
4265 |
+
|
4266 |
+
#: addons/transfer/myCRED-addon-transfer.php:149
|
4267 |
+
msgid "Recipient not found. Please try again."
|
4268 |
+
msgstr "El recipiente no fuel encontrado. Por favor Inténtelo de nuevo."
|
4269 |
+
|
4270 |
+
#: addons/transfer/myCRED-addon-transfer.php:150
|
4271 |
+
msgid "Transaction declined by recipient."
|
4272 |
+
msgstr "Transacción rechazada por el destinatario"
|
4273 |
+
|
4274 |
+
#: addons/transfer/myCRED-addon-transfer.php:151
|
4275 |
+
msgid "Incorrect amount. Please try again."
|
4276 |
+
msgstr "Cantidad incorecta. Por favor inténtelo de nuevo."
|
4277 |
+
|
4278 |
+
#: addons/transfer/myCRED-addon-transfer.php:152
|
4279 |
+
msgid ""
|
4280 |
+
"This myCRED Add-on has not yet been setup! No transfers are allowed until "
|
4281 |
+
"this has been done!"
|
4282 |
+
msgstr ""
|
4283 |
+
"¡Esta Extensión de myCRED todavía no ha sido configurado! No se permite "
|
4284 |
+
"transferencias hasta que se haga esto."
|
4285 |
+
|
4286 |
+
#: addons/transfer/myCRED-addon-transfer.php:154
|
4287 |
+
msgid "Transfer Limit exceeded."
|
4288 |
+
msgstr "Límite de transferencia excedida."
|
4289 |
+
|
4290 |
+
#: addons/transfer/myCRED-addon-transfer.php:360
|
4291 |
+
msgid "No limits."
|
4292 |
+
msgstr "Sin limite."
|
4293 |
+
|
4294 |
+
#: addons/transfer/myCRED-addon-transfer.php:361
|
4295 |
+
msgid "Impose daily limit."
|
4296 |
+
msgstr "Imponer limite diario."
|
4297 |
+
|
4298 |
+
#: addons/transfer/myCRED-addon-transfer.php:362
|
4299 |
+
msgid "Impose weekly limit."
|
4300 |
+
msgstr "Imponer limite semanal."
|
4301 |
+
|
4302 |
+
#: addons/transfer/myCRED-addon-transfer.php:369
|
4303 |
+
msgid "User Login (user_login)"
|
4304 |
+
msgstr "Ingreso Usuario (user_login)"
|
4305 |
+
|
4306 |
+
#: addons/transfer/myCRED-addon-transfer.php:370
|
4307 |
+
msgid "User Email (user_email)"
|
4308 |
+
msgstr "Correo Electrónico del Usuario (user_email)"
|
4309 |
+
|
4310 |
+
#: addons/transfer/myCRED-addon-transfer.php:378
|
4311 |
+
msgid "Transfers"
|
4312 |
+
msgstr "Transferencias"
|
4313 |
+
|
4314 |
+
#: addons/transfer/myCRED-addon-transfer.php:388
|
4315 |
+
msgid "Select the point types that users can transfer."
|
4316 |
+
msgstr "Elige el clase de punto que el usuario puede transferir."
|
4317 |
+
|
4318 |
+
#: addons/transfer/myCRED-addon-transfer.php:398
|
4319 |
+
msgid "Log template for sending"
|
4320 |
+
msgstr "Plantilla de registros para transmitir"
|
4321 |
+
|
4322 |
+
#: addons/transfer/myCRED-addon-transfer.php:405
|
4323 |
+
msgid "Log template for receiving"
|
4324 |
+
msgstr "Plantilla de registros para recibir"
|
4325 |
+
|
4326 |
+
#: addons/transfer/myCRED-addon-transfer.php:412
|
4327 |
+
msgid "Autofill Recipient"
|
4328 |
+
msgstr "Destinatario del Relleno Automático"
|
4329 |
+
|
4330 |
+
#: addons/transfer/myCRED-addon-transfer.php:426
|
4331 |
+
msgid "Select what user details recipients should be autofilled by."
|
4332 |
+
msgstr ""
|
4333 |
+
"Selecciona cuales detalles del usuario al destinatario deben ser rellenados "
|
4334 |
+
"automáticamente."
|
4335 |
+
|
4336 |
+
#: addons/transfer/myCRED-addon-transfer.php:429
|
4337 |
+
msgid "Reload"
|
4338 |
+
msgstr "Recargar"
|
4339 |
+
|
4340 |
+
#: addons/transfer/myCRED-addon-transfer.php:432
|
4341 |
+
msgid "Reload page on successful transfers."
|
4342 |
+
msgstr "Actualizar la pagina despues de transferencias finalizadas."
|
4343 |
+
|
4344 |
+
#: addons/transfer/myCRED-addon-transfer.php:435
|
4345 |
+
#: addons/coupons/myCRED-addon-coupons.php:250
|
4346 |
+
#: addons/banking/services/mycred-service-payouts.php:599
|
4347 |
+
#: addons/banking/services/mycred-service-payouts.php:760
|
4348 |
+
msgid "Limits"
|
4349 |
+
msgstr "imites"
|
4350 |
+
|
4351 |
+
#: addons/transfer/myCRED-addon-transfer.php:456
|
4352 |
+
msgid "Limit Amount"
|
4353 |
+
msgstr "Limitar la Cantidad"
|
4354 |
+
|
4355 |
+
#: addons/transfer/myCRED-addon-transfer.php:460
|
4356 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:553
|
4357 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:525
|
4358 |
+
msgid "Templates"
|
4359 |
+
msgstr "Plantillas"
|
4360 |
+
|
4361 |
+
#: addons/transfer/myCRED-addon-transfer.php:463
|
4362 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:573
|
4363 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:538
|
4364 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:411
|
4365 |
+
msgid "Visitors"
|
4366 |
+
msgstr "Visitantes"
|
4367 |
+
|
4368 |
+
#: addons/ranks/myCRED-addon-ranks.php:218
|
4369 |
+
#: addons/ranks/myCRED-addon-ranks.php:227
|
4370 |
+
#: addons/ranks/myCRED-addon-ranks.php:237
|
4371 |
+
#: addons/ranks/myCRED-addon-ranks.php:339
|
4372 |
+
#: addons/ranks/myCRED-addon-ranks.php:340
|
4373 |
+
#: addons/ranks/myCRED-addon-ranks.php:724
|
4374 |
+
#: addons/ranks/myCRED-addon-ranks.php:1358
|
4375 |
+
#: addons/ranks/myCRED-addon-ranks.php:1648
|
4376 |
+
msgid "Ranks"
|
4377 |
+
msgstr "Rangos"
|
4378 |
+
|
4379 |
+
#: addons/ranks/myCRED-addon-ranks.php:222
|
4380 |
+
#: addons/ranks/myCRED-addon-ranks.php:724
|
4381 |
+
#: addons/ranks/myCRED-addon-ranks.php:873
|
4382 |
+
#: addons/ranks/myCRED-addon-ranks.php:876
|
4383 |
+
#: addons/ranks/myCRED-addon-ranks.php:904
|
4384 |
+
msgid "Rank"
|
4385 |
+
msgstr "Rango"
|
4386 |
+
|
4387 |
+
#: addons/ranks/myCRED-addon-ranks.php:223
|
4388 |
+
#: addons/ranks/myCRED-addon-ranks.php:224
|
4389 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:126
|
4390 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:127
|
4391 |
+
#: addons/badges/myCRED-addon-badges.php:150
|
4392 |
+
#: addons/badges/myCRED-addon-badges.php:151
|
4393 |
+
#: addons/banking/services/mycred-service-payouts.php:896
|
4394 |
+
msgid "Add New"
|
4395 |
+
msgstr "Añade Nuevo"
|
4396 |
+
|
4397 |
+
#: addons/ranks/myCRED-addon-ranks.php:225
|
4398 |
+
msgid "Edit Rank"
|
4399 |
+
msgstr "Editar Rango"
|
4400 |
+
|
4401 |
+
#: addons/ranks/myCRED-addon-ranks.php:226
|
4402 |
+
msgid "New Rank"
|
4403 |
+
msgstr "Nuevo Rango"
|
4404 |
+
|
4405 |
+
#: addons/ranks/myCRED-addon-ranks.php:228
|
4406 |
+
msgid "View Rank"
|
4407 |
+
msgstr "Ver Rango"
|
4408 |
+
|
4409 |
+
#: addons/ranks/myCRED-addon-ranks.php:229
|
4410 |
+
msgid "Search Ranks"
|
4411 |
+
msgstr "Búsqueda de Rangos"
|
4412 |
+
|
4413 |
+
#: addons/ranks/myCRED-addon-ranks.php:234
|
4414 |
+
#: addons/ranks/myCRED-addon-ranks.php:1285
|
4415 |
+
msgid "No ranks found"
|
4416 |
+
msgstr "Ningun rango encontrado"
|
4417 |
+
|
4418 |
+
#: addons/ranks/myCRED-addon-ranks.php:235
|
4419 |
+
msgid "No ranks found in Trash"
|
4420 |
+
msgstr "Ningun rango encontrao el la papelera"
|
4421 |
+
|
4422 |
+
#: addons/ranks/myCRED-addon-ranks.php:283
|
4423 |
+
#: addons/ranks/myCRED-addon-ranks.php:284
|
4424 |
+
#: addons/ranks/myCRED-addon-ranks.php:285
|
4425 |
+
#: addons/ranks/myCRED-addon-ranks.php:286
|
4426 |
+
#: addons/ranks/myCRED-addon-ranks.php:287
|
4427 |
+
#: addons/ranks/myCRED-addon-ranks.php:290
|
4428 |
+
#: addons/ranks/myCRED-addon-ranks.php:291
|
4429 |
+
msgid "Rank Updated."
|
4430 |
+
msgstr "Rango Actualizado."
|
4431 |
+
|
4432 |
+
#: addons/ranks/myCRED-addon-ranks.php:481
|
4433 |
+
msgid "Completed - Total of %d users effected"
|
4434 |
+
msgstr "Completado - Un total %d usuarios afectados"
|
4435 |
+
|
4436 |
+
#: addons/ranks/myCRED-addon-ranks.php:987
|
4437 |
+
msgid "Warning! All ranks will be deleted! This can not be undone!"
|
4438 |
+
msgstr ""
|
4439 |
+
"¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer esto!"
|
4440 |
+
|
4441 |
+
#: addons/ranks/myCRED-addon-ranks.php:988
|
4442 |
+
msgid "Are you sure you want to re-assign user ranks?"
|
4443 |
+
msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
|
4444 |
+
|
4445 |
+
#: addons/ranks/myCRED-addon-ranks.php:1073
|
4446 |
+
#: addons/ranks/myCRED-addon-ranks.php:1174
|
4447 |
+
msgid "Rank Title"
|
4448 |
+
msgstr "Titulo de Rango"
|
4449 |
+
|
4450 |
+
#: addons/ranks/myCRED-addon-ranks.php:1074
|
4451 |
+
msgid "Logo"
|
4452 |
+
msgstr "Logotipo"
|
4453 |
+
|
4454 |
+
#: addons/ranks/myCRED-addon-ranks.php:1075
|
4455 |
+
#: addons/badges/myCRED-addon-badges.php:828
|
4456 |
+
#: addons/badges/myCRED-addon-badges.php:829
|
4457 |
+
msgid "Requirement"
|
4458 |
+
msgstr "Requisito"
|
4459 |
+
|
4460 |
+
#: addons/ranks/myCRED-addon-ranks.php:1101
|
4461 |
+
msgid "No Logo Set"
|
4462 |
+
msgstr "No hay Logotipo Configurado"
|
4463 |
+
|
4464 |
+
#: addons/ranks/myCRED-addon-ranks.php:1116
|
4465 |
+
#: addons/ranks/myCRED-addon-ranks.php:1121
|
4466 |
+
msgid "Any Value"
|
4467 |
+
msgstr "Cualquier Valor"
|
4468 |
+
|
4469 |
+
#: addons/ranks/myCRED-addon-ranks.php:1118
|
4470 |
+
#: addons/buy-creds/modules/buycred-module-core.php:327
|
4471 |
+
msgid "Minimum %plural%"
|
4472 |
+
msgstr "Minimo %_plural%"
|
4473 |
+
|
4474 |
+
#: addons/ranks/myCRED-addon-ranks.php:1123
|
4475 |
+
msgid "Maximum %plural%"
|
4476 |
+
msgstr "Maximo %plural%"
|
4477 |
+
|
4478 |
+
#: addons/ranks/myCRED-addon-ranks.php:1274
|
4479 |
+
#: addons/ranks/myCRED-addon-ranks.php:1275
|
4480 |
+
msgid "Not Set"
|
4481 |
+
msgstr "No Configurado"
|
4482 |
+
|
4483 |
+
#: addons/ranks/myCRED-addon-ranks.php:1363
|
4484 |
+
msgid "Rank Features"
|
4485 |
+
msgstr "Caracteristicas de los Rangos"
|
4486 |
+
|
4487 |
+
#: addons/ranks/myCRED-addon-ranks.php:1367
|
4488 |
+
msgid "%plural% requirement"
|
4489 |
+
msgstr "%plural% requisito"
|
4490 |
+
|
4491 |
+
#: addons/ranks/myCRED-addon-ranks.php:1370
|
4492 |
+
msgid "Content"
|
4493 |
+
msgstr "Contenido"
|
4494 |
+
|
4495 |
+
#: addons/ranks/myCRED-addon-ranks.php:1372
|
4496 |
+
msgid "Excerpt"
|
4497 |
+
msgstr "Extracto"
|
4498 |
+
|
4499 |
+
#: addons/ranks/myCRED-addon-ranks.php:1374
|
4500 |
+
msgid "Comments"
|
4501 |
+
msgstr "Comentario"
|
4502 |
+
|
4503 |
+
#: addons/ranks/myCRED-addon-ranks.php:1376
|
4504 |
+
msgid "Page Attributes"
|
4505 |
+
msgstr "Atributos de Página"
|
4506 |
+
|
4507 |
+
#: addons/ranks/myCRED-addon-ranks.php:1378
|
4508 |
+
msgid "Custom Fields"
|
4509 |
+
msgstr "Campo Personalizado"
|
4510 |
+
|
4511 |
+
#: addons/ranks/myCRED-addon-ranks.php:1382
|
4512 |
+
msgid "Public"
|
4513 |
+
msgstr "Público"
|
4514 |
+
|
4515 |
+
#. This is not clear, especially the second sentence (fragment)!
|
4516 |
+
#: addons/ranks/myCRED-addon-ranks.php:1386
|
4517 |
+
msgid ""
|
4518 |
+
"If you want to create a template archive for each rank, you must select to "
|
4519 |
+
"have ranks public. Defaults to disabled."
|
4520 |
+
msgstr ""
|
4521 |
+
"Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
|
4522 |
+
"los rangos sean público. Los valores predeterminados desactivado."
|
4523 |
+
|
4524 |
+
#: addons/ranks/myCRED-addon-ranks.php:1389
|
4525 |
+
msgid "Archive URL"
|
4526 |
+
msgstr "URL del Archivo"
|
4527 |
+
|
4528 |
+
#: addons/ranks/myCRED-addon-ranks.php:1393
|
4529 |
+
msgid "Ignored if Ranks are not public"
|
4530 |
+
msgstr "Sera Ingnorado si los Rangos no son Pulicos"
|
4531 |
+
|
4532 |
+
#. not sure if this is order, as in ordering pizza or order as in rank, organization
|
4533 |
+
#: addons/ranks/myCRED-addon-ranks.php:1396
|
4534 |
+
msgid "Display Order"
|
4535 |
+
msgstr "Orden de Visualización"
|
4536 |
+
|
4537 |
+
#: addons/ranks/myCRED-addon-ranks.php:1404
|
4538 |
+
msgid "Ascending - Lowest rank to highest"
|
4539 |
+
msgstr "Ascendente - Rango más bajo a lo más alto"
|
4540 |
+
|
4541 |
+
#: addons/ranks/myCRED-addon-ranks.php:1405
|
4542 |
+
msgid "Descending - Highest rank to lowest"
|
4543 |
+
msgstr "Descendiente - Rango más alto al más bajo"
|
4544 |
+
|
4545 |
+
#: addons/ranks/myCRED-addon-ranks.php:1416
|
4546 |
+
msgid ""
|
4547 |
+
"Select in what order ranks should be displayed in your admin area and/or "
|
4548 |
+
"front if ranks are \"Public\""
|
4549 |
+
msgstr ""
|
4550 |
+
"Elige en que orden se debe mostrar los rangos en tu area de administrador "
|
4551 |
+
"y/o en el frente si los rangos son \"Público\""
|
4552 |
+
|
4553 |
+
#: addons/ranks/myCRED-addon-ranks.php:1422
|
4554 |
+
msgid "Rank Basis"
|
4555 |
+
msgstr "Base de Rango"
|
4556 |
+
|
4557 |
+
#: addons/ranks/myCRED-addon-ranks.php:1425
|
4558 |
+
msgid "Users are ranked according to their current balance."
|
4559 |
+
msgstr "Los usuarios se clasifican según su saldo actual."
|
4560 |
+
|
4561 |
+
#: addons/ranks/myCRED-addon-ranks.php:1428
|
4562 |
+
msgid ""
|
4563 |
+
"Users are ranked according to the total amount of %_plural% they have "
|
4564 |
+
"accumulated."
|
4565 |
+
msgstr ""
|
4566 |
+
"Los usuarios se clasifican según la cantidad total de %_plural% que han "
|
4567 |
+
"acumulado."
|
4568 |
+
|
4569 |
+
#: addons/ranks/myCRED-addon-ranks.php:1432
|
4570 |
+
#: addons/ranks/myCRED-addon-ranks.php:1437
|
4571 |
+
msgid "Calculate Totals"
|
4572 |
+
msgstr "Calcular Totales"
|
4573 |
+
|
4574 |
+
#: addons/ranks/myCRED-addon-ranks.php:1435
|
4575 |
+
msgid ""
|
4576 |
+
"Once a users total has been calculated, they will be assigned to their "
|
4577 |
+
"appropriate roles. For this reason, it is highly recommended that you first "
|
4578 |
+
"setup your ranks!"
|
4579 |
+
msgstr ""
|
4580 |
+
"Una vez que la suma del usuario haya sido calculado, sus roles "
|
4581 |
+
"corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
|
4582 |
+
"que primero configures los rangos!"
|
4583 |
+
|
4584 |
+
#: addons/ranks/myCRED-addon-ranks.php:1436
|
4585 |
+
msgid ""
|
4586 |
+
"Depending on your log size and number of users this process may take a while."
|
4587 |
+
" Please do not leave, click \"Update Settings\" or re-fresh this page until "
|
4588 |
+
"this is completed!"
|
4589 |
+
msgstr ""
|
4590 |
+
"Segun el tamaño de registro y los numeros de usuarios este proceso puede "
|
4591 |
+
"llevar un rato. ¡Por favor no abandone esta pagina, haga click sobre "
|
4592 |
+
"\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
|
4593 |
+
"completado!"
|
4594 |
+
|
4595 |
+
#: addons/ranks/myCRED-addon-ranks.php:1454
|
4596 |
+
msgid "Include in Profile Header."
|
4597 |
+
msgstr "Incluir en Encabezado del Perfil"
|
4598 |
+
|
4599 |
+
#: addons/ranks/myCRED-addon-ranks.php:1456
|
4600 |
+
msgid "Include under the \"Profile\" tab and Profile Header."
|
4601 |
+
msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil."
|
4602 |
+
|
4603 |
+
#: addons/ranks/myCRED-addon-ranks.php:1460
|
4604 |
+
msgid "Rank in BuddyPress"
|
4605 |
+
msgstr "Rango en BuddyPress"
|
4606 |
+
|
4607 |
+
#: addons/ranks/myCRED-addon-ranks.php:1500
|
4608 |
+
#: addons/badges/myCRED-addon-badges.php:1183
|
4609 |
+
msgid "Include in Profile"
|
4610 |
+
msgstr "Incluir en el Perfil"
|
4611 |
+
|
4612 |
+
#: addons/ranks/myCRED-addon-ranks.php:1584
|
4613 |
+
msgid "Script Communication Error"
|
4614 |
+
msgstr "Error del Script de Comunicación"
|
4615 |
+
|
4616 |
+
#: addons/ranks/myCRED-addon-ranks.php:1651
|
4617 |
+
msgid "User Meta Key"
|
4618 |
+
msgstr "Clave Meta del Usuario"
|
4619 |
+
|
4620 |
+
#: addons/ranks/myCRED-addon-ranks.php:1655
|
4621 |
+
msgid "No. of ranks"
|
4622 |
+
msgstr "Numero de Rangos"
|
4623 |
+
|
4624 |
+
#: addons/ranks/myCRED-addon-ranks.php:1660
|
4625 |
+
msgid "Remove All Ranks"
|
4626 |
+
msgstr "Quitar todos los Rangos"
|
4627 |
+
|
4628 |
+
#: addons/ranks/myCRED-addon-ranks.php:1660
|
4629 |
+
msgid "Assign Ranks to Users"
|
4630 |
+
msgstr "Asignar Rango a los Usuarios"
|
4631 |
+
|
4632 |
+
#: addons/notifications/myCRED-addon-notifications.php:191
|
4633 |
+
msgid "Notifications"
|
4634 |
+
msgstr "Notificaciones"
|
4635 |
+
|
4636 |
+
#: addons/notifications/myCRED-addon-notifications.php:193
|
4637 |
+
msgid "Styling"
|
4638 |
+
msgstr "Diseño/Estilo"
|
4639 |
+
|
4640 |
+
#: addons/notifications/myCRED-addon-notifications.php:196
|
4641 |
+
msgid "Use the included CSS Styling for notifications."
|
4642 |
+
msgstr "Utilice el Estilo CSS incluido para notificaciones."
|
4643 |
+
|
4644 |
+
#: addons/notifications/myCRED-addon-notifications.php:203
|
4645 |
+
msgid ""
|
4646 |
+
"Use %entry% to show the log entry in the notice and %amount% for the amount."
|
4647 |
+
msgstr ""
|
4648 |
+
"Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% "
|
4649 |
+
"para la cantidad."
|
4650 |
+
|
4651 |
+
#: addons/notifications/myCRED-addon-notifications.php:206
|
4652 |
+
msgid "Transient Lifespan"
|
4653 |
+
msgstr "Duración de Transitorio"
|
4654 |
+
|
4655 |
+
#: addons/notifications/myCRED-addon-notifications.php:210
|
4656 |
+
msgid ""
|
4657 |
+
"The number of days a users notification is saved before being automatically "
|
4658 |
+
"deleted."
|
4659 |
+
msgstr ""
|
4660 |
+
"Cuantos dias una notificación del usuario se guarda antes de automáticamente "
|
4661 |
+
"borrarse."
|
4662 |
+
|
4663 |
+
#: addons/notifications/myCRED-addon-notifications.php:213
|
4664 |
+
msgid "Duration"
|
4665 |
+
msgstr "Duracion"
|
4666 |
+
|
4667 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:167
|
4668 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:168
|
4669 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:169
|
4670 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:170
|
4671 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:173
|
4672 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:174
|
4673 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:175
|
4674 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:176
|
4675 |
+
msgid "Email Notice Updated."
|
4676 |
+
msgstr "Aviso atraves de correo electrónico Actualizado."
|
4677 |
+
|
4678 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:254
|
4679 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:271
|
4680 |
+
msgid "Email Subject"
|
4681 |
+
msgstr "Asunto del Correo Electrónico"
|
4682 |
+
|
4683 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:272
|
4684 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:493
|
4685 |
+
#: addons/banking/services/mycred-service-payouts.php:565
|
4686 |
+
#: addons/banking/services/mycred-service-payouts.php:880
|
4687 |
+
msgid "Status"
|
4688 |
+
msgstr "Estatus"
|
4689 |
+
|
4690 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:298
|
4691 |
+
msgid "Not Active"
|
4692 |
+
msgstr "No esta Activo"
|
4693 |
+
|
4694 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:301
|
4695 |
+
msgid "Scheduled:<br /><strong>%1$s</strong>"
|
4696 |
+
msgstr "Programada:<br /><strong>%1$s</strong>"
|
4697 |
+
|
4698 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:306
|
4699 |
+
#: addons/banking/services/mycred-service-payouts.php:31
|
4700 |
+
msgid "Active"
|
4701 |
+
msgstr "Activo"
|
4702 |
+
|
4703 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:308
|
4704 |
+
msgid "Active - Last run:<br /><strong>%1$s</strong>"
|
4705 |
+
msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
|
4706 |
+
|
4707 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:321
|
4708 |
+
msgid "Email is sent when"
|
4709 |
+
msgstr "el Correo Electrónico se envia cuando"
|
4710 |
+
|
4711 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:323
|
4712 |
+
msgid "Missing instance for this notice!"
|
4713 |
+
msgstr "¡Falta una instancia para este aviso!"
|
4714 |
+
|
4715 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:332
|
4716 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:334
|
4717 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:336
|
4718 |
+
msgid "Sent To"
|
4719 |
+
msgstr "Enviado A:"
|
4720 |
+
|
4721 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:334
|
4722 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:568
|
4723 |
+
msgid "Administrator"
|
4724 |
+
msgstr "Administrador"
|
4725 |
+
|
4726 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:336
|
4727 |
+
msgid "Both Administrator and User"
|
4728 |
+
msgstr "Tanto Administrador como Usuario"
|
4729 |
+
|
4730 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:384
|
4731 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1400
|
4732 |
+
msgid "Email Settings"
|
4733 |
+
msgstr "Configuraciones de Correo Electrónico"
|
4734 |
+
|
4735 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:393
|
4736 |
+
msgid "Available Template Tags"
|
4737 |
+
msgstr "Etiquetas (tags) de Plantilla Disponibles"
|
4738 |
+
|
4739 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:404
|
4740 |
+
msgid "Email Header"
|
4741 |
+
msgstr "Encabezado del Correo Electrónico"
|
4742 |
+
|
4743 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:490
|
4744 |
+
msgid ""
|
4745 |
+
"Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
|
4746 |
+
"you are not yet ready to use this email notice!"
|
4747 |
+
msgstr ""
|
4748 |
+
"¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar "
|
4749 |
+
"Borrador\" si aun no estás listo para utilizar este aviso por email!"
|
4750 |
+
|
4751 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:492
|
4752 |
+
msgid "This notice will become active on:<br /><strong>%1$s</strong>"
|
4753 |
+
msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
|
4754 |
+
|
4755 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:494
|
4756 |
+
msgid "This email notice is active."
|
4757 |
+
msgstr "Esta notificación de correo electrónico esta activada."
|
4758 |
+
|
4759 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:520
|
4760 |
+
msgid "Send this email notice when..."
|
4761 |
+
msgstr "Envia este aviso por correo electrónico cuando..."
|
4762 |
+
|
4763 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:563
|
4764 |
+
msgid "Recipient:"
|
4765 |
+
msgstr "Destinatario:"
|
4766 |
+
|
4767 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:571
|
4768 |
+
msgid "Both"
|
4769 |
+
msgstr "Ambos"
|
4770 |
+
|
4771 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:607
|
4772 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1403
|
4773 |
+
msgid "Senders Name:"
|
4774 |
+
msgstr "Nombre del Remitente"
|
4775 |
+
|
4776 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:611
|
4777 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1407
|
4778 |
+
msgid "Senders Email:"
|
4779 |
+
msgstr "Correo Electrónico del Remitente:"
|
4780 |
+
|
4781 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:615
|
4782 |
+
msgid "Reply-To Email:"
|
4783 |
+
msgstr "Responder-A Correo Electrónico:"
|
4784 |
+
|
4785 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:640
|
4786 |
+
msgid "CSS Styling"
|
4787 |
+
msgstr "Estilo CSS"
|
4788 |
+
|
4789 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:663
|
4790 |
+
msgid "Site Related"
|
4791 |
+
msgstr "Relacionado al Sitio"
|
4792 |
+
|
4793 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:669
|
4794 |
+
msgid "Your websites title"
|
4795 |
+
msgstr "Titulo de tu pagina web"
|
4796 |
+
|
4797 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:677
|
4798 |
+
msgid "Your websites address"
|
4799 |
+
msgstr "Dirección de tu pagina web"
|
4800 |
+
|
4801 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:685
|
4802 |
+
msgid "Your websites tagline (description)"
|
4803 |
+
msgstr "La descripción de tu sitio web (lema o eslogan)"
|
4804 |
+
|
4805 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:693
|
4806 |
+
msgid "Your websites admin email"
|
4807 |
+
msgstr "El correo electrónico de admin para tu pagina web"
|
4808 |
+
|
4809 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:701
|
4810 |
+
msgid "Total number of blog members"
|
4811 |
+
msgstr "Número total de miembros del blog"
|
4812 |
+
|
4813 |
+
#. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
|
4814 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:862
|
4815 |
+
msgid "users balance changes"
|
4816 |
+
msgstr "el saldo de usuario cambia"
|
4817 |
+
|
4818 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:863
|
4819 |
+
msgid "user gains %_plural%"
|
4820 |
+
msgstr "usuario gana %_plural%"
|
4821 |
+
|
4822 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:864
|
4823 |
+
msgid "user lose %_plural%"
|
4824 |
+
msgstr "usuario pierde %_plural%"
|
4825 |
+
|
4826 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:865
|
4827 |
+
msgid "users balance reaches zero"
|
4828 |
+
msgstr "saldo de usuario llega a cero"
|
4829 |
+
|
4830 |
+
#. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
|
4831 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:866
|
4832 |
+
msgid "users balance goes minus"
|
4833 |
+
msgstr "el saldo de usuario cae a negativo"
|
4834 |
+
|
4835 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:880
|
4836 |
+
msgid "Sell Content Add-on"
|
4837 |
+
msgstr "Extensión para Vender Contenido"
|
4838 |
+
|
4839 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:881
|
4840 |
+
msgid "user buys content"
|
4841 |
+
msgstr "usuario compra contenido"
|
4842 |
+
|
4843 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:882
|
4844 |
+
msgid "authors content gets sold"
|
4845 |
+
msgstr "el contenido del autor sera vendido"
|
4846 |
+
|
4847 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:889
|
4848 |
+
msgid "buyCREDs Add-on"
|
4849 |
+
msgstr "Extensión de compraCREDs"
|
4850 |
+
|
4851 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:890
|
4852 |
+
msgid "user buys %_plural%"
|
4853 |
+
msgstr "usuario compra %_plural%"
|
4854 |
+
|
4855 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:897
|
4856 |
+
msgid "Transfer Add-on"
|
4857 |
+
msgstr "Extensión de Transferencias"
|
4858 |
+
|
4859 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:898
|
4860 |
+
msgid "user sends %_plural%"
|
4861 |
+
msgstr "usuario manda %_plural%"
|
4862 |
+
|
4863 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:899
|
4864 |
+
msgid "user receives %_plural%"
|
4865 |
+
msgstr "usuario recibe %_plural%"
|
4866 |
+
|
4867 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:906
|
4868 |
+
msgid "Ranks Add-on"
|
4869 |
+
msgstr "Extensión de Rangos"
|
4870 |
+
|
4871 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:907
|
4872 |
+
msgid "user is demoted"
|
4873 |
+
msgstr "se ha degrado al usuario"
|
4874 |
+
|
4875 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:908
|
4876 |
+
msgid "user is promoted"
|
4877 |
+
msgstr "se ha promovido al usuario"
|
4878 |
+
|
4879 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1337
|
4880 |
+
#: addons/coupons/myCRED-addon-coupons.php:112
|
4881 |
+
msgid "Email Notices"
|
4882 |
+
msgstr "Avisos por Correo Electrónico"
|
4883 |
+
|
4884 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1339
|
4885 |
+
msgid ""
|
4886 |
+
"Settings that apply to all email notices and can not be overridden for "
|
4887 |
+
"individual emails."
|
4888 |
+
msgstr ""
|
4889 |
+
"Ajustes que se aplica a todos los correos electrónicos y que no seran "
|
4890 |
+
"anulados para correos electronicos especificos."
|
4891 |
+
|
4892 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1340
|
4893 |
+
msgid "Email Format"
|
4894 |
+
msgstr "Formato de Correo Electrónico"
|
4895 |
+
|
4896 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1343
|
4897 |
+
msgid "Plain text emails only."
|
4898 |
+
msgstr "Correo electrónico usando texto sin formato."
|
4899 |
+
|
4900 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1346
|
4901 |
+
msgid "HTML or Plain text emails."
|
4902 |
+
msgstr "Correo electrónico usando HTML o texto sin formato."
|
4903 |
+
|
4904 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1349
|
4905 |
+
msgid "Filters"
|
4906 |
+
msgstr "Filtros"
|
4907 |
+
|
4908 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1353
|
4909 |
+
msgid ""
|
4910 |
+
"Allow WordPress and Third Party Plugins to filter the email subject before "
|
4911 |
+
"an email is sent."
|
4912 |
+
msgstr ""
|
4913 |
+
"Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
|
4914 |
+
"correo electrónico antes de enviarlo."
|
4915 |
+
|
4916 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1357
|
4917 |
+
msgid ""
|
4918 |
+
"Allow WordPress and Third Party Plugins to filter the email content before "
|
4919 |
+
"an email is sent."
|
4920 |
+
msgstr ""
|
4921 |
+
"Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
|
4922 |
+
"correo electrónico antes de enviarlo."
|
4923 |
+
|
4924 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1363
|
4925 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1370
|
4926 |
+
msgid "Email Schedule"
|
4927 |
+
msgstr "Itinerario de Emails"
|
4928 |
+
|
4929 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1365
|
4930 |
+
msgid "WordPress Cron is disabled. Emails will be sent immediately."
|
4931 |
+
msgstr ""
|
4932 |
+
"WordPress Cron esta desactivado. Los emails seran mandados inmediatamente."
|
4933 |
+
|
4934 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1374
|
4935 |
+
msgid "Send emails immediately"
|
4936 |
+
msgstr "Mandar emails inmediatamente"
|
4937 |
+
|
4938 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1378
|
4939 |
+
msgid "Send emails once an hour"
|
4940 |
+
msgstr "Mandar emails una vez a la hora"
|
4941 |
+
|
4942 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1382
|
4943 |
+
msgid "Send emails once a day"
|
4944 |
+
msgstr "Mandar emails una vez al dia"
|
4945 |
+
|
4946 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1385
|
4947 |
+
msgid "Subscriptions"
|
4948 |
+
msgstr "Suscripciones"
|
4949 |
+
|
4950 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1387
|
4951 |
+
msgid ""
|
4952 |
+
"Use the %s shortcode to allow users to subscribe / unsubscribe to email "
|
4953 |
+
"updates."
|
4954 |
+
msgstr ""
|
4955 |
+
"Utilize el %s codigo corto para permitir que los usuarios suscriben o darsen "
|
4956 |
+
"de baja a informes vía correo electrónico."
|
4957 |
+
|
4958 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1392
|
4959 |
+
msgid "SMTP Override"
|
4960 |
+
msgstr "Invalidar SMTP"
|
4961 |
+
|
4962 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1396
|
4963 |
+
msgid ""
|
4964 |
+
"SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
|
4965 |
+
"use a SMTP plugin for emails."
|
4966 |
+
msgstr ""
|
4967 |
+
"Depurar SMTP. Habilitar si hay erores con wp_mail() o si utiliza un plugin "
|
4968 |
+
"SMTP para email."
|
4969 |
+
|
4970 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1399
|
4971 |
+
msgid ""
|
4972 |
+
"Default email settings. These settings can be individually overridden when "
|
4973 |
+
"editing emails."
|
4974 |
+
msgstr ""
|
4975 |
+
"Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
|
4976 |
+
"pueden ser anulado individualmente cuando se edita correos electrónicos."
|
4977 |
+
|
4978 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1411
|
4979 |
+
msgid "Reply-To:"
|
4980 |
+
msgstr "Responder-A:"
|
4981 |
+
|
4982 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1415
|
4983 |
+
msgid "Default Email Content"
|
4984 |
+
msgstr "Contenido de Correo Electrónico Predefinido"
|
4985 |
+
|
4986 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1419
|
4987 |
+
msgid "Default email content."
|
4988 |
+
msgstr "Contenido de correo electrónico predefinido."
|
4989 |
+
|
4990 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1422
|
4991 |
+
msgid "Default Email Styling"
|
4992 |
+
msgstr "Estilo de Correo Electrónico Predefinido"
|
4993 |
+
|
4994 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1426
|
4995 |
+
msgid "Ignored if HTML is not allowed in emails."
|
4996 |
+
msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
|
4997 |
+
|
4998 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1523
|
4999 |
+
msgid "Unsubscribe"
|
5000 |
+
msgstr "Cancelar la Suscripción"
|
5001 |
+
|
5002 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1524
|
5003 |
+
msgid "Email Notice"
|
5004 |
+
msgstr "Aviso por Correo Electrónico"
|
5005 |
+
|
5006 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1545
|
5007 |
+
msgid "There are no email notifications yet."
|
5008 |
+
msgstr "Todavía no hay notificaciones de email."
|
5009 |
+
|
5010 |
+
#: addons/email-notices/myCRED-addon-email-notices.php:1552
|
5011 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:506
|
5012 |
+
msgid "Save Changes"
|
5013 |
+
msgstr "Guardar Cambios"
|
5014 |
+
|
5015 |
+
#: addons/badges/myCRED-addon-badges.php:148
|
5016 |
+
#: addons/badges/myCRED-addon-badges.php:154
|
5017 |
+
#: addons/badges/myCRED-addon-badges.php:160
|
5018 |
+
#: addons/badges/myCRED-addon-badges.php:295
|
5019 |
+
#: addons/badges/myCRED-addon-badges.php:296
|
5020 |
+
#: addons/badges/myCRED-addon-badges.php:1134
|
5021 |
+
#: addons/badges/myCRED-addon-badges.php:1256
|
5022 |
+
#: addons/badges/myCRED-addon-badges.php:1259
|
5023 |
+
msgid "Badges"
|
5024 |
+
msgstr "Insignias"
|
5025 |
+
|
5026 |
+
#: addons/badges/myCRED-addon-badges.php:149
|
5027 |
+
msgid "Badge"
|
5028 |
+
msgstr "Insignia"
|
5029 |
+
|
5030 |
+
#: addons/badges/myCRED-addon-badges.php:152
|
5031 |
+
msgid "Edit Badge"
|
5032 |
+
msgstr "Editar Insignia"
|
5033 |
+
|
5034 |
+
#: addons/badges/myCRED-addon-badges.php:153
|
5035 |
+
msgid "New Badge"
|
5036 |
+
msgstr "Nueva Insignia"
|
5037 |
+
|
5038 |
+
#: addons/badges/myCRED-addon-badges.php:155
|
5039 |
+
msgid "View Badge"
|
5040 |
+
msgstr "Ver Insignia"
|
5041 |
+
|
5042 |
+
#: addons/badges/myCRED-addon-badges.php:156
|
5043 |
+
msgid "Search Badge"
|
5044 |
+
msgstr "Buscar Insignia"
|
5045 |
+
|
5046 |
+
#: addons/badges/myCRED-addon-badges.php:157
|
5047 |
+
msgid "No badges found"
|
5048 |
+
msgstr "Ninguna Insignia Encontrada"
|
5049 |
+
|
5050 |
+
#: addons/badges/myCRED-addon-badges.php:158
|
5051 |
+
msgid "No badges found in Trash"
|
5052 |
+
msgstr "Ninguna Insignia Encontrada en la Papelera"
|
5053 |
+
|
5054 |
+
#: addons/badges/myCRED-addon-badges.php:270
|
5055 |
+
#: addons/badges/myCRED-addon-badges.php:271
|
5056 |
+
#: addons/badges/myCRED-addon-badges.php:272
|
5057 |
+
#: addons/badges/myCRED-addon-badges.php:273
|
5058 |
+
#: addons/badges/myCRED-addon-badges.php:277
|
5059 |
+
#: addons/badges/myCRED-addon-badges.php:278
|
5060 |
+
#: addons/badges/myCRED-addon-badges.php:279
|
5061 |
+
msgid "Badge Updated."
|
5062 |
+
msgstr "Insignia Actualizada"
|
5063 |
+
|
5064 |
+
#: addons/badges/myCRED-addon-badges.php:396
|
5065 |
+
#: addons/badges/myCRED-addon-badges.php:480
|
5066 |
+
msgid "Badge Name"
|
5067 |
+
msgstr "Nombre de Insignia"
|
5068 |
+
|
5069 |
+
#: addons/badges/myCRED-addon-badges.php:397
|
5070 |
+
msgid "Default Image"
|
5071 |
+
msgstr "Imagen Predefinida"
|
5072 |
+
|
5073 |
+
#: addons/badges/myCRED-addon-badges.php:399
|
5074 |
+
msgid "Requirements"
|
5075 |
+
msgstr "Requisitos"
|
5076 |
+
|
5077 |
+
#: addons/badges/myCRED-addon-badges.php:516
|
5078 |
+
msgid "Badge Image"
|
5079 |
+
msgstr "Imagen de la Insignia"
|
5080 |
+
|
5081 |
+
#: addons/badges/myCRED-addon-badges.php:517
|
5082 |
+
msgid "Use as Badge"
|
5083 |
+
msgstr "Utiliza como Insignia"
|
5084 |
+
|
5085 |
+
#: addons/badges/myCRED-addon-badges.php:678
|
5086 |
+
msgid "Assign Badge"
|
5087 |
+
msgstr "Asignar Insignia"
|
5088 |
+
|
5089 |
+
#: addons/badges/myCRED-addon-badges.php:679
|
5090 |
+
msgid "Remove Connections"
|
5091 |
+
msgstr "Quitar Conexiones"
|
5092 |
+
|
5093 |
+
#: addons/badges/myCRED-addon-badges.php:777
|
5094 |
+
msgid "Time(s)"
|
5095 |
+
msgstr "Tiempo(s)"
|
5096 |
+
|
5097 |
+
#: addons/badges/myCRED-addon-badges.php:778
|
5098 |
+
msgid "In total"
|
5099 |
+
msgstr "En Total"
|
5100 |
+
|
5101 |
+
#: addons/badges/myCRED-addon-badges.php:1184
|
5102 |
+
msgid "Include in Forum Replies"
|
5103 |
+
msgstr "Incluir en Respuesta de Fórum"
|
5104 |
+
|
5105 |
+
#: addons/badges/myCRED-addon-badges.php:1185
|
5106 |
+
msgid "Include in Profile and Forum Replies"
|
5107 |
+
msgstr "Incluir en Perfil y Respuestas de Fórum"
|
5108 |
+
|
5109 |
+
#: addons/badges/myCRED-addon-badges.php:1408
|
5110 |
+
msgid "No users has yet earned this badge."
|
5111 |
+
msgstr "Ningun usuario ha ganado esta insignia."
|
5112 |
+
|
5113 |
+
#: addons/badges/myCRED-addon-badges.php:1435
|
5114 |
+
msgid "%s connections where removed."
|
5115 |
+
msgstr "%s conexiones han sido quitados."
|
5116 |
+
|
5117 |
+
#: addons/coupons/myCRED-addon-coupons.php:100
|
5118 |
+
#: addons/coupons/myCRED-addon-coupons.php:106
|
5119 |
+
#: addons/coupons/myCRED-addon-coupons.php:168
|
5120 |
+
#: addons/coupons/myCRED-addon-coupons.php:169
|
5121 |
+
#: addons/coupons/myCRED-addon-coupons.php:659
|
5122 |
+
msgid "Coupons"
|
5123 |
+
msgstr "Cupones"
|
5124 |
+
|
5125 |
+
#: addons/coupons/myCRED-addon-coupons.php:101
|
5126 |
+
msgid "Coupon"
|
5127 |
+
msgstr "Cupón"
|
5128 |
+
|
5129 |
+
#: addons/coupons/myCRED-addon-coupons.php:102
|
5130 |
+
#: addons/coupons/myCRED-addon-coupons.php:103
|
5131 |
+
msgid "Create New"
|
5132 |
+
msgstr "Crear Nuevo"
|
5133 |
+
|
5134 |
+
#: addons/coupons/myCRED-addon-coupons.php:104
|
5135 |
+
msgid "Edit Coupon"
|
5136 |
+
msgstr "Editar Cupón"
|
5137 |
+
|
5138 |
+
#: addons/coupons/myCRED-addon-coupons.php:105
|
5139 |
+
msgid "New Coupon"
|
5140 |
+
msgstr "Nuevo Cupón"
|
5141 |
+
|
5142 |
+
#: addons/coupons/myCRED-addon-coupons.php:108
|
5143 |
+
msgid "Search coupons"
|
5144 |
+
msgstr "Busqueda de Cupones"
|
5145 |
+
|
5146 |
+
#: addons/coupons/myCRED-addon-coupons.php:109
|
5147 |
+
msgid "No coupons found"
|
5148 |
+
msgstr "Ningun Cupón Encontrado"
|
5149 |
+
|
5150 |
+
#: addons/coupons/myCRED-addon-coupons.php:110
|
5151 |
+
msgid "No coupons found in Trash"
|
5152 |
+
msgstr "Ningun Cupón Encontrado en la Papelera"
|
5153 |
+
|
5154 |
+
#: addons/coupons/myCRED-addon-coupons.php:143
|
5155 |
+
#: addons/coupons/myCRED-addon-coupons.php:144
|
5156 |
+
#: addons/coupons/myCRED-addon-coupons.php:145
|
5157 |
+
#: addons/coupons/myCRED-addon-coupons.php:146
|
5158 |
+
#: addons/coupons/myCRED-addon-coupons.php:149
|
5159 |
+
#: addons/coupons/myCRED-addon-coupons.php:150
|
5160 |
+
#: addons/coupons/myCRED-addon-coupons.php:151
|
5161 |
+
#: addons/coupons/myCRED-addon-coupons.php:152
|
5162 |
+
msgid "Coupon updated."
|
5163 |
+
msgstr "Cupón Actualizado"
|
5164 |
+
|
5165 |
+
#: addons/coupons/myCRED-addon-coupons.php:148
|
5166 |
+
msgid "Coupon published."
|
5167 |
+
msgstr "Cupón Publicado."
|
5168 |
+
|
5169 |
+
#: addons/coupons/myCRED-addon-coupons.php:230
|
5170 |
+
#: addons/coupons/myCRED-addon-coupons.php:247
|
5171 |
+
msgid "Coupon Code"
|
5172 |
+
msgstr "Código de Cupón"
|
5173 |
+
|
5174 |
+
#: addons/coupons/myCRED-addon-coupons.php:248
|
5175 |
+
#: addons/coupons/myCRED-addon-coupons.php:481
|
5176 |
+
msgid "Value"
|
5177 |
+
msgstr "Valor"
|
5178 |
+
|
5179 |
+
#: addons/coupons/myCRED-addon-coupons.php:251
|
5180 |
+
#: addons/sell-content/includes/mycred-sell-shortcodes.php:188
|
5181 |
+
msgid "Expires"
|
5182 |
+
msgstr "Expire"
|
5183 |
+
|
5184 |
+
#: addons/coupons/myCRED-addon-coupons.php:307
|
5185 |
+
msgid "Per User"
|
5186 |
+
msgstr "Por Usuario"
|
5187 |
+
|
5188 |
+
#: addons/coupons/myCRED-addon-coupons.php:316
|
5189 |
+
#: addons/sell-content/includes/mycred-sell-shortcodes.php:231
|
5190 |
+
msgid "Never"
|
5191 |
+
msgstr "Nunca"
|
5192 |
+
|
5193 |
+
#: addons/coupons/myCRED-addon-coupons.php:322
|
5194 |
+
msgid "Expired"
|
5195 |
+
msgstr "Caducado"
|
5196 |
+
|
5197 |
+
#: addons/coupons/myCRED-addon-coupons.php:326
|
5198 |
+
msgid "In %s time"
|
5199 |
+
msgstr "En %s tiempo"
|
5200 |
+
|
5201 |
+
#: addons/coupons/myCRED-addon-coupons.php:425
|
5202 |
+
msgid "Coupon Setup"
|
5203 |
+
msgstr "Configuración de Cupón"
|
5204 |
+
|
5205 |
+
#: addons/coupons/myCRED-addon-coupons.php:434
|
5206 |
+
msgid "Coupon Limits"
|
5207 |
+
msgstr "Limites de Cupón"
|
5208 |
+
|
5209 |
+
#: addons/coupons/myCRED-addon-coupons.php:443
|
5210 |
+
msgid "Coupon Requirements"
|
5211 |
+
msgstr "Requisitos de Cupón"
|
5212 |
+
|
5213 |
+
#: addons/coupons/myCRED-addon-coupons.php:483
|
5214 |
+
msgid "The amount of %plural% this coupon is worth."
|
5215 |
+
msgstr "La cantidad de %plural% que vale este cupón."
|
5216 |
+
|
5217 |
+
#: addons/coupons/myCRED-addon-coupons.php:492
|
5218 |
+
msgid "Select the point type that this coupon is applied."
|
5219 |
+
msgstr "Elige el clase de puntos al cual este cupón se aplica."
|
5220 |
+
|
5221 |
+
#: addons/coupons/myCRED-addon-coupons.php:504
|
5222 |
+
msgid "Expire"
|
5223 |
+
msgstr "Caducar"
|
5224 |
+
|
5225 |
+
#: addons/coupons/myCRED-addon-coupons.php:506
|
5226 |
+
msgid ""
|
5227 |
+
"Optional date when this coupon expires. Expired coupons will be trashed."
|
5228 |
+
msgstr ""
|
5229 |
+
"La fecha opcional cuando este cupón caduca. Cupones caducados seran "
|
5230 |
+
"destrozado."
|
5231 |
+
|
5232 |
+
#: addons/coupons/myCRED-addon-coupons.php:534
|
5233 |
+
msgid "Global Maximum"
|
5234 |
+
msgstr "Máximo Global"
|
5235 |
+
|
5236 |
+
#. not clear if this is referring to the maximum number of users or to the maximum "points" a user can have or accrue?
|
5237 |
+
#: addons/coupons/myCRED-addon-coupons.php:541
|
5238 |
+
msgid "User Maximum"
|
5239 |
+
msgstr "Máximo Usuario"
|
5240 |
+
|
5241 |
+
#: addons/coupons/myCRED-addon-coupons.php:543
|
5242 |
+
msgid "The maximum number of times this coupon can be used by a user."
|
5243 |
+
msgstr ""
|
5244 |
+
"El máximo numero de veces que se puede utilizadar este cupón por un usuario."
|
5245 |
+
|
5246 |
+
#: addons/coupons/myCRED-addon-coupons.php:574
|
5247 |
+
#: addons/banking/services/mycred-service-interest.php:499
|
5248 |
+
msgid "Minimum Balance"
|
5249 |
+
msgstr "Saldo Minimo"
|
5250 |
+
|
5251 |
+
#: addons/coupons/myCRED-addon-coupons.php:579
|
5252 |
+
msgid ""
|
5253 |
+
"Optional minimum balance a user must have in order to use this coupon. Use "
|
5254 |
+
"zero to disable."
|
5255 |
+
msgstr ""
|
5256 |
+
"Mínimo saldo opcional que el usuario debe tener para utilizar este cupón. "
|
5257 |
+
"Utilice cero para inhabilitar."
|
5258 |
+
|
5259 |
+
#: addons/coupons/myCRED-addon-coupons.php:586
|
5260 |
+
msgid "Maximum Balance"
|
5261 |
+
msgstr "Saldo Máximo"
|
5262 |
+
|
5263 |
+
#: addons/coupons/myCRED-addon-coupons.php:591
|
5264 |
+
msgid ""
|
5265 |
+
"Optional maximum balance a user can have in order to use this coupon. Use "
|
5266 |
+
"zero to disable."
|
5267 |
+
msgstr ""
|
5268 |
+
"Saldo máximo opcional que un usuario puede tener para usar este cupón. Ponga "
|
5269 |
+
"cero para desactivar."
|
5270 |
+
|
5271 |
+
#: addons/coupons/myCRED-addon-coupons.php:665
|
5272 |
+
msgid ""
|
5273 |
+
"Log entry for successful coupon redemption. Use %coupon% to show the coupon "
|
5274 |
+
"code."
|
5275 |
+
msgstr ""
|
5276 |
+
"Entrada del registro al exitoso canje del cupón. Utilice %coupon% para "
|
5277 |
+
"mostrar el código del cupón."
|
5278 |
+
|
5279 |
+
#: addons/coupons/myCRED-addon-coupons.php:668
|
5280 |
+
msgid "Invalid Coupon Message"
|
5281 |
+
msgstr "Mensaje Cupón Invalido"
|
5282 |
+
|
5283 |
+
#: addons/coupons/myCRED-addon-coupons.php:672
|
5284 |
+
msgid "Message to show when users try to use a coupon that does not exists."
|
5285 |
+
msgstr ""
|
5286 |
+
"Mostrar mensaje cuando los usuarios intenten usar un cupón que no existe."
|
5287 |
+
|
5288 |
+
#: addons/coupons/myCRED-addon-coupons.php:675
|
5289 |
+
msgid "Expired Coupon Message"
|
5290 |
+
msgstr "Mensaje de Cupón Caducado"
|
5291 |
+
|
5292 |
+
#: addons/coupons/myCRED-addon-coupons.php:679
|
5293 |
+
msgid "Message to show when users try to use that has expired."
|
5294 |
+
msgstr "Mostrar mensaje cuando los usuarios intenten usar lo que ha caducado."
|
5295 |
+
|
5296 |
+
#: addons/coupons/myCRED-addon-coupons.php:682
|
5297 |
+
msgid "User Limit Message"
|
5298 |
+
msgstr "Mensaje de Límite de Usuario"
|
5299 |
+
|
5300 |
+
#: addons/coupons/myCRED-addon-coupons.php:686
|
5301 |
+
msgid "Message to show when the user limit has been reached for the coupon."
|
5302 |
+
msgstr "Mostrar mensaje cuando el cupón alcanza su límite de usuarios."
|
5303 |
+
|
5304 |
+
#: addons/coupons/myCRED-addon-coupons.php:689
|
5305 |
+
msgid "Minimum Balance Message"
|
5306 |
+
msgstr "Mensaje de Saldo Mínimo"
|
5307 |
+
|
5308 |
+
#: addons/coupons/myCRED-addon-coupons.php:693
|
5309 |
+
msgid ""
|
5310 |
+
"Message to show when a user does not meet the minimum balance requirement. "
|
5311 |
+
"(if used)"
|
5312 |
+
msgstr ""
|
5313 |
+
"Mostrar mensaje cuando el usuario no cumple con el saldo mínimo requerido. "
|
5314 |
+
"(si se utiliza)"
|
5315 |
+
|
5316 |
+
#: addons/coupons/myCRED-addon-coupons.php:696
|
5317 |
+
msgid "Maximum Balance Message"
|
5318 |
+
msgstr "Mensaje Saldo Máximo"
|
5319 |
+
|
5320 |
+
#: addons/coupons/myCRED-addon-coupons.php:700
|
5321 |
+
msgid ""
|
5322 |
+
"Message to show when a user does not meet the maximum balance requirement. "
|
5323 |
+
"(if used)"
|
5324 |
+
msgstr ""
|
5325 |
+
"Mostrar mensaje cuando un usuario no alcanza el saldo máximo requerido. (si "
|
5326 |
+
"se utiliza)"
|
5327 |
+
|
5328 |
+
#: addons/coupons/myCRED-addon-coupons.php:703
|
5329 |
+
msgid "Success Message"
|
5330 |
+
msgstr "Mensaje de éxito"
|
5331 |
+
|
5332 |
+
#: addons/coupons/myCRED-addon-coupons.php:707
|
5333 |
+
msgid ""
|
5334 |
+
"Message to show when a coupon was successfully deposited to a users account."
|
5335 |
+
msgstr ""
|
5336 |
+
"Monstrar mensaje cuando un cupón se deposita con éxito en una cuenta usuaria."
|
5337 |
+
|
5338 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:238
|
5339 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:241
|
5340 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:506
|
5341 |
+
msgid "Profit Share"
|
5342 |
+
msgstr "Reparto de Utilidades"
|
5343 |
+
|
5344 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:365
|
5345 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:830
|
5346 |
+
msgid "Sell Content"
|
5347 |
+
msgstr "Vender Contenido"
|
5348 |
+
|
5349 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:367
|
5350 |
+
msgid "Post Types"
|
5351 |
+
msgstr "Post Types"
|
5352 |
+
|
5353 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:497
|
5354 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:903
|
5355 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:495
|
5356 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:336
|
5357 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:339
|
5358 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:153
|
5359 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:156
|
5360 |
+
msgid "Price"
|
5361 |
+
msgstr "Precio"
|
5362 |
+
|
5363 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:513
|
5364 |
+
#: addons/sell-content/myCRED-addon-sell-content.php:548
|
5365 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:473
|
5366 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:619
|
5367 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:703
|
5368 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:88
|
5369 |
+
msgid "Button Label"
|
5370 |
+
msgstr "Eqiqueta Asignada al Botón"
|
5371 |
+
|
5372 |
+
#: addons/banking/services/mycred-service-central.php:117
|
5373 |
+
msgid "Ignore Manual Adjustments"
|
5374 |
+
msgstr "Ignorar Ajustes Manuales"
|
5375 |
+
|
5376 |
+
#: addons/banking/services/mycred-service-interest.php:28
|
5377 |
+
msgid "%plural% interest rate payment"
|
5378 |
+
msgstr "%plural% pago de tasa de interés"
|
5379 |
+
|
5380 |
+
#: addons/banking/services/mycred-service-interest.php:481
|
5381 |
+
#: addons/banking/services/mycred-service-interest.php:652
|
5382 |
+
msgid "Interest Rate"
|
5383 |
+
msgstr "Tasa de Interés"
|
5384 |
+
|
5385 |
+
#: addons/banking/services/mycred-service-interest.php:528
|
5386 |
+
#: addons/banking/services/mycred-service-interest.php:529
|
5387 |
+
#: addons/banking/services/mycred-service-payouts.php:791
|
5388 |
+
msgid "Comma separated list of user IDs"
|
5389 |
+
msgstr "Lista del IDs de usuarios delimitado por comas"
|
5390 |
+
|
5391 |
+
#: addons/banking/services/mycred-service-payouts.php:573
|
5392 |
+
msgid "Last Run"
|
5393 |
+
msgstr "Ultima Ejecución"
|
5394 |
+
|
5395 |
+
#: addons/banking/services/mycred-service-payouts.php:591
|
5396 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:396
|
5397 |
+
msgid "Payout"
|
5398 |
+
msgstr "Desembolso"
|
5399 |
+
|
5400 |
+
#. also, "Cada Hora"
|
5401 |
+
#: addons/banking/includes/mycred-banking-functions.php:79
|
5402 |
+
msgid "Hourly"
|
5403 |
+
msgstr "Por Hora"
|
5404 |
+
|
5405 |
+
#: addons/banking/includes/mycred-banking-functions.php:84
|
5406 |
+
msgid "Daily"
|
5407 |
+
msgstr "Diario"
|
5408 |
+
|
5409 |
+
#: addons/banking/includes/mycred-banking-functions.php:89
|
5410 |
+
msgid "Weekly"
|
5411 |
+
msgstr "Semanal"
|
5412 |
+
|
5413 |
+
#: addons/banking/includes/mycred-banking-functions.php:94
|
5414 |
+
msgid "Monthly"
|
5415 |
+
msgstr "Mensual"
|
5416 |
+
|
5417 |
+
#: addons/banking/includes/mycred-banking-functions.php:99
|
5418 |
+
msgid "Quarterly"
|
5419 |
+
msgstr "Trimestral"
|
5420 |
+
|
5421 |
+
#: addons/banking/includes/mycred-banking-functions.php:104
|
5422 |
+
msgid "Semiannually"
|
5423 |
+
msgstr "Semestral"
|
5424 |
+
|
5425 |
+
#: addons/banking/includes/mycred-banking-functions.php:109
|
5426 |
+
msgid "Annually"
|
5427 |
+
msgstr "Anual"
|
5428 |
+
|
5429 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:26
|
5430 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:540
|
5431 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:626
|
5432 |
+
#: addons/buy-creds/modules/buycred-module-core.php:673
|
5433 |
+
msgid "Payments"
|
5434 |
+
msgstr "Pagos"
|
5435 |
+
|
5436 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:27
|
5437 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:35
|
5438 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39
|
5439 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:733
|
5440 |
+
msgid "Pay Now"
|
5441 |
+
msgstr "Pagar Ahora"
|
5442 |
+
|
5443 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:32
|
5444 |
+
msgid "Payment for Event Registration"
|
5445 |
+
msgstr "Pago para Registrar Evento"
|
5446 |
+
|
5447 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:311
|
5448 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:336
|
5449 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:416
|
5450 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:120
|
5451 |
+
msgid "Total Cost"
|
5452 |
+
msgstr "Coste Total"
|
5453 |
+
|
5454 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:315
|
5455 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:340
|
5456 |
+
msgid "Balance After Purchase"
|
5457 |
+
msgstr "Saldo Despues de Compra"
|
5458 |
+
|
5459 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:380
|
5460 |
+
msgid "Activate %s"
|
5461 |
+
msgstr "Activar %s"
|
5462 |
+
|
5463 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:389
|
5464 |
+
msgid "Deactivate %s"
|
5465 |
+
msgstr "Desactivar %s"
|
5466 |
+
|
5467 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:402
|
5468 |
+
msgid "Gateway Settings"
|
5469 |
+
msgstr "Configuraciones de la Pasarela de Pago"
|
5470 |
+
|
5471 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:442
|
5472 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:524
|
5473 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:595
|
5474 |
+
msgid "How many %s is 1 %s worth?"
|
5475 |
+
msgstr "¿Cuantos %s vale un %s?"
|
5476 |
+
|
5477 |
+
#. also, "Titulo de la Pasarela de Pago" depending on the technical nature of the action being done
|
5478 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:463
|
5479 |
+
msgid "Gateway Title"
|
5480 |
+
msgstr "Titulo de la Red de Enlace"
|
5481 |
+
|
5482 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:465
|
5483 |
+
msgid "Title to show on Payment page"
|
5484 |
+
msgstr "Titulo que se mostrara en tu pagina de Pago"
|
5485 |
+
|
5486 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:468
|
5487 |
+
msgid "Payment Type"
|
5488 |
+
msgstr "Clase de Pago"
|
5489 |
+
|
5490 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:470
|
5491 |
+
msgid "Title to show on receipts and logs"
|
5492 |
+
msgstr "El titulo a mostrar en la factura y en los registros."
|
5493 |
+
|
5494 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:475
|
5495 |
+
msgid "Pay Button"
|
5496 |
+
msgstr "Botón de Pago"
|
5497 |
+
|
5498 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:503
|
5499 |
+
msgid "Important!"
|
5500 |
+
msgstr "¡Importante!"
|
5501 |
+
|
5502 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:505
|
5503 |
+
msgid ""
|
5504 |
+
"You can disable purchases using this gateway by adding a custom Event Meta: "
|
5505 |
+
"<code>mycred_no_sale</code>"
|
5506 |
+
msgstr ""
|
5507 |
+
"Puedes inhabilitar compras a traves de esta pasarela mediante la adición de "
|
5508 |
+
"un Evento Meta personalizado: <code>mycred_no_sale</code>"
|
5509 |
+
|
5510 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:506
|
5511 |
+
msgid "Users must be logged in to use this gateway!"
|
5512 |
+
msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
|
5513 |
+
|
5514 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:510
|
5515 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:569
|
5516 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:641
|
5517 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:393
|
5518 |
+
#: addons/gateway/carts/mycred-woocommerce.php:168
|
5519 |
+
msgid "Profit Sharing"
|
5520 |
+
msgstr "Reparto de Ganancias"
|
5521 |
+
|
5522 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:512
|
5523 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:572
|
5524 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:644
|
5525 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:397
|
5526 |
+
#: addons/gateway/carts/mycred-woocommerce.php:170
|
5527 |
+
msgid "Option to share sales with the product owner. Use zero to disable."
|
5528 |
+
msgstr ""
|
5529 |
+
"Opción de compartir las ventas con el dueño del producto. Utilice cero para "
|
5530 |
+
"inhabilitar."
|
5531 |
+
|
5532 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:528
|
5533 |
+
msgid "Solvent users"
|
5534 |
+
msgstr "Usuarios Solventes"
|
5535 |
+
|
5536 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:530
|
5537 |
+
msgid ""
|
5538 |
+
"Message to show users on the payment page before they are charged. Leave "
|
5539 |
+
"empty to hide."
|
5540 |
+
msgstr ""
|
5541 |
+
"Mostrar mensaje a los usuarios en la pagina de pago antes de cobrar. Dejalo "
|
5542 |
+
"vacío para ocultar. "
|
5543 |
+
|
5544 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:533
|
5545 |
+
msgid "Insolvent users"
|
5546 |
+
msgstr "Usuarios Insolventes"
|
5547 |
+
|
5548 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:535
|
5549 |
+
msgid "Message to show users who do not have enough points to pay."
|
5550 |
+
msgstr ""
|
5551 |
+
"Mostrar mensaje a los usuarios que no tienen suficientes puntos con que "
|
5552 |
+
"pagar."
|
5553 |
+
|
5554 |
+
#: addons/gateway/event-booking/mycred-eventespresso3.php:540
|
5555 |
+
msgid "Message to show visitors (users not logged in) on the payment page."
|
5556 |
+
msgstr ""
|
5557 |
+
"Mostrar mensaje a los visitantes (usuarios que no han iniciado sesión) en la "
|
5558 |
+
"pagina de pago."
|
5559 |
+
|
5560 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:29
|
5561 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
|
5562 |
+
msgid "Payment for tickets to %link_with_title%"
|
5563 |
+
msgstr "Pago de entradas para %link_with_title%"
|
5564 |
+
|
5565 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:30
|
5566 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
|
5567 |
+
msgid "Ticket refund for %link_with_title%"
|
5568 |
+
msgstr "Reembolso de entrada para "
|
5569 |
+
|
5570 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:34
|
5571 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
|
5572 |
+
msgid "Pay using your %_plural% balance"
|
5573 |
+
msgstr "Paga utilizando tu saldo de %_plural%"
|
5574 |
+
|
5575 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:36
|
5576 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
|
5577 |
+
msgid "Pay"
|
5578 |
+
msgstr "Pagar"
|
5579 |
+
|
5580 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:39
|
5581 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
|
5582 |
+
msgid "Thank you for your payment!"
|
5583 |
+
msgstr "¡Gracias por su pago!"
|
5584 |
+
|
5585 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:40
|
5586 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
|
5587 |
+
msgid "I'm sorry but you can not pay for these tickets using %_plural%"
|
5588 |
+
msgstr "Lo siento pero no puedes pagar estos billetes usando %_plural%"
|
5589 |
+
|
5590 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:333
|
5591 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:150
|
5592 |
+
msgid "Ticket Type"
|
5593 |
+
msgstr "Clase de Billete"
|
5594 |
+
|
5595 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:342
|
5596 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:159
|
5597 |
+
msgid "Spaces"
|
5598 |
+
msgstr "Espacios"
|
5599 |
+
|
5600 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:420
|
5601 |
+
msgid "Balance After Payment"
|
5602 |
+
msgstr "Saldo despues de Pago"
|
5603 |
+
|
5604 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:532
|
5605 |
+
msgid "Click to toggle"
|
5606 |
+
msgstr "Haga clic para alternar"
|
5607 |
+
|
5608 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:533
|
5609 |
+
msgid "%s Payments"
|
5610 |
+
msgstr "Pagos de "
|
5611 |
+
|
5612 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:542
|
5613 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:628
|
5614 |
+
msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
|
5615 |
+
msgstr "Deshabilitado - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
|
5616 |
+
|
5617 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:543
|
5618 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:629
|
5619 |
+
msgid "Single - Users can ONLY pay for tickets using %plural%."
|
5620 |
+
msgstr "Individuales - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
|
5621 |
+
|
5622 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:544
|
5623 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:630
|
5624 |
+
msgid "Multi - Users can pay for tickets using other gateways or %plural%."
|
5625 |
+
msgstr ""
|
5626 |
+
"Multi-usuarios pueden pagar entradas utilizando otras pasarelas de pago o "
|
5627 |
+
"%plural%."
|
5628 |
+
|
5629 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:562
|
5630 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:595
|
5631 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:634
|
5632 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:667
|
5633 |
+
msgid "Refunds"
|
5634 |
+
msgstr "Reembolsos"
|
5635 |
+
|
5636 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:565
|
5637 |
+
msgid ""
|
5638 |
+
"The percentage of the paid amount to refund if a booking gets cancelled. Use "
|
5639 |
+
"zero for no refunds. No refunds are given to \"Rejected\" bookings."
|
5640 |
+
msgstr ""
|
5641 |
+
"El porcentaje de la cantidad pagada que se reembolsará si se cancela una "
|
5642 |
+
"reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
|
5643 |
+
"reservas \"Rechazadas\""
|
5644 |
+
|
5645 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:585
|
5646 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:657
|
5647 |
+
msgid "Log Templates"
|
5648 |
+
msgstr "Plantillas de Registro"
|
5649 |
+
|
5650 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:588
|
5651 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:660
|
5652 |
+
msgid "Purchases"
|
5653 |
+
msgstr "Compras"
|
5654 |
+
|
5655 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:605
|
5656 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:689
|
5657 |
+
msgid "Payment Link Label"
|
5658 |
+
msgstr "La Etiqueta del Enlace de Pago"
|
5659 |
+
|
5660 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:608
|
5661 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:692
|
5662 |
+
msgid ""
|
5663 |
+
"The payment link shows / hides the payment form under \"My Bookings\". No "
|
5664 |
+
"HTML allowed."
|
5665 |
+
msgstr ""
|
5666 |
+
"El enlace de pago muestra / oculta el formulario de pago en \"Mis Reservas\"."
|
5667 |
+
" ¡No se permite HTML!"
|
5668 |
+
|
5669 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:612
|
5670 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:696
|
5671 |
+
msgid "Payment Header"
|
5672 |
+
msgstr "Encabezado de Pago"
|
5673 |
+
|
5674 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:615
|
5675 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:699
|
5676 |
+
msgid "Shown on top of the payment form. No HTML allowed."
|
5677 |
+
msgstr "Mostrar en la encima del formulario de pago. No se permite HTML."
|
5678 |
+
|
5679 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:622
|
5680 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:706
|
5681 |
+
msgid "The button label for payments. No HTML allowed!"
|
5682 |
+
msgstr "La etiqueta para el botón de pagos. ¡No se permite HTML!"
|
5683 |
+
|
5684 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:626
|
5685 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:717
|
5686 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:404
|
5687 |
+
msgid "Messages"
|
5688 |
+
msgstr "Mensajes"
|
5689 |
+
|
5690 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:629
|
5691 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:720
|
5692 |
+
msgid "Successful Payments"
|
5693 |
+
msgstr "Compras Finalizadas con Exito"
|
5694 |
+
|
5695 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:632
|
5696 |
+
#: addons/gateway/event-booking/mycred-eventsmanager.php:639
|
5697 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:723
|
5698 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:730
|
5699 |
+
msgid "No HTML allowed!"
|
5700 |
+
msgstr "¡No se permite HTML!"
|
5701 |
+
|
5702 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
|
5703 |
+
msgid "%plural% Cost"
|
5704 |
+
msgstr "%plural% Coste"
|
5705 |
+
|
5706 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
|
5707 |
+
msgid "Your Balance"
|
5708 |
+
msgstr "Su Saldo"
|
5709 |
+
|
5710 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:374
|
5711 |
+
msgid "You can not pay using this gateway."
|
5712 |
+
msgstr "No puede usar esta pasarela de pago."
|
5713 |
+
|
5714 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:492
|
5715 |
+
msgid "Reject"
|
5716 |
+
msgstr "Rechazar"
|
5717 |
+
|
5718 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:501
|
5719 |
+
msgid "Edit/View"
|
5720 |
+
msgstr "Editar/Ver"
|
5721 |
+
|
5722 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:637
|
5723 |
+
msgid ""
|
5724 |
+
"The percentage of the paid amount to refund if a user cancels their booking. "
|
5725 |
+
"Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
|
5726 |
+
msgstr ""
|
5727 |
+
"El porcentaje de la cantidad pagada que se reembolsará si se cancela una "
|
5728 |
+
"reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
|
5729 |
+
"reservas \"Rechazadas\""
|
5730 |
+
|
5731 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
|
5732 |
+
msgid "Cart & Checkout Cost"
|
5733 |
+
msgstr "Coste de Carrito y Página de pago"
|
5734 |
+
|
5735 |
+
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
|
5736 |
+
msgid "Label for cost in %plural%"
|
5737 |
+
msgstr "Etiqueta para coste en %plural%"
|
5738 |
+
|
5739 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:20
|
5740 |
+
msgid "Payment for Order: #%order_id%"
|
5741 |
+
msgstr "Pago por el Pedido"
|
5742 |
+
|
5743 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:23
|
5744 |
+
msgid "Store sale"
|
5745 |
+
msgstr "Venta desde la Tienda"
|
5746 |
+
|
5747 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:25
|
5748 |
+
msgid "You must be logged in to use this gateway"
|
5749 |
+
msgstr "Debe esta conectado para usar esta pasarela de pago."
|
5750 |
+
|
5751 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:26
|
5752 |
+
msgid "Insufficient Funds."
|
5753 |
+
msgstr "Fondos Insuficientes."
|
5754 |
+
|
5755 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:27
|
5756 |
+
msgid "Deduct the amount from your balance."
|
5757 |
+
msgstr "Restar la cantidad de su saldo."
|
5758 |
+
|
5759 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:107
|
5760 |
+
#: addons/buy-creds/gateways/bank-transfer.php:110
|
5761 |
+
msgid "Item"
|
5762 |
+
msgstr "Articulo"
|
5763 |
+
|
5764 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:128
|
5765 |
+
#: addons/gateway/carts/mycred-woocommerce.php:756
|
5766 |
+
msgid "Your current balance"
|
5767 |
+
msgstr "Tu saldo actual"
|
5768 |
+
|
5769 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:202
|
5770 |
+
msgid "You can not use this gateway."
|
5771 |
+
msgstr "No puedes usar esta pasarela de pago."
|
5772 |
+
|
5773 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:373
|
5774 |
+
msgid "Log Template for Payments"
|
5775 |
+
msgstr "Plantilla de Registro para Pagos"
|
5776 |
+
|
5777 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:390
|
5778 |
+
msgid "How much is 1 %s worth in %s"
|
5779 |
+
msgstr "Cuanto vale 1 %s en %s"
|
5780 |
+
|
5781 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:407
|
5782 |
+
msgid "Instructions"
|
5783 |
+
msgstr "Instrucciones"
|
5784 |
+
|
5785 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:408
|
5786 |
+
msgid ""
|
5787 |
+
"Optional instructions to show users when selecting this gateway. Leave empty "
|
5788 |
+
"to hide."
|
5789 |
+
msgstr ""
|
5790 |
+
"Instrucciones opcionales para mostrar a los usuarios cuando se selecciona "
|
5791 |
+
"esta pasarela. Deje el campo vacío para ocultarlo."
|
5792 |
+
|
5793 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:412
|
5794 |
+
msgid "Message to show visitors who are not logged in."
|
5795 |
+
msgstr "Muestra mensaje a los visitantes que no han iniciado sesión."
|
5796 |
+
|
5797 |
+
#: addons/gateway/carts/mycred-wpecommerce.php:416
|
5798 |
+
msgid ""
|
5799 |
+
"Message to show when users does not have enough %plural% to pay using this "
|
5800 |
+
"gateway."
|
5801 |
+
msgstr ""
|
5802 |
+
"Monstrar mensaje cuando los usuarios no tienen bastante %plural% con que "
|
5803 |
+
"pagar usando esta pasarela de pago."
|
5804 |
+
|
5805 |
+
#: addons/gateway/carts/mycred-woocommerce.php:30
|
5806 |
+
msgid "Let users pay using their myCRED balance."
|
5807 |
+
msgstr "Permite que los usuarios paguen mediante su saldo myCRED."
|
5808 |
+
|
5809 |
+
#: addons/gateway/carts/mycred-woocommerce.php:84
|
5810 |
+
msgid "Enable/Disable"
|
5811 |
+
msgstr "Activar/Desactivar"
|
5812 |
+
|
5813 |
+
#: addons/gateway/carts/mycred-woocommerce.php:86
|
5814 |
+
msgid "Enable myCRED Payment"
|
5815 |
+
msgstr "Activar Pago myCRED"
|
5816 |
+
|
5817 |
+
#: addons/gateway/carts/mycred-woocommerce.php:88
|
5818 |
+
msgid ""
|
5819 |
+
"Users who are not logged in or excluded from using myCRED will not have "
|
5820 |
+
"access to this gateway!"
|
5821 |
+
msgstr ""
|
5822 |
+
"¡Los usuarios que no estan ingresado o los que han sido excluido de utilizar "
|
5823 |
+
"myCRED no tendran acceso a esta pasarela de pago!"
|
5824 |
+
|
5825 |
+
#: addons/gateway/carts/mycred-woocommerce.php:93
|
5826 |
+
msgid "Title to show for this payment option."
|
5827 |
+
msgstr "Mostrar este titulo para esta opción de pago."
|
5828 |
+
|
5829 |
+
#: addons/gateway/carts/mycred-woocommerce.php:94
|
5830 |
+
msgid "Pay with myCRED"
|
5831 |
+
msgstr "Paga con myCRED"
|
5832 |
+
|
5833 |
+
#. not sure if it is "message to customers" or "message from customers"? current translation is "message to customers"
|
5834 |
+
#: addons/gateway/carts/mycred-woocommerce.php:98
|
5835 |
+
msgid "Customer Message"
|
5836 |
+
msgstr "Mensaje a los Clientes"
|
5837 |
+
|
5838 |
+
#: addons/gateway/carts/mycred-woocommerce.php:109
|
5839 |
+
#: addons/gateway/carts/mycred-woocommerce.php:181
|
5840 |
+
msgid "Refund Log Template"
|
5841 |
+
msgstr "Plantilla de Registro de Reembolsos"
|
5842 |
+
|
5843 |
+
#: addons/gateway/carts/mycred-woocommerce.php:121
|
5844 |
+
msgid "Select the point type users can use to pay."
|
5845 |
+
msgstr ""
|
5846 |
+
"Elige el clase de punto que los usuarios pueden utilizar para realizar pagos."
|
5847 |
+
|
5848 |
+
#: addons/gateway/carts/mycred-woocommerce.php:135
|
5849 |
+
msgid "How much is 1 %_singular% worth in %currency%?"
|
5850 |
+
msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
|
5851 |
+
|
5852 |
+
#: addons/gateway/carts/mycred-woocommerce.php:147
|
5853 |
+
msgid "Show Total"
|
5854 |
+
msgstr "Mostrar Total"
|
5855 |
+
|
5856 |
+
#: addons/gateway/carts/mycred-woocommerce.php:149
|
5857 |
+
msgid "Show the final price in %_plural% ."
|
5858 |
+
msgstr "Mostrar el precio final en %_plural%."
|
5859 |
+
|
5860 |
+
#: addons/gateway/carts/mycred-woocommerce.php:152
|
5861 |
+
msgid "Show in Cart"
|
5862 |
+
msgstr "Mostrar en Carrito"
|
5863 |
+
|
5864 |
+
#: addons/gateway/carts/mycred-woocommerce.php:153
|
5865 |
+
msgid "Show on Checkout Page"
|
5866 |
+
msgstr "Mostrar en la página de pago"
|
5867 |
+
|
5868 |
+
#: addons/gateway/carts/mycred-woocommerce.php:154
|
5869 |
+
msgid "Show in Cart and on Checkout Page"
|
5870 |
+
msgstr "Mostrar en el Carrito y en la página de pago"
|
5871 |
+
|
5872 |
+
#: addons/gateway/carts/mycred-woocommerce.php:161
|
5873 |
+
msgid "Order Total in %_plural%"
|
5874 |
+
msgstr "Total del Pedido en %_plural%"
|
5875 |
+
|
5876 |
+
#: addons/gateway/carts/mycred-woocommerce.php:177
|
5877 |
+
msgid "Log entry template for profit sharing."
|
5878 |
+
msgstr "Plantilla para entradas de registro para el reparto de ganancias."
|
5879 |
+
|
5880 |
+
#: addons/gateway/carts/mycred-woocommerce.php:183
|
5881 |
+
msgid "Log entry template for refunds of profit shares."
|
5882 |
+
msgstr ""
|
5883 |
+
"Plantilla de entrada de registro para reembolsos de reparto de ganancias."
|
5884 |
+
|
5885 |
+
#: addons/gateway/carts/mycred-woocommerce.php:213
|
5886 |
+
msgid "myCRED Payment"
|
5887 |
+
msgstr "Pago myCRED"
|
5888 |
+
|
5889 |
+
#: addons/gateway/carts/mycred-woocommerce.php:237
|
5890 |
+
msgid "You must be logged in to pay with %_plural%"
|
5891 |
+
msgstr "Debes haber iniciado sesión para pagar con %_plural%"
|
5892 |
+
|
5893 |
+
#: addons/gateway/carts/mycred-woocommerce.php:245
|
5894 |
+
msgid "You can not use this gateway. Please try a different payment option."
|
5895 |
+
msgstr ""
|
5896 |
+
"No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
|
5897 |
+
"diferente."
|
5898 |
+
|
5899 |
+
#: addons/gateway/carts/mycred-woocommerce.php:262
|
5900 |
+
#: addons/sell-content/includes/mycred-sell-functions.php:511
|
5901 |
+
msgid "Insufficient funds."
|
5902 |
+
msgstr "Fondos Insuficientes."
|
5903 |
+
|
5904 |
+
#: addons/gateway/carts/mycred-woocommerce.php:414
|
5905 |
+
msgid "Your account has successfully been charged."
|
5906 |
+
msgstr "Su cuenta ha sido cambiado con éxito."
|
5907 |
+
|
5908 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:19
|
5909 |
+
msgid "(%s) Transfer"
|
5910 |
+
msgstr "(%s) Transfererir"
|
5911 |
+
|
5912 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:22
|
5913 |
+
msgid "Allow transfers between users."
|
5914 |
+
msgstr "Permitir transferencias entre usuarios."
|
5915 |
+
|
5916 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:82
|
5917 |
+
msgid "Show users balance"
|
5918 |
+
msgstr "Mostrar el saldo de usuarios"
|
5919 |
+
|
5920 |
+
#: addons/transfer/includes/mycred-transfer-widgets.php:85
|
5921 |
+
msgid "Show users limit"
|
5922 |
+
msgstr "Mostrar los límites de usuarios"
|
5923 |
+
|
5924 |
+
#: addons/transfer/includes/mycred-transfer-shortcodes.php:156
|
5925 |
+
msgid "username"
|
5926 |
+
msgstr "nombre de usuario"
|
5927 |
+
|
5928 |
+
#: addons/transfer/includes/mycred-transfer-shortcodes.php:159
|
5929 |
+
msgid "email"
|
5930 |
+
msgstr "correo electrónico"
|
5931 |
+
|
5932 |
+
#. is this recipients plural or recipient's with an apostrophe missing?
|
5933 |
+
#: addons/transfer/includes/mycred-transfer-shortcodes.php:161
|
5934 |
+
msgid "recipients %s"
|
5935 |
+
msgstr "destinatarios %s"
|
5936 |
+
|
5937 |
+
#: addons/ranks/includes/mycred-rank-shortcodes.php:128
|
5938 |
+
#: addons/ranks/includes/mycred-rank-shortcodes.php:211
|
5939 |
+
msgid "No users found with this rank"
|
5940 |
+
msgstr "Ningun usuario encontrado con este rango"
|
5941 |
+
|
5942 |
+
#: addons/ranks/includes/mycred-rank-shortcodes.php:135
|
5943 |
+
msgid "Rank ID is required!"
|
5944 |
+
msgstr "¡ID de Rango obligatorio!"
|
5945 |
+
|
5946 |
+
#: addons/stats/abstracts/mycred-abstract-stat-widget.php:103
|
5947 |
+
msgid "Hooks"
|
5948 |
+
msgstr "Ganchos"
|
5949 |
+
|
5950 |
+
#: addons/sell-content/includes/mycred-sell-shortcodes.php:187
|
5951 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
|
5952 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:290
|
5953 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:637
|
5954 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:750
|
5955 |
+
#: addons/buy-creds/gateways/bank-transfer.php:112
|
5956 |
+
msgid "Cost"
|
5957 |
+
msgstr "Coste"
|
5958 |
+
|
5959 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:163
|
5960 |
+
msgid "Select currency"
|
5961 |
+
msgstr "Elige moneda"
|
5962 |
+
|
5963 |
+
#. also, "Pago de Prueba" depending on context
|
5964 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:445
|
5965 |
+
#: addons/buy-creds/gateways/bank-transfer.php:96
|
5966 |
+
msgid "Test Payment"
|
5967 |
+
msgstr "Probar Pago"
|
5968 |
+
|
5969 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:451
|
5970 |
+
#: addons/buy-creds/gateways/bank-transfer.php:100
|
5971 |
+
msgid "Payment"
|
5972 |
+
msgstr "PAgo"
|
5973 |
+
|
5974 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:685
|
5975 |
+
#: addons/buy-creds/gateways/bank-transfer.php:118
|
5976 |
+
msgid "%s Purchase"
|
5977 |
+
msgstr "Compra %s"
|
5978 |
+
|
5979 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:786
|
5980 |
+
msgid "Continue to %s"
|
5981 |
+
msgstr "Continuar a %s"
|
5982 |
+
|
5983 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:787
|
5984 |
+
#: addons/buy-creds/gateways/bitpay.php:225
|
5985 |
+
msgid "Click here if you are not automatically redirected"
|
5986 |
+
msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
|
5987 |
+
|
5988 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1501
|
5989 |
+
msgid "January"
|
5990 |
+
msgstr "Enero"
|
5991 |
+
|
5992 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1502
|
5993 |
+
msgid "February"
|
5994 |
+
msgstr "Febrero"
|
5995 |
+
|
5996 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1503
|
5997 |
+
msgid "March"
|
5998 |
+
msgstr "Marzo"
|
5999 |
+
|
6000 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1504
|
6001 |
+
msgid "April"
|
6002 |
+
msgstr "Abril"
|
6003 |
+
|
6004 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1505
|
6005 |
+
msgid "May"
|
6006 |
+
msgstr "Mayo"
|
6007 |
+
|
6008 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1506
|
6009 |
+
msgid "June"
|
6010 |
+
msgstr "Junio"
|
6011 |
+
|
6012 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1507
|
6013 |
+
msgid "July"
|
6014 |
+
msgstr "Julio"
|
6015 |
+
|
6016 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1508
|
6017 |
+
msgid "August"
|
6018 |
+
msgstr "Agosto"
|
6019 |
+
|
6020 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1509
|
6021 |
+
msgid "September"
|
6022 |
+
msgstr "Septiembre"
|
6023 |
+
|
6024 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1510
|
6025 |
+
msgid "October"
|
6026 |
+
msgstr "Octubre"
|
6027 |
+
|
6028 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1511
|
6029 |
+
msgid "November"
|
6030 |
+
msgstr "Noviembre"
|
6031 |
+
|
6032 |
+
#: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1512
|
6033 |
+
msgid "December"
|
6034 |
+
msgstr "Diciembre"
|
6035 |
+
|
6036 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:158
|
6037 |
+
msgctxt "Post Type General Name"
|
6038 |
+
msgid "Pending Payments"
|
6039 |
+
msgstr "Pagos Pendientes"
|
6040 |
+
|
6041 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:159
|
6042 |
+
msgctxt "Post Type Singular Name"
|
6043 |
+
msgid "Pending Payment"
|
6044 |
+
msgstr "Pago Pendiente"
|
6045 |
+
|
6046 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:160
|
6047 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:162
|
6048 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:252
|
6049 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:253
|
6050 |
+
msgid "Pending Payments"
|
6051 |
+
msgstr "Pagos Pendientes"
|
6052 |
+
|
6053 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:166
|
6054 |
+
msgid "Edit Pending Payment"
|
6055 |
+
msgstr "Editar Pago Pendiente"
|
6056 |
+
|
6057 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:169
|
6058 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:170
|
6059 |
+
msgid "Not found in Trash"
|
6060 |
+
msgstr "No ha sido encontrado en la Papelera"
|
6061 |
+
|
6062 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:286
|
6063 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:747
|
6064 |
+
#: addons/buy-creds/modules/buycred-module-core.php:755
|
6065 |
+
#: addons/buy-creds/gateways/bank-transfer.php:113
|
6066 |
+
msgid "Transaction ID"
|
6067 |
+
msgstr "Identificación de la Transacción"
|
6068 |
+
|
6069 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:288
|
6070 |
+
#: addons/buy-creds/modules/buycred-module-core.php:751
|
6071 |
+
msgid "Buyer"
|
6072 |
+
msgstr "Comprador"
|
6073 |
+
|
6074 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:291
|
6075 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:612
|
6076 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:748
|
6077 |
+
#: addons/buy-creds/modules/buycred-module-core.php:750
|
6078 |
+
#: addons/buy-creds/includes/buycred-functions.php:119
|
6079 |
+
msgid "Gateway"
|
6080 |
+
msgstr "Pasarela"
|
6081 |
+
|
6082 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:292
|
6083 |
+
msgid "Type"
|
6084 |
+
msgstr "Clase"
|
6085 |
+
|
6086 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:389
|
6087 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:494
|
6088 |
+
msgid "Pay Out"
|
6089 |
+
msgstr "Desembolso"
|
6090 |
+
|
6091 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:489
|
6092 |
+
msgid "Save"
|
6093 |
+
msgstr "Guardar"
|
6094 |
+
|
6095 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:643
|
6096 |
+
#: addons/buy-creds/gateways/bank-transfer.php:180
|
6097 |
+
#: addons/buy-creds/gateways/bitpay.php:251
|
6098 |
+
#: addons/buy-creds/gateways/paypal-standard.php:279
|
6099 |
+
#: addons/buy-creds/gateways/skrill.php:294
|
6100 |
+
msgid "Currency"
|
6101 |
+
msgstr "Moneda"
|
6102 |
+
|
6103 |
+
#: addons/buy-creds/modules/buycred-module-pending.php:814
|
6104 |
+
msgid "No pending payments found"
|
6105 |
+
msgstr "Ningun pago pendiente encontrado"
|
6106 |
+
|
6107 |
+
#: addons/buy-creds/modules/buycred-module-core.php:28
|
6108 |
+
#: addons/buy-creds/modules/buycred-module-core.php:29
|
6109 |
+
#: addons/buy-creds/modules/buycred-module-core.php:30
|
6110 |
+
msgid "Payment Gateways"
|
6111 |
+
msgstr "Pasarela de Pago"
|
6112 |
+
|
6113 |
+
#: addons/buy-creds/modules/buycred-module-core.php:297
|
6114 |
+
msgid "Please login to purchase %_plural%"
|
6115 |
+
msgstr "Identifícate antes de comprar %_plural%"
|
6116 |
+
|
6117 |
+
#: addons/buy-creds/modules/buycred-module-core.php:312
|
6118 |
+
msgid "Gift purchase from %display_name%."
|
6119 |
+
msgstr "Regalo comprado de parte de %display_name%."
|
6120 |
+
|
6121 |
+
#: addons/buy-creds/modules/buycred-module-core.php:331
|
6122 |
+
msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
|
6123 |
+
msgstr ""
|
6124 |
+
"La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
|
6125 |
+
"a 1."
|
6126 |
+
|
6127 |
+
#: addons/buy-creds/modules/buycred-module-core.php:339
|
6128 |
+
msgid ""
|
6129 |
+
"Select the point types that users can buy. You must select at least one!"
|
6130 |
+
msgstr ""
|
6131 |
+
"Elige el clase de punto que el usuario puede comprar. Debes eligir al menos "
|
6132 |
+
"uno!"
|
6133 |
+
|
6134 |
+
#: addons/buy-creds/modules/buycred-module-core.php:350
|
6135 |
+
msgid "Login Template"
|
6136 |
+
msgstr "Plantilla de Ingreso"
|
6137 |
+
|
6138 |
+
#: addons/buy-creds/modules/buycred-module-core.php:354
|
6139 |
+
msgid "Content to show when a user is not logged in."
|
6140 |
+
msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
|
6141 |
+
|
6142 |
+
#: addons/buy-creds/modules/buycred-module-core.php:364
|
6143 |
+
msgid "Thank You Page"
|
6144 |
+
msgstr "Página de Agradecimiento"
|
6145 |
+
|
6146 |
+
#: addons/buy-creds/modules/buycred-module-core.php:367
|
6147 |
+
#: addons/buy-creds/modules/buycred-module-core.php:390
|
6148 |
+
msgid "Custom URL"
|
6149 |
+
msgstr "URL Personalizada"
|
6150 |
+
|
6151 |
+
#: addons/buy-creds/modules/buycred-module-core.php:372
|
6152 |
+
#: addons/buy-creds/modules/buycred-module-core.php:395
|
6153 |
+
msgid "Page"
|
6154 |
+
msgstr "Página"
|
6155 |
+
|
6156 |
+
#: addons/buy-creds/modules/buycred-module-core.php:387
|
6157 |
+
msgid "Cancellation Page"
|
6158 |
+
msgstr "Página de Cancelación"
|
6159 |
+
|
6160 |
+
#: addons/buy-creds/modules/buycred-module-core.php:410
|
6161 |
+
#: addons/buy-creds/modules/buycred-module-core.php:511
|
6162 |
+
#: addons/buy-creds/modules/buycred-module-core.php:762
|
6163 |
+
msgid "Purchase Log"
|
6164 |
+
msgstr "Registro de Compras"
|
6165 |
+
|
6166 |
+
#: addons/buy-creds/modules/buycred-module-core.php:412
|
6167 |
+
msgid "Show seperate log for %_plural% purchases."
|
6168 |
+
msgstr "Mostrar registro distinto para compras de %_plural%."
|
6169 |
+
|
6170 |
+
#: addons/buy-creds/modules/buycred-module-core.php:414
|
6171 |
+
msgid "Gifting"
|
6172 |
+
msgstr "Regalar"
|
6173 |
+
|
6174 |
+
#: addons/buy-creds/modules/buycred-module-core.php:416
|
6175 |
+
msgid "Allow users to buy %_plural% for other users."
|
6176 |
+
msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
|
6177 |
+
|
6178 |
+
#: addons/buy-creds/modules/buycred-module-core.php:417
|
6179 |
+
msgid "Allow users to buy %_plural% for content authors."
|
6180 |
+
msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
|
6181 |
+
|
6182 |
+
#: addons/buy-creds/modules/buycred-module-core.php:425
|
6183 |
+
msgid "Available Shortcodes"
|
6184 |
+
msgstr "Códigos cortos Disponibles"
|
6185 |
+
|
6186 |
+
#: addons/buy-creds/modules/buycred-module-core.php:510
|
6187 |
+
msgid "buyCRED Purchase Log"
|
6188 |
+
msgstr "compraCRED Registro de Compras"
|
6189 |
+
|
6190 |
+
#: addons/buy-creds/modules/buycred-module-core.php:555
|
6191 |
+
msgid "%s Payment Gateways"
|
6192 |
+
msgstr "%s Pasarelas de Pago"
|
6193 |
+
|
6194 |
+
#: addons/buy-creds/modules/buycred-module-core.php:590
|
6195 |
+
msgid "Sandbox Mode"
|
6196 |
+
msgstr "Modo Entorno Aislado"
|
6197 |
+
|
6198 |
+
#: addons/buy-creds/modules/buycred-module-core.php:593
|
6199 |
+
msgid "Enable for test purchases."
|
6200 |
+
msgstr "Habilitar para compras de prueba."
|
6201 |
+
|
6202 |
+
#: addons/buy-creds/modules/buycred-module-core.php:613
|
6203 |
+
msgid "More Gateways"
|
6204 |
+
msgstr "Mas Pasarelas"
|
6205 |
+
|
6206 |
+
#: addons/buy-creds/modules/buycred-module-core.php:754
|
6207 |
+
msgid "Payed"
|
6208 |
+
msgstr "Pagado"
|
6209 |
+
|
6210 |
+
#: addons/buy-creds/modules/buycred-module-core.php:970
|
6211 |
+
msgid "No purchases found"
|
6212 |
+
msgstr "No se encontro ninguna compra"
|
6213 |
+
|
6214 |
+
#: addons/buy-creds/modules/buycred-module-core.php:1357
|
6215 |
+
msgid "Buy Now"
|
6216 |
+
msgstr "Compra Ahora"
|
6217 |
+
|
6218 |
+
#: addons/buy-creds/gateways/bank-transfer.php:59
|
6219 |
+
#: addons/buy-creds/gateways/bitpay.php:163
|
6220 |
+
#: addons/buy-creds/gateways/netbilling.php:144
|
6221 |
+
#: addons/buy-creds/gateways/zombaio.php:267
|
6222 |
+
#: addons/buy-creds/gateways/paypal-standard.php:207
|
6223 |
+
#: addons/buy-creds/gateways/skrill.php:186
|
6224 |
+
msgid "Please setup this gateway before attempting to make a purchase!"
|
6225 |
+
msgstr ""
|
6226 |
+
"¡Por favor configure esta puerta de enlace antes de intentar hacer una "
|
6227 |
+
"compra!"
|
6228 |
+
|
6229 |
+
#: addons/buy-creds/gateways/bank-transfer.php:186
|
6230 |
+
#: addons/buy-creds/gateways/bitpay.php:265
|
6231 |
+
#: addons/buy-creds/gateways/netbilling.php:234
|
6232 |
+
#: addons/buy-creds/gateways/paypal-standard.php:298
|
6233 |
+
#: addons/buy-creds/gateways/skrill.php:320
|
6234 |
+
msgid "Exchange Rates"
|
6235 |
+
msgstr "Tipo de Cambio"
|
6236 |
+
|
6237 |
+
#: addons/buy-creds/gateways/bitpay.php:62
|
6238 |
+
#: addons/buy-creds/gateways/netbilling.php:92
|
6239 |
+
#: addons/buy-creds/gateways/paypal-standard.php:145
|
6240 |
+
#: addons/buy-creds/gateways/skrill.php:124
|
6241 |
+
msgid "Price mismatch. Expected: %s Received: %s"
|
6242 |
+
msgstr "Desajuste de precio. Esperaba: %s Recibido: %s"
|
6243 |
+
|
6244 |
+
#: addons/buy-creds/gateways/bitpay.php:68
|
6245 |
+
#: addons/buy-creds/gateways/paypal-standard.php:151
|
6246 |
+
#: addons/buy-creds/gateways/skrill.php:130
|
6247 |
+
msgid "Currency mismatch. Expected: %s Received: %s"
|
6248 |
+
msgstr "Desajuste de moneda. Esperaba: %s Recibido: %s"
|
6249 |
+
|
6250 |
+
#: addons/buy-creds/gateways/bitpay.php:74
|
6251 |
+
#: addons/buy-creds/gateways/netbilling.php:98
|
6252 |
+
#: addons/buy-creds/gateways/paypal-standard.php:157
|
6253 |
+
#: addons/buy-creds/gateways/skrill.php:136
|
6254 |
+
msgid "Payment not completed. Received: %s"
|
6255 |
+
msgstr "Pago no cumplido. Recibido: %s"
|
6256 |
+
|
6257 |
+
#: addons/buy-creds/gateways/bitpay.php:85
|
6258 |
+
#: addons/buy-creds/gateways/netbilling.php:109
|
6259 |
+
#: addons/buy-creds/gateways/zombaio.php:237
|
6260 |
+
#: addons/buy-creds/gateways/paypal-standard.php:168
|
6261 |
+
#: addons/buy-creds/gateways/skrill.php:147
|
6262 |
+
msgid "Failed to credit users account."
|
6263 |
+
msgstr "No se pudo creditar la cuenta del usuario."
|
6264 |
+
|
6265 |
+
#: addons/buy-creds/gateways/bitpay.php:208
|
6266 |
+
#: addons/buy-creds/gateways/bitpay.php:219
|
6267 |
+
#: addons/buy-creds/gateways/netbilling.php:190
|
6268 |
+
#: addons/buy-creds/gateways/zombaio.php:297
|
6269 |
+
#: addons/buy-creds/gateways/paypal-standard.php:261
|
6270 |
+
#: addons/buy-creds/gateways/skrill.php:275
|
6271 |
+
msgid "Processing payment …"
|
6272 |
+
msgstr "Procesando el pago …"
|
6273 |
+
|
6274 |
+
#: addons/buy-creds/gateways/bitpay.php:211
|
6275 |
+
msgid ""
|
6276 |
+
"Could not create a BitPay Invoice. Please contact the site administrator!"
|
6277 |
+
msgstr ""
|
6278 |
+
"¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con "
|
6279 |
+
"el administrador del sitio!"
|
6280 |
+
|
6281 |
+
#: addons/buy-creds/gateways/bitpay.php:212
|
6282 |
+
msgid "Bitpay returned the following error message:"
|
6283 |
+
msgstr "Bitpay comunico este mensaje de error:"
|
6284 |
+
|
6285 |
+
#: addons/buy-creds/gateways/bitpay.php:254
|
6286 |
+
msgid "Currency Code"
|
6287 |
+
msgstr "Código de Moneda"
|
6288 |
+
|
6289 |
+
#: addons/buy-creds/gateways/bitpay.php:258
|
6290 |
+
#: addons/buy-creds/gateways/netbilling.php:227
|
6291 |
+
#: addons/buy-creds/gateways/paypal-standard.php:291
|
6292 |
+
#: addons/buy-creds/gateways/skrill.php:313
|
6293 |
+
msgid "Item Name"
|
6294 |
+
msgstr "Nombre de Artículo"
|
6295 |
+
|
6296 |
+
#: addons/buy-creds/gateways/bitpay.php:262
|
6297 |
+
#: addons/buy-creds/gateways/netbilling.php:231
|
6298 |
+
#: addons/buy-creds/gateways/paypal-standard.php:295
|
6299 |
+
#: addons/buy-creds/gateways/skrill.php:317
|
6300 |
+
msgid "Description of the item being purchased by the user."
|
6301 |
+
msgstr "Descripción del artículo que el usuario esta comprando."
|
6302 |
+
|
6303 |
+
#: addons/buy-creds/gateways/bitpay.php:269
|
6304 |
+
msgid "Transaction Speed"
|
6305 |
+
msgstr "Velocidad de la Transacción"
|
6306 |
+
|
6307 |
+
#: addons/buy-creds/gateways/bitpay.php:276
|
6308 |
+
msgid "High"
|
6309 |
+
msgstr "Alto"
|
6310 |
+
|
6311 |
+
#: addons/buy-creds/gateways/bitpay.php:277
|
6312 |
+
msgid "Medium"
|
6313 |
+
msgstr "Medio"
|
6314 |
+
|
6315 |
+
#: addons/buy-creds/gateways/bitpay.php:278
|
6316 |
+
msgid "Low"
|
6317 |
+
msgstr "Bajo"
|
6318 |
+
|
6319 |
+
#: addons/buy-creds/gateways/bitpay.php:291
|
6320 |
+
msgid "Full Notifications"
|
6321 |
+
msgstr "Notificaciones Completas"
|
6322 |
+
|
6323 |
+
#: addons/buy-creds/gateways/netbilling.php:208
|
6324 |
+
msgid "Account ID"
|
6325 |
+
msgstr "ID de la Cuenta"
|
6326 |
+
|
6327 |
+
#: addons/buy-creds/gateways/netbilling.php:214
|
6328 |
+
msgid "Site Tag"
|
6329 |
+
msgstr "Etiqueta (tag) del Sitio"
|
6330 |
+
|
6331 |
+
#: addons/buy-creds/gateways/netbilling.php:220
|
6332 |
+
msgid "Order Integrity Key"
|
6333 |
+
msgstr "Clave de Integridad del Pedido"
|
6334 |
+
|
6335 |
+
#: addons/buy-creds/gateways/netbilling.php:224
|
6336 |
+
msgid "Found under Step 12 on the Fraud Defense page."
|
6337 |
+
msgstr "Se encuentra en Paso 12 de la página sobre Defensa contra Fraude."
|
6338 |
+
|
6339 |
+
#: addons/buy-creds/gateways/netbilling.php:238
|
6340 |
+
msgid "Postback CGI URL"
|
6341 |
+
msgstr "Devolución de la URL CGI"
|
6342 |
+
|
6343 |
+
#: addons/buy-creds/gateways/netbilling.php:242
|
6344 |
+
msgid ""
|
6345 |
+
"For this gateway to work, you must login to your NETbilling account and edit "
|
6346 |
+
"your site. Under \"Default payment form settings\" make sure the Postback "
|
6347 |
+
"CGI URL is set to the above address and \"Return method\" is set to POST."
|
6348 |
+
msgstr ""
|
6349 |
+
"Para que esta pasarela de pago funcione, deberia acceder a su cuenta "
|
6350 |
+
"NETbilling y editar su sitio web. En \"Configuración de Formularios "
|
6351 |
+
"Predefinido\" asegúrese de que la devolución de la URL CGI esta ajustada a "
|
6352 |
+
"la dirección indicada arriba y \"Método de Retorno\" está ajustado a POST."
|
6353 |
+
|
6354 |
+
#: addons/buy-creds/gateways/netbilling.php:290
|
6355 |
+
msgid "Incorrect Credit Card number"
|
6356 |
+
msgstr "Número de Tarjeta de Crédito Incorrecta"
|
6357 |
+
|
6358 |
+
#: addons/buy-creds/gateways/netbilling.php:296
|
6359 |
+
msgid "The credit card entered is past its expiration date."
|
6360 |
+
msgstr "La tarjeta de crédito ha pasado su fecha de vencimiento."
|
6361 |
+
|
6362 |
+
#: addons/buy-creds/gateways/netbilling.php:299
|
6363 |
+
msgid "The CVV2 number entered is not valid."
|
6364 |
+
msgstr "El numero CVV2 teclado no es valido."
|
6365 |
+
|
6366 |
+
#: addons/buy-creds/gateways/netbilling.php:306
|
6367 |
+
msgid "The bank routing number entered is not valid."
|
6368 |
+
msgstr "El número de ruta bancaria introducido no es valido."
|
6369 |
+
|
6370 |
+
#: addons/buy-creds/gateways/netbilling.php:310
|
6371 |
+
msgid "The bank account number entered is not valid."
|
6372 |
+
msgstr "La cuenta bancaria introducida no es valida."
|
6373 |
+
|
6374 |
+
#: addons/buy-creds/gateways/zombaio.php:204
|
6375 |
+
msgid "Duplicate transaction. Received: %s"
|
6376 |
+
msgstr "Transacción duplicado. Recibido: %s"
|
6377 |
+
|
6378 |
+
#: addons/buy-creds/gateways/zombaio.php:210
|
6379 |
+
msgid "Live transaction while debug mode is enabled! Received: %s"
|
6380 |
+
msgstr "Depuración de transacciones en vivo esta habilitado! Recibido: %s"
|
6381 |
+
|
6382 |
+
#: addons/buy-creds/gateways/zombaio.php:315
|
6383 |
+
msgid "Site ID"
|
6384 |
+
msgstr "ID del Sitio de web"
|
6385 |
+
|
6386 |
+
#. or "Contraseña de GW" not clear based on lack of context
|
6387 |
+
#: addons/buy-creds/gateways/zombaio.php:321
|
6388 |
+
msgid "GW Password"
|
6389 |
+
msgstr "Contraseña GW"
|
6390 |
+
|
6391 |
+
#: addons/buy-creds/gateways/zombaio.php:327
|
6392 |
+
msgid "Pricing ID"
|
6393 |
+
msgstr "ID de Precios"
|
6394 |
+
|
6395 |
+
#: addons/buy-creds/gateways/zombaio.php:333
|
6396 |
+
#: addons/buy-creds/gateways/skrill.php:338
|
6397 |
+
msgid "Logo URL"
|
6398 |
+
msgstr "URL del Logotipo"
|
6399 |
+
|
6400 |
+
#: addons/buy-creds/gateways/zombaio.php:339
|
6401 |
+
msgid "IP Verification"
|
6402 |
+
msgstr "Verificación de IP"
|
6403 |
+
|
6404 |
+
#: addons/buy-creds/gateways/zombaio.php:342
|
6405 |
+
msgid "Do not verify that callbacks are coming from Zombaio."
|
6406 |
+
msgstr "No verifique que las devoluciónes de llamadas proceden de Zombaio."
|
6407 |
+
|
6408 |
+
#: addons/buy-creds/gateways/zombaio.php:345
|
6409 |
+
msgid "Language"
|
6410 |
+
msgstr "Lengua"
|
6411 |
+
|
6412 |
+
#: addons/buy-creds/gateways/zombaio.php:352
|
6413 |
+
msgid "Postback URL (ZScript)"
|
6414 |
+
msgstr "Devolución de la URL (ZScript)"
|
6415 |
+
|
6416 |
+
#: addons/buy-creds/gateways/zombaio.php:356
|
6417 |
+
msgid ""
|
6418 |
+
"For this gateway to work, login to ZOA and set the Postback URL to the above "
|
6419 |
+
"address and click validate."
|
6420 |
+
msgstr ""
|
6421 |
+
"Para que esta puerta de enlace funcione, ingrese en ZOA y ajuste la "
|
6422 |
+
"devolución de datos de la URL a la dirección que se encuentra arriba y haga "
|
6423 |
+
"clic sobre validar."
|
6424 |
+
|
6425 |
+
#: addons/buy-creds/gateways/paypal-standard.php:192
|
6426 |
+
#: addons/buy-creds/gateways/skrill.php:171
|
6427 |
+
msgid "Success"
|
6428 |
+
msgstr "Exito"
|
6429 |
+
|
6430 |
+
#: addons/buy-creds/gateways/paypal-standard.php:193
|
6431 |
+
#: addons/buy-creds/gateways/skrill.php:172
|
6432 |
+
msgid "Thank you for your purchase"
|
6433 |
+
msgstr "Gracias por su compra"
|
6434 |
+
|
6435 |
+
#: addons/buy-creds/gateways/paypal-standard.php:285
|
6436 |
+
msgid "Account Email"
|
6437 |
+
msgstr "Cuenta de Correo Electrónico"
|
6438 |
+
|
6439 |
+
#: addons/buy-creds/gateways/skrill.php:226
|
6440 |
+
msgid "Return to "
|
6441 |
+
msgstr "Volver a"
|
6442 |
+
|
6443 |
+
#: addons/buy-creds/gateways/skrill.php:258
|
6444 |
+
msgid "Product:"
|
6445 |
+
msgstr "Producto:"
|
6446 |
+
|
6447 |
+
#: addons/buy-creds/gateways/skrill.php:267
|
6448 |
+
msgid "Gift to:"
|
6449 |
+
msgstr "Regalar a:"
|
6450 |
+
|
6451 |
+
#: addons/buy-creds/gateways/skrill.php:268
|
6452 |
+
msgid "(author)"
|
6453 |
+
msgstr "(autor)"
|
6454 |
+
|
6455 |
+
#: addons/buy-creds/gateways/skrill.php:301
|
6456 |
+
msgid "Merchant Account Email"
|
6457 |
+
msgstr "Correo electrónico de la Cuenta Comerciante"
|
6458 |
+
|
6459 |
+
#: addons/buy-creds/gateways/skrill.php:307
|
6460 |
+
msgid "Secret Word"
|
6461 |
+
msgstr "Palabra Secreta"
|
6462 |
+
|
6463 |
+
#: addons/buy-creds/gateways/skrill.php:324
|
6464 |
+
msgid "Confirmation Email"
|
6465 |
+
msgstr "Correo electrónico de confirmación"
|
6466 |
+
|
6467 |
+
#: addons/buy-creds/gateways/skrill.php:327
|
6468 |
+
msgid ""
|
6469 |
+
"Ask Skrill to send me a confirmation email for each successful purchase."
|
6470 |
+
msgstr ""
|
6471 |
+
"Pide a Skrill que me mande un email de confirmación para cada compra "
|
6472 |
+
"finalizada con éxito."
|
6473 |
+
|
6474 |
+
#: addons/buy-creds/gateways/skrill.php:330
|
6475 |
+
msgid "Checkout Page"
|
6476 |
+
msgstr "Página de Pago"
|
6477 |
+
|
6478 |
+
#: addons/buy-creds/gateways/skrill.php:335
|
6479 |
+
msgid ""
|
6480 |
+
"If left empty, your account email is used as title on the Skill Payment Page."
|
6481 |
+
msgstr ""
|
6482 |
+
"Si se deja vacío, el correo electrónico de su cuenta sera utilizada como "
|
6483 |
+
"título en la Página de Pagos Skrill. "
|
6484 |
+
|
6485 |
+
#: addons/buy-creds/gateways/skrill.php:340
|
6486 |
+
msgid ""
|
6487 |
+
"The URL to the image you want to use on the top of the gateway. For best "
|
6488 |
+
"integration results we recommend you use logos with dimensions up to 200px "
|
6489 |
+
"in width and 50px in height."
|
6490 |
+
msgstr ""
|
6491 |
+
"La URL de la imagen que quieres usar en la encima de la pasarela de pago. "
|
6492 |
+
"Para obtener la mejor integración recomendamos que uses logotipos con "
|
6493 |
+
"dimensiones de hasta 200 píxeles de ancho y 50 px de altura."
|
6494 |
+
|
6495 |
+
#: addons/buy-creds/gateways/skrill.php:343
|
6496 |
+
msgid "Confirmation Note"
|
6497 |
+
msgstr "Nota de Confirmación"
|
6498 |
+
|
6499 |
+
#: addons/buy-creds/gateways/skrill.php:345
|
6500 |
+
msgid ""
|
6501 |
+
"Optional text to show user once a transaction has been successfully "
|
6502 |
+
"completed. This text is shown by Skrill."
|
6503 |
+
msgstr ""
|
6504 |
+
"Texto opcional a mostrar al usuario cuando la transacción haya sido "
|
6505 |
+
"completado con éxito. Este texto sera mostrado por Skrill."
|
6506 |
+
|
6507 |
+
#. URI of the plugin
|
6508 |
+
msgid "http://mycred.me"
|
6509 |
+
msgstr "http://mycred.me"
|
6510 |
+
|
6511 |
+
#. Author of the plugin
|
6512 |
+
msgid "Gabriel S Merovingi"
|
6513 |
+
msgstr "Gabriel S Merovingi"
|
6514 |
+
|
6515 |
+
#. Author URI of the plugin
|
6516 |
+
msgid "http://www.merovingi.com"
|
6517 |
+
msgstr "http://www.merovingi.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/mycred-es_VE.mo
CHANGED
Binary file
|
lang/mycred-es_VE.po
CHANGED
@@ -1,7209 +1,6496 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: myCRED\n"
|
4 |
-
"Report-Msgid-Bugs-To: http://mycred.me\n"
|
5 |
-
"POT-Creation-Date: 2014-03-20 14:26+0100\n"
|
6 |
-
"PO-Revision-Date: Fri Aug 12 2016 19:23:09 GMT+0200 (CEST)\n"
|
7 |
-
"Last-Translator: mycreddemo <gabriel.s@merovingi.com>\n"
|
8 |
-
"Language-Team: myCRED & All the awesome users helping out <support@mycred."
|
9 |
-
"me>\n"
|
10 |
-
"Language: Spanish (Venezuela)\n"
|
11 |
-
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
12 |
-
"MIME-Version: 1.0\n"
|
13 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
-
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Loco - https://localise.biz/\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
-
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
-
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
-
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
-
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
-
"X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
|
24 |
-
"content/plugins/mycred\n"
|
25 |
-
"X-Poedit-SearchPath-1: .\n"
|
26 |
-
"X-Loco-Target-Locale: es_VE"
|
27 |
-
|
28 |
-
#: ../abstracts/mycred-abstract-hook.php:284
|
29 |
-
msgid "/ Day"
|
30 |
-
msgstr ""
|
31 |
-
|
32 |
-
#: ../abstracts/mycred-abstract-hook.php:285
|
33 |
-
msgid "/ Week"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: ../abstracts/mycred-abstract-hook.php:286
|
37 |
-
msgid "/ Month"
|
38 |
-
msgstr ""
|
39 |
-
|
40 |
-
#: ../abstracts/mycred-abstract-hook.php:287
|
41 |
-
msgid "in Total"
|
42 |
-
msgstr ""
|
43 |
-
|
44 |
-
#: ../modules/mycred-module-management.php:182
|
45 |
-
msgid "Balance successfully updated"
|
46 |
-
msgstr ""
|
47 |
-
|
48 |
-
#: ../modules/mycred-module-management.php:187
|
49 |
-
msgid "Request declined"
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: ../modules/mycred-module-management.php:222
|
53 |
-
msgid "No recent activity found."
|
54 |
-
msgstr ""
|
55 |
-
|
56 |
-
#: ../modules/mycred-module-management.php:235 ../modules/mycred-module-
|
57 |
-
#: management.php:651 ../modules/mycred-module-log.php:93 ../modules/mycred-
|
58 |
-
#: module-log.php:918 ../includes/classes/class.query-export.php:263 ..
|
59 |
-
#: includes/classes/class.query-export.php:360 ../includes/classes/class.query-
|
60 |
-
#: log.php:379 ../addons/transfer/includes/mycred-transfer-widgets.php:101
|
61 |
-
msgid "Reference"
|
62 |
-
msgstr ""
|
63 |
-
|
64 |
-
#: ../modules/mycred-module-management.php:278
|
65 |
-
msgid "View complete history"
|
66 |
-
msgstr ""
|
67 |
-
|
68 |
-
#: ../modules/mycred-module-management.php:623 ../modules/mycred-module-export.
|
69 |
-
#: php:400 ../modules/mycred-module-export.php:448 ../addons/buy-
|
70 |
-
#: creds/modules/buycred-module-core.php:1271
|
71 |
-
msgid "Username"
|
72 |
-
msgstr ""
|
73 |
-
|
74 |
-
#: ../modules/mycred-module-management.php:635
|
75 |
-
msgid "Total Balance"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: ../modules/mycred-module-management.php:661
|
79 |
-
msgid "Log under a custom reference"
|
80 |
-
msgstr ""
|
81 |
-
|
82 |
-
#: ../modules/mycred-module-management.php:667
|
83 |
-
msgid "lowercase without empty spaces"
|
84 |
-
msgstr ""
|
85 |
-
|
86 |
-
#: ../modules/mycred-module-management.php:680
|
87 |
-
msgid "Update"
|
88 |
-
msgstr ""
|
89 |
-
|
90 |
-
#: ../modules/mycred-module-management.php:683
|
91 |
-
msgid "Recent Activity"
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
-
#: ../modules/mycred-module-settings.php:240
|
95 |
-
msgid "Invalid decimal value."
|
96 |
-
msgstr ""
|
97 |
-
|
98 |
-
#: ../modules/mycred-module-settings.php:290
|
99 |
-
msgid "Log Updated"
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: ../modules/mycred-module-settings.php:433
|
103 |
-
msgid ""
|
104 |
-
"In order to adjust the number of decimal places you want to use we must "
|
105 |
-
"update your log. It is highly recommended that you backup your current log "
|
106 |
-
"before continuing!"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: ../modules/mycred-module-settings.php:458
|
110 |
-
msgid "Update Database"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: ../modules/mycred-module-settings.php:469 ../modules/mycred-module-settings.
|
114 |
-
#: php:481
|
115 |
-
msgid "No decimals"
|
116 |
-
msgstr ""
|
117 |
-
|
118 |
-
#: ../modules/mycred-module-settings.php:493
|
119 |
-
#, php-format
|
120 |
-
msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
|
121 |
-
msgstr ""
|
122 |
-
|
123 |
-
#: ../modules/mycred-module-settings.php:529 ../modules/mycred-module-addons.php:
|
124 |
-
#: 369
|
125 |
-
msgid "Documentation"
|
126 |
-
msgstr ""
|
127 |
-
|
128 |
-
#: ../modules/mycred-module-settings.php:547 ../includes/mycred-setup.php:279
|
129 |
-
msgid "Singular"
|
130 |
-
msgstr ""
|
131 |
-
|
132 |
-
#: ../modules/mycred-module-settings.php:548 ../modules/mycred-module-settings.
|
133 |
-
#: php:554 ../modules/mycred-module-settings.php:604 ../modules/mycred-module-
|
134 |
-
#: settings.php:611 ../modules/mycred-module-settings.php:798 ../modules/mycred-
|
135 |
-
#: module-settings.php:804 ../includes/mycred-setup.php:280 ../includes/mycred-
|
136 |
-
#: setup.php:286 ../includes/mycred-setup.php:333 ../includes/mycred-setup.php:
|
137 |
-
#: 340 ../addons/banking/services/mycred-service-central.php:111 ..
|
138 |
-
#: addons/banking/services/mycred-service-interest.php:482 ..
|
139 |
-
#: addons/banking/services/mycred-service-interest.php:500
|
140 |
-
msgid "Required"
|
141 |
-
msgstr ""
|
142 |
-
|
143 |
-
#: ../modules/mycred-module-settings.php:553 ../includes/mycred-setup.php:285
|
144 |
-
msgid "Plural"
|
145 |
-
msgstr ""
|
146 |
-
|
147 |
-
#: ../modules/mycred-module-settings.php:558 ../includes/mycred-setup.php:290
|
148 |
-
msgid ""
|
149 |
-
"These labels are used throughout the admin area and when presenting points "
|
150 |
-
"to your users."
|
151 |
-
msgstr ""
|
152 |
-
|
153 |
-
#: ../modules/mycred-module-settings.php:590
|
154 |
-
msgid "Set decimals to zero if you prefer to use whole numbers."
|
155 |
-
msgstr ""
|
156 |
-
|
157 |
-
#: ../modules/mycred-module-settings.php:592
|
158 |
-
msgid ""
|
159 |
-
"As this is your main point type, the value you select here will be the "
|
160 |
-
"largest number of decimals your installation will support."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: ../modules/mycred-module-settings.php:603 ../includes/mycred-setup.php:332
|
164 |
-
msgid "Point Editors"
|
165 |
-
msgstr ""
|
166 |
-
|
167 |
-
#: ../modules/mycred-module-settings.php:605 ../includes/mycred-setup.php:334
|
168 |
-
msgid "The capability of users who can edit balances."
|
169 |
-
msgstr ""
|
170 |
-
|
171 |
-
#: ../modules/mycred-module-settings.php:610 ../includes/mycred-setup.php:339
|
172 |
-
msgid "Point Administrators"
|
173 |
-
msgstr ""
|
174 |
-
|
175 |
-
#: ../modules/mycred-module-settings.php:612 ../includes/mycred-setup.php:341
|
176 |
-
msgid "The capability of users who can edit settings."
|
177 |
-
msgstr ""
|
178 |
-
|
179 |
-
#: ../modules/mycred-module-settings.php:618 ../includes/mycred-setup.php:346
|
180 |
-
msgid "Max. Amount"
|
181 |
-
msgstr ""
|
182 |
-
|
183 |
-
#: ../modules/mycred-module-settings.php:620 ../includes/mycred-setup.php:348
|
184 |
-
msgid "The maximum amount allowed to be paid out in a single instance."
|
185 |
-
msgstr ""
|
186 |
-
|
187 |
-
#: ../modules/mycred-module-settings.php:625 ../includes/mycred-setup.php:353
|
188 |
-
msgid "Exclude by User ID"
|
189 |
-
msgstr ""
|
190 |
-
|
191 |
-
#: ../modules/mycred-module-settings.php:626 ../includes/mycred-setup.php:354
|
192 |
-
msgid "Optional"
|
193 |
-
msgstr ""
|
194 |
-
|
195 |
-
#: ../modules/mycred-module-settings.php:627 ../includes/mycred-setup.php:355
|
196 |
-
msgid "Comma separated list of user IDs to exclude from using this point type."
|
197 |
-
msgstr ""
|
198 |
-
|
199 |
-
#: ../modules/mycred-module-settings.php:631 ../includes/mycred-setup.php:359
|
200 |
-
msgid "Exclude point editors"
|
201 |
-
msgstr ""
|
202 |
-
|
203 |
-
#: ../modules/mycred-module-settings.php:634 ../includes/mycred-setup.php:362
|
204 |
-
msgid "Exclude point administrators"
|
205 |
-
msgstr ""
|
206 |
-
|
207 |
-
#: ../modules/mycred-module-settings.php:644
|
208 |
-
msgid "Other Settings"
|
209 |
-
msgstr ""
|
210 |
-
|
211 |
-
#: ../modules/mycred-module-settings.php:696
|
212 |
-
msgid "Balance Meta Key"
|
213 |
-
msgstr ""
|
214 |
-
|
215 |
-
#: ../modules/mycred-module-settings.php:809
|
216 |
-
msgid ""
|
217 |
-
"The meta key must be lowercase and only contain letters or underscores. All "
|
218 |
-
"other characters will be deleted!"
|
219 |
-
msgstr ""
|
220 |
-
|
221 |
-
#: ../modules/mycred-module-addons.php:173
|
222 |
-
msgid "Give your users badges based on their interaction with your website."
|
223 |
-
msgstr ""
|
224 |
-
|
225 |
-
#: ../modules/mycred-module-addons.php:273
|
226 |
-
msgid ""
|
227 |
-
"Gives you access to your myCRED Staticstics based on your users gains and "
|
228 |
-
"loses."
|
229 |
-
msgstr ""
|
230 |
-
|
231 |
-
#: ../modules/mycred-module-addons.php:328
|
232 |
-
msgid "Get More Add-ons"
|
233 |
-
msgstr ""
|
234 |
-
|
235 |
-
#: ../modules/mycred-module-addons.php:343
|
236 |
-
msgid "Add-ons Reloaded"
|
237 |
-
msgstr ""
|
238 |
-
|
239 |
-
#: ../modules/mycred-module-log.php:215
|
240 |
-
msgid "Invalid or empty reference"
|
241 |
-
msgstr ""
|
242 |
-
|
243 |
-
#: ../modules/mycred-module-log.php:220
|
244 |
-
msgid "Log Entry cannot be empty"
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: ../modules/mycred-module-log.php:241
|
248 |
-
msgid "Could not save the new log entry"
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
#: ../modules/mycred-module-log.php:262
|
252 |
-
msgid "Log entry successfully updated"
|
253 |
-
msgstr ""
|
254 |
-
|
255 |
-
#: ../modules/mycred-module-log.php:307
|
256 |
-
#, php-format
|
257 |
-
msgid "1 Entry Deleted"
|
258 |
-
msgid_plural "%d Entries Deleted"
|
259 |
-
msgstr[0] ""
|
260 |
-
msgstr[1] ""
|
261 |
-
|
262 |
-
#: ../modules/mycred-module-log.php:469
|
263 |
-
msgid "The log entry was successfully updated."
|
264 |
-
msgstr ""
|
265 |
-
|
266 |
-
#: ../modules/mycred-module-log.php:470
|
267 |
-
msgid "The selected log entry could not be deleted."
|
268 |
-
msgstr ""
|
269 |
-
|
270 |
-
#: ../modules/mycred-module-log.php:507
|
271 |
-
#, php-format
|
272 |
-
msgctxt "e.g. Log entries from April 12th 2016"
|
273 |
-
msgid "Log entries from %s"
|
274 |
-
msgstr ""
|
275 |
-
|
276 |
-
#: ../modules/mycred-module-log.php:565
|
277 |
-
msgid ""
|
278 |
-
"Warning. The required Mcrypt PHP Library is not installed on this server! "
|
279 |
-
"Certain hooks and shortcodes will not work correctly!"
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
#: ../modules/mycred-module-log.php:925
|
283 |
-
msgid "Original Entry"
|
284 |
-
msgstr ""
|
285 |
-
|
286 |
-
#: ../modules/mycred-module-log.php:937
|
287 |
-
msgid "Delete Entry"
|
288 |
-
msgstr ""
|
289 |
-
|
290 |
-
#: ../modules/mycred-module-log.php:942
|
291 |
-
msgid "Update Entry"
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#: ../modules/mycred-module-network.php:141
|
295 |
-
msgid "I am sorry but your network is too big to use these features."
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#: ../modules/mycred-module-export.php:358
|
299 |
-
msgid "Make both format options available."
|
300 |
-
msgstr ""
|
301 |
-
|
302 |
-
#: ../modules/mycred-module-export.php:360
|
303 |
-
msgid "Exports"
|
304 |
-
msgstr ""
|
305 |
-
|
306 |
-
#: ../modules/mycred-module-export.php:366
|
307 |
-
msgid "Front End Exports"
|
308 |
-
msgstr ""
|
309 |
-
|
310 |
-
#: ../modules/mycred-module-export.php:382 ../modules/mycred-module-export.php:430
|
311 |
-
msgid "Export Format"
|
312 |
-
msgstr ""
|
313 |
-
|
314 |
-
#: ../modules/mycred-module-export.php:398 ../modules/mycred-module-export.php:446
|
315 |
-
msgid "File Name"
|
316 |
-
msgstr ""
|
317 |
-
|
318 |
-
#: ../modules/mycred-module-export.php:407
|
319 |
-
msgid ""
|
320 |
-
"If enabled, users will only be able to export their own log entries! Export "
|
321 |
-
"tools becomes available wherever you are using the mycred_history shortcode "
|
322 |
-
"or in the users profile."
|
323 |
-
msgstr ""
|
324 |
-
|
325 |
-
#: ../modules/mycred-module-export.php:414
|
326 |
-
msgid "Back End Exports"
|
327 |
-
msgstr ""
|
328 |
-
|
329 |
-
#: ../modules/mycred-module-export.php:455
|
330 |
-
msgid ""
|
331 |
-
"Raw format should be used when you intend to use the export tool to backup "
|
332 |
-
"or import entries in another installation. Formatted exports reflect what "
|
333 |
-
"users see in their history archive."
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: ../modules/mycred-module-hooks.php:83
|
337 |
-
#, php-format
|
338 |
-
msgid "%plural% for daily visits"
|
339 |
-
msgstr ""
|
340 |
-
|
341 |
-
#: ../modules/mycred-module-hooks.php:84
|
342 |
-
#, php-format
|
343 |
-
msgid "Award %_plural% for visiting your website on a daily basis."
|
344 |
-
msgstr ""
|
345 |
-
|
346 |
-
#: ../modules/mycred-module-hooks.php:90
|
347 |
-
#, php-format
|
348 |
-
msgid "%plural% for viewing content"
|
349 |
-
msgstr ""
|
350 |
-
|
351 |
-
#: ../modules/mycred-module-hooks.php:91
|
352 |
-
#, php-format
|
353 |
-
msgid "Award %_plural% for viewing content."
|
354 |
-
msgstr ""
|
355 |
-
|
356 |
-
#: ../modules/mycred-module-hooks.php:98
|
357 |
-
#, php-format
|
358 |
-
msgid "Award %_plural% for logging in."
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: ../modules/mycred-module-hooks.php:105
|
362 |
-
#, php-format
|
363 |
-
msgid "Award %_plural% for publishing content."
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
#: ../modules/mycred-module-hooks.php:111
|
367 |
-
#, php-format
|
368 |
-
msgid "%plural% for trashed content"
|
369 |
-
msgstr ""
|
370 |
-
|
371 |
-
#: ../modules/mycred-module-hooks.php:112
|
372 |
-
msgid "Award or Deduct %_plural% when content gets trashed."
|
373 |
-
msgstr ""
|
374 |
-
|
375 |
-
#: ../modules/mycred-module-hooks.php:126
|
376 |
-
#, php-format
|
377 |
-
msgid "Award %_plural% for clicks on links generated by the %shortcode% shortcode."
|
378 |
-
msgstr ""
|
379 |
-
|
380 |
-
#: ../modules/mycred-module-hooks.php:133
|
381 |
-
#, php-format
|
382 |
-
msgid "Award %_plural% for watches videos embedded using the %shortcode% shortcode."
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: ../modules/mycred-module-hooks.php:140
|
386 |
-
#, php-format
|
387 |
-
msgid "Award %_plural% for signup or visitor referrals."
|
388 |
-
msgstr ""
|
389 |
-
|
390 |
-
#: ../modules/mycred-module-hooks.php:264
|
391 |
-
#, php-format
|
392 |
-
msgid "%s Hooks %s"
|
393 |
-
msgstr ""
|
394 |
-
|
395 |
-
#: ../modules/mycred-module-hooks.php:270
|
396 |
-
msgid "Available Hooks"
|
397 |
-
msgstr ""
|
398 |
-
|
399 |
-
#: ../modules/mycred-module-hooks.php:270
|
400 |
-
msgctxt "removing-widget"
|
401 |
-
msgid "Deactivate"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: ../modules/mycred-module-hooks.php:274
|
405 |
-
msgid ""
|
406 |
-
"To activate a hook drag it to a sidebar or click on it. To deactivate a hook "
|
407 |
-
"and delete its settings, drag it back."
|
408 |
-
msgstr ""
|
409 |
-
|
410 |
-
#: ../modules/mycred-module-hooks.php:345
|
411 |
-
msgid "Add Hook"
|
412 |
-
msgstr ""
|
413 |
-
|
414 |
-
#: ../modules/mycred-module-hooks.php:384
|
415 |
-
msgid "Active Hooks"
|
416 |
-
msgstr ""
|
417 |
-
|
418 |
-
#: ../modules/mycred-module-hooks.php:387
|
419 |
-
msgid "The following hooks are used for all users."
|
420 |
-
msgstr ""
|
421 |
-
|
422 |
-
#: ../modules/mycred-module-hooks.php:474
|
423 |
-
#, php-format
|
424 |
-
msgid "The following hooks are used for %s."
|
425 |
-
msgstr ""
|
426 |
-
|
427 |
-
#: ../modules/mycred-module-hooks.php:1011
|
428 |
-
#, php-format
|
429 |
-
msgid "%plural% for viewing Posts"
|
430 |
-
msgstr ""
|
431 |
-
|
432 |
-
#: ../modules/mycred-module-hooks.php:1014 ../modules/mycred-module-hooks.php:
|
433 |
-
#: 1031 ../modules/mycred-module-hooks.php:1045 ../modules/mycred-module-hooks.
|
434 |
-
#: php:1062 ../modules/mycred-module-hooks.php:1122 ../modules/mycred-module-
|
435 |
-
#: hooks.php:1139
|
436 |
-
msgid "Member"
|
437 |
-
msgstr ""
|
438 |
-
|
439 |
-
#: ../modules/mycred-module-hooks.php:1042
|
440 |
-
#, php-format
|
441 |
-
msgid "%plural% for viewing Pages"
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: ../modules/mycred-module-hooks.php:1119
|
445 |
-
#, php-format
|
446 |
-
msgid "%plural% for viewing %s"
|
447 |
-
msgstr ""
|
448 |
-
|
449 |
-
#: ../modules/mycred-module-hooks.php:3293
|
450 |
-
msgid "Visitors Referred"
|
451 |
-
msgstr ""
|
452 |
-
|
453 |
-
#: ../modules/mycred-module-hooks.php:3297
|
454 |
-
msgid "Signups Referred"
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
-
#: ../modules/mycred-module-buddypress.php:415 ../addons/badges/myCRED-addon-
|
458 |
-
#: badges.php:1147
|
459 |
-
msgid "Include in Profile Header"
|
460 |
-
msgstr ""
|
461 |
-
|
462 |
-
#: ../modules/mycred-module-buddypress.php:417 ../addons/badges/myCRED-addon-
|
463 |
-
#: badges.php:1149
|
464 |
-
msgid "Include under the \"Profile\" tab and Profile Header"
|
465 |
-
msgstr ""
|
466 |
-
|
467 |
-
#: ../modules/mycred-module-buddypress.php:456
|
468 |
-
#, php-format
|
469 |
-
msgid "Members and visitors can view other members %_singular% balance."
|
470 |
-
msgstr ""
|
471 |
-
|
472 |
-
#: ../plugins/mycred-hook-wp-postratings.php:15
|
473 |
-
msgid "Post Ratings"
|
474 |
-
msgstr ""
|
475 |
-
|
476 |
-
#: ../plugins/mycred-hook-wp-postratings.php:16
|
477 |
-
#, php-format
|
478 |
-
msgid ""
|
479 |
-
"Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
|
480 |
-
"author and the user rating."
|
481 |
-
msgstr ""
|
482 |
-
|
483 |
-
#: ../plugins/mycred-hook-wp-postratings.php:84
|
484 |
-
msgid "Based on rating"
|
485 |
-
msgstr ""
|
486 |
-
|
487 |
-
#: ../plugins/mycred-hook-wp-postratings.php:159 ../includes/classes/class.query-
|
488 |
-
#: log.php:1629
|
489 |
-
msgid "Adding a Rating"
|
490 |
-
msgstr ""
|
491 |
-
|
492 |
-
#: ../plugins/mycred-hook-wp-postratings.php:169 ../plugins/mycred-hook-wp-
|
493 |
-
#: postratings.php:188
|
494 |
-
msgid "Use the Rating Value instead of the amount set here."
|
495 |
-
msgstr ""
|
496 |
-
|
497 |
-
#: ../plugins/mycred-hook-wp-postratings.php:178 ../includes/classes/class.query-
|
498 |
-
#: log.php:1630
|
499 |
-
msgid "Receiving a Rating"
|
500 |
-
msgstr ""
|
501 |
-
|
502 |
-
#: ../plugins/mycred-hook-marketpress.php:70 ../plugins/mycred-hook-woocommerce.
|
503 |
-
#: php:87
|
504 |
-
#, php-format
|
505 |
-
msgid "Reward with %plural%"
|
506 |
-
msgstr ""
|
507 |
-
|
508 |
-
#: ../plugins/mycred-hook-buddypress.php:610
|
509 |
-
msgid "New Profile Activity"
|
510 |
-
msgstr ""
|
511 |
-
|
512 |
-
#: ../plugins/mycred-hook-buddypress.php:627
|
513 |
-
msgid "Deleted Profile Activity"
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#: ../plugins/mycred-hook-buddypress.php:644
|
517 |
-
msgid "New Profile Avatar"
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#: ../plugins/mycred-hook-buddypress.php:661
|
521 |
-
msgid "New Profile Cover Image"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: ../plugins/mycred-hook-buddypress.php:678 ../includes/classes/class.query-log.
|
525 |
-
#: php:1565
|
526 |
-
msgid "New Friendship"
|
527 |
-
msgstr ""
|
528 |
-
|
529 |
-
#: ../plugins/mycred-hook-buddypress.php:688
|
530 |
-
#, php-format
|
531 |
-
msgid ""
|
532 |
-
"Users with zero balance can not add friends. Requires that you deduct "
|
533 |
-
"%_plural% for adding a new friend."
|
534 |
-
msgstr ""
|
535 |
-
|
536 |
-
#: ../plugins/mycred-hook-buddypress.php:698
|
537 |
-
msgid "Ending Friendship"
|
538 |
-
msgstr ""
|
539 |
-
|
540 |
-
#: ../plugins/mycred-hook-buddypress.php:711
|
541 |
-
msgid "New Comment"
|
542 |
-
msgstr ""
|
543 |
-
|
544 |
-
#: ../plugins/mycred-hook-buddypress.php:728 ../includes/classes/class.query-log.
|
545 |
-
#: php:1553
|
546 |
-
msgid "Deleted Comment"
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
#: ../plugins/mycred-hook-buddypress.php:741
|
550 |
-
msgid "Favorit Activity"
|
551 |
-
msgstr ""
|
552 |
-
|
553 |
-
#: ../plugins/mycred-hook-buddypress.php:758
|
554 |
-
msgid "Removing Favorit Activity"
|
555 |
-
msgstr ""
|
556 |
-
|
557 |
-
#: ../plugins/mycred-hook-buddypress.php:771
|
558 |
-
msgid "New Private Message"
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: ../plugins/mycred-hook-buddypress.php:788 ../includes/classes/class.query-log.
|
562 |
-
#: php:1572
|
563 |
-
msgid "Sending Gift"
|
564 |
-
msgstr ""
|
565 |
-
|
566 |
-
#: ../plugins/mycred-hook-buddypress.php:1564
|
567 |
-
#, php-format
|
568 |
-
msgid "%plural% for New Cover Image"
|
569 |
-
msgstr ""
|
570 |
-
|
571 |
-
#: ../plugins/mycred-hook-affiliatewp.php:15
|
572 |
-
msgid "AffiliateWP"
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: ../plugins/mycred-hook-affiliatewp.php:16
|
576 |
-
#, php-format
|
577 |
-
msgid ""
|
578 |
-
"Awards %_plural% for affiliate signups, referring visitors and store sale "
|
579 |
-
"referrals."
|
580 |
-
msgstr ""
|
581 |
-
|
582 |
-
#: ../plugins/mycred-hook-affiliatewp.php:222
|
583 |
-
msgid "Affiliate Signup"
|
584 |
-
msgstr ""
|
585 |
-
|
586 |
-
#: ../plugins/mycred-hook-affiliatewp.php:252
|
587 |
-
msgid "Referring Sales"
|
588 |
-
msgstr ""
|
589 |
-
|
590 |
-
#: ../plugins/mycred-hook-affiliatewp.php:255
|
591 |
-
msgid "Pay a set amount for all referrals."
|
592 |
-
msgstr ""
|
593 |
-
|
594 |
-
#: ../plugins/mycred-hook-affiliatewp.php:256
|
595 |
-
#, php-format
|
596 |
-
msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: ../plugins/mycred-hook-affiliatewp.php:257
|
600 |
-
msgid "Apply an exchange rate against the referral amount."
|
601 |
-
msgstr ""
|
602 |
-
|
603 |
-
#: ../plugins/mycred-hook-affiliatewp.php:265
|
604 |
-
msgid "Log template - Payout"
|
605 |
-
msgstr ""
|
606 |
-
|
607 |
-
#: ../plugins/mycred-hook-affiliatewp.php:270
|
608 |
-
msgid "Log template - Refund"
|
609 |
-
msgstr ""
|
610 |
-
|
611 |
-
#: ../plugins/mycred-hook-sharethis.php:15
|
612 |
-
#, php-format
|
613 |
-
msgid "%plural% for Sharing"
|
614 |
-
msgstr ""
|
615 |
-
|
616 |
-
#: ../plugins/mycred-hook-sharethis.php:16
|
617 |
-
#, php-format
|
618 |
-
msgid ""
|
619 |
-
"Awards %_plural% for users sharing / liking your website content to popular "
|
620 |
-
"social media sites."
|
621 |
-
msgstr ""
|
622 |
-
|
623 |
-
#: ../plugins/mycred-hook-sharethis.php:257
|
624 |
-
msgid "Your ShareThis public key is not set."
|
625 |
-
msgstr ""
|
626 |
-
|
627 |
-
#: ../plugins/mycred-hook-sharethis.php:262
|
628 |
-
msgid "No ShareThis services detected. Please check your installation."
|
629 |
-
msgstr ""
|
630 |
-
|
631 |
-
#: ../plugins/mycred-hook-wp-favorite-posts.php:234
|
632 |
-
msgid "Authors Content added to favorites"
|
633 |
-
msgstr ""
|
634 |
-
|
635 |
-
#: ../plugins/mycred-hook-wp-favorite-posts.php:265
|
636 |
-
msgid "Removing Content from Favorites (Author)"
|
637 |
-
msgstr ""
|
638 |
-
|
639 |
-
#: ../plugins/mycred-hook-bbPress.php:540
|
640 |
-
#, php-format
|
641 |
-
msgid "Show users %_plural% balance in their bbPress profiles."
|
642 |
-
msgstr ""
|
643 |
-
|
644 |
-
#: ../plugins/mycred-hook-bbPress.php:544
|
645 |
-
#, php-format
|
646 |
-
msgid "%plural% for Reply Deletion"
|
647 |
-
msgstr ""
|
648 |
-
|
649 |
-
#: ../plugins/mycred-hook-woocommerce.php:216
|
650 |
-
msgid "WooCommerce Product Reviews"
|
651 |
-
msgstr ""
|
652 |
-
|
653 |
-
#: ../plugins/mycred-hook-woocommerce.php:217
|
654 |
-
#, php-format
|
655 |
-
msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
|
656 |
-
msgstr ""
|
657 |
-
|
658 |
-
#: ../includes/mycred-setup.php:106
|
659 |
-
#, php-format
|
660 |
-
msgid ""
|
661 |
-
"Before you can begin using %s, you must setup your first point type. This "
|
662 |
-
"includes what you want to call your points, how these points are presented "
|
663 |
-
"and who has access to it."
|
664 |
-
msgstr ""
|
665 |
-
|
666 |
-
#: ../includes/mycred-setup.php:111
|
667 |
-
msgid "Your First Point Type"
|
668 |
-
msgstr ""
|
669 |
-
|
670 |
-
#: ../includes/mycred-setup.php:127
|
671 |
-
msgid "Advanced Settings"
|
672 |
-
msgstr ""
|
673 |
-
|
674 |
-
#: ../includes/mycred-setup.php:133
|
675 |
-
msgid "Change Default Point Type Key"
|
676 |
-
msgstr ""
|
677 |
-
|
678 |
-
#: ../includes/mycred-setup.php:135
|
679 |
-
msgid ""
|
680 |
-
"You can change the meta key used to store the default point type using the "
|
681 |
-
"MYCRED_DEFAULT_TYPE_KEY constant. Copy the above code to your wp-config.php "
|
682 |
-
"file to use."
|
683 |
-
msgstr ""
|
684 |
-
|
685 |
-
#: ../includes/mycred-setup.php:136
|
686 |
-
msgid ""
|
687 |
-
"If you intend to change the default meta key, you should do so before "
|
688 |
-
"continuing on in this setup!"
|
689 |
-
msgstr ""
|
690 |
-
|
691 |
-
#: ../includes/mycred-setup.php:139
|
692 |
-
msgid "Whitelabel"
|
693 |
-
msgstr ""
|
694 |
-
|
695 |
-
#: ../includes/mycred-setup.php:141
|
696 |
-
msgid ""
|
697 |
-
"You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
|
698 |
-
"above code to your wp-config.php file to use."
|
699 |
-
msgstr ""
|
700 |
-
|
701 |
-
#: ../includes/mycred-setup.php:149
|
702 |
-
msgid "Create Point Type"
|
703 |
-
msgstr ""
|
704 |
-
|
705 |
-
#: ../includes/mycred-setup.php:149
|
706 |
-
msgid "Hide"
|
707 |
-
msgstr ""
|
708 |
-
|
709 |
-
#: ../includes/mycred-setup.php:149 ../includes/mycred-setup.php:149
|
710 |
-
msgid "Advanced"
|
711 |
-
msgstr ""
|
712 |
-
|
713 |
-
#: ../includes/mycred-setup.php:155
|
714 |
-
msgid "Processing ..."
|
715 |
-
msgstr ""
|
716 |
-
|
717 |
-
#: ../includes/mycred-setup.php:160
|
718 |
-
msgid "Setup Complete!"
|
719 |
-
msgstr ""
|
720 |
-
|
721 |
-
#: ../includes/mycred-setup.php:161
|
722 |
-
msgid "Congratulations! You are now ready to use myCRED. What's next?"
|
723 |
-
msgstr ""
|
724 |
-
|
725 |
-
#: ../includes/mycred-setup.php:166
|
726 |
-
msgid "Enabling Hooks"
|
727 |
-
msgstr ""
|
728 |
-
|
729 |
-
#: ../includes/mycred-setup.php:167
|
730 |
-
msgid ""
|
731 |
-
"If you intend to give your users points for interacting with your website "
|
732 |
-
"automatically, your next step should be to enable and setup the hooks you "
|
733 |
-
"want to use."
|
734 |
-
msgstr ""
|
735 |
-
|
736 |
-
#: ../includes/mycred-setup.php:168
|
737 |
-
msgid "Setup Hooks"
|
738 |
-
msgstr ""
|
739 |
-
|
740 |
-
#: ../includes/mycred-setup.php:172
|
741 |
-
msgid ""
|
742 |
-
"If you want to use advanced features such as Transfers, Point Purchases etc. "
|
743 |
-
"your next step should be to enable and setup your add-ons."
|
744 |
-
msgstr ""
|
745 |
-
|
746 |
-
#: ../includes/mycred-setup.php:173
|
747 |
-
msgid "Setup Add-ons"
|
748 |
-
msgstr ""
|
749 |
-
|
750 |
-
#: ../includes/mycred-setup.php:176
|
751 |
-
msgid "Adjust Settings"
|
752 |
-
msgstr ""
|
753 |
-
|
754 |
-
#: ../includes/mycred-setup.php:177
|
755 |
-
msgid ""
|
756 |
-
"If you need to make further changes to your settings or add new point types, "
|
757 |
-
"you can visit your default point type's settings."
|
758 |
-
msgstr ""
|
759 |
-
|
760 |
-
#: ../includes/mycred-setup.php:178
|
761 |
-
msgid "View Settings"
|
762 |
-
msgstr ""
|
763 |
-
|
764 |
-
#: ../includes/mycred-setup.php:322
|
765 |
-
msgid "Set to decimals to zero if you prefer to use whole numbers."
|
766 |
-
msgstr ""
|
767 |
-
|
768 |
-
#: ../includes/mycred-setup.php:442
|
769 |
-
msgid "Please make sure you fill out all required fields!"
|
770 |
-
msgstr ""
|
771 |
-
|
772 |
-
#: ../includes/shortcodes/mycred_exchange.php:27 ..
|
773 |
-
#: includes/shortcodes/mycred_hook_table.php:24 ..
|
774 |
-
#: includes/shortcodes/mycred_give.php:29
|
775 |
-
msgid "Point type not found."
|
776 |
-
msgstr ""
|
777 |
-
|
778 |
-
#: ../includes/shortcodes/mycred_exchange.php:33 ..
|
779 |
-
#: includes/shortcodes/mycred_exchange.php:41 ..
|
780 |
-
#: includes/shortcodes/mycred_exchange.php:136 ..
|
781 |
-
#: includes/shortcodes/mycred_exchange.php:156
|
782 |
-
#, php-format
|
783 |
-
msgid "You are excluded from using %s."
|
784 |
-
msgstr ""
|
785 |
-
|
786 |
-
#: ../includes/shortcodes/mycred_exchange.php:37 ..
|
787 |
-
#: includes/shortcodes/mycred_exchange.php:146
|
788 |
-
msgid "Your balance is too low to use this feature."
|
789 |
-
msgstr ""
|
790 |
-
|
791 |
-
#: ../includes/shortcodes/mycred_exchange.php:63
|
792 |
-
#, php-format
|
793 |
-
msgid "Your current %s balance"
|
794 |
-
msgstr ""
|
795 |
-
|
796 |
-
#: ../includes/shortcodes/mycred_exchange.php:70
|
797 |
-
#, php-format
|
798 |
-
msgid "Minimum %s"
|
799 |
-
msgstr ""
|
800 |
-
|
801 |
-
#: ../includes/shortcodes/mycred_exchange.php:76
|
802 |
-
#, php-format
|
803 |
-
msgid "1 %s = <span class=\"rate\">%s</span> %s"
|
804 |
-
msgstr ""
|
805 |
-
|
806 |
-
#: ../includes/shortcodes/mycred_exchange.php:124
|
807 |
-
msgid "Point types not found."
|
808 |
-
msgstr ""
|
809 |
-
|
810 |
-
#: ../includes/shortcodes/mycred_exchange.php:169
|
811 |
-
#, php-format
|
812 |
-
msgid "You must exchange at least %s!"
|
813 |
-
msgstr ""
|
814 |
-
|
815 |
-
#: ../includes/shortcodes/mycred_exchange.php:178 ../addons/transfer/myCRED-addon-
|
816 |
-
#: transfer.php:154
|
817 |
-
msgid "Insufficient Funds. Please try a lower amount."
|
818 |
-
msgstr ""
|
819 |
-
|
820 |
-
#: ../includes/shortcodes/mycred_exchange.php:191
|
821 |
-
#, php-format
|
822 |
-
msgid "Exchange from %s"
|
823 |
-
msgstr ""
|
824 |
-
|
825 |
-
#: ../includes/shortcodes/mycred_exchange.php:203
|
826 |
-
#, php-format
|
827 |
-
msgid "Exchange to %s"
|
828 |
-
msgstr ""
|
829 |
-
|
830 |
-
#: ../includes/shortcodes/mycred_exchange.php:211
|
831 |
-
#, php-format
|
832 |
-
msgid "You have successfully exchanged %s into %s."
|
833 |
-
msgstr ""
|
834 |
-
|
835 |
-
#: ../includes/shortcodes/mycred_hook_table.php:21
|
836 |
-
msgid "No instances found for this point type"
|
837 |
-
msgstr ""
|
838 |
-
|
839 |
-
#: ../includes/shortcodes/mycred_hook_table.php:79
|
840 |
-
msgid "Instance"
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
#: ../includes/mycred-remote.php:619
|
844 |
-
msgid "16, 24 or 32 characters"
|
845 |
-
msgstr ""
|
846 |
-
|
847 |
-
#: ../includes/classes/class.query-export.php:263
|
848 |
-
msgid "Reference ID"
|
849 |
-
msgstr ""
|
850 |
-
|
851 |
-
#: ../includes/classes/class.query-export.php:263
|
852 |
-
msgid "Data"
|
853 |
-
msgstr ""
|
854 |
-
|
855 |
-
#: ../includes/classes/class.query-export.php:464
|
856 |
-
msgid "Export log entries raw"
|
857 |
-
msgstr ""
|
858 |
-
|
859 |
-
#: ../includes/classes/class.query-export.php:465
|
860 |
-
msgid "Export log entries formatted"
|
861 |
-
msgstr ""
|
862 |
-
|
863 |
-
#: ../includes/classes/class.query-export.php:482
|
864 |
-
msgid "All Log Entries"
|
865 |
-
msgstr ""
|
866 |
-
|
867 |
-
#: ../includes/classes/class.query-export.php:492
|
868 |
-
msgid "Users Log Entries"
|
869 |
-
msgstr ""
|
870 |
-
|
871 |
-
#: ../includes/classes/class.query-export.php:493
|
872 |
-
msgid "Export History"
|
873 |
-
msgstr ""
|
874 |
-
|
875 |
-
#: ../includes/classes/class.query-log.php:489
|
876 |
-
msgid "Bulk Actions"
|
877 |
-
msgstr ""
|
878 |
-
|
879 |
-
#: ../includes/classes/class.query-log.php:490
|
880 |
-
msgid "Export Raw"
|
881 |
-
msgstr ""
|
882 |
-
|
883 |
-
#: ../includes/classes/class.query-log.php:491
|
884 |
-
msgid "Export Formatted"
|
885 |
-
msgstr ""
|
886 |
-
|
887 |
-
#: ../includes/classes/class.query-log.php:507
|
888 |
-
msgid "Apply"
|
889 |
-
msgstr ""
|
890 |
-
|
891 |
-
#: ../includes/classes/class.query-log.php:544
|
892 |
-
msgid "User ID, Username, Email or Nicename"
|
893 |
-
msgstr ""
|
894 |
-
|
895 |
-
#: ../includes/classes/class.query-log.php:610
|
896 |
-
msgid "Log entries navigation"
|
897 |
-
msgstr ""
|
898 |
-
|
899 |
-
#: ../includes/classes/class.query-log.php:735
|
900 |
-
#, php-format
|
901 |
-
msgid "1 entry"
|
902 |
-
msgid_plural "%d entries"
|
903 |
-
msgstr[0] ""
|
904 |
-
msgstr[1] ""
|
905 |
-
|
906 |
-
#: ../includes/classes/class.query-log.php:765
|
907 |
-
msgid "First page"
|
908 |
-
msgstr ""
|
909 |
-
|
910 |
-
#: ../includes/classes/class.query-log.php:775
|
911 |
-
msgid "Previous page"
|
912 |
-
msgstr ""
|
913 |
-
|
914 |
-
#: ../includes/classes/class.query-log.php:782 ../includes/classes/class.query-
|
915 |
-
#: log.php:785
|
916 |
-
msgid "Current Page"
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: ../includes/classes/class.query-log.php:791
|
920 |
-
#, php-format
|
921 |
-
msgctxt "paging"
|
922 |
-
msgid "%1$s of %2$s"
|
923 |
-
msgstr ""
|
924 |
-
|
925 |
-
#: ../includes/classes/class.query-log.php:798
|
926 |
-
msgid "Next page"
|
927 |
-
msgstr ""
|
928 |
-
|
929 |
-
#: ../includes/classes/class.query-log.php:808
|
930 |
-
msgid "Last page"
|
931 |
-
msgstr ""
|
932 |
-
|
933 |
-
#: ../includes/classes/class.query-log.php:868 ../includes/classes/class.query-
|
934 |
-
#: log.php:889
|
935 |
-
msgid "Select all"
|
936 |
-
msgstr ""
|
937 |
-
|
938 |
-
#: ../includes/classes/class.query-log.php:972
|
939 |
-
msgid "Select entry"
|
940 |
-
msgstr ""
|
941 |
-
|
942 |
-
#: ../includes/classes/class.query-log.php:993
|
943 |
-
msgid "Show more details"
|
944 |
-
msgstr ""
|
945 |
-
|
946 |
-
#: ../includes/classes/class.query-log.php:1017
|
947 |
-
msgid "Filter by Date"
|
948 |
-
msgstr ""
|
949 |
-
|
950 |
-
#: ../includes/classes/class.query-log.php:1066
|
951 |
-
msgid "Filter by User"
|
952 |
-
msgstr ""
|
953 |
-
|
954 |
-
#: ../includes/classes/class.query-log.php:1068
|
955 |
-
msgid "Filter by ID"
|
956 |
-
msgstr ""
|
957 |
-
|
958 |
-
#: ../includes/classes/class.query-log.php:1544
|
959 |
-
msgid "Website Registration"
|
960 |
-
msgstr ""
|
961 |
-
|
962 |
-
#: ../includes/classes/class.query-log.php:1545
|
963 |
-
msgid "Website Visit"
|
964 |
-
msgstr ""
|
965 |
-
|
966 |
-
#: ../includes/classes/class.query-log.php:1546
|
967 |
-
msgid "Viewing Content (Member)"
|
968 |
-
msgstr ""
|
969 |
-
|
970 |
-
#: ../includes/classes/class.query-log.php:1547
|
971 |
-
msgid "Viewing Content (Author)"
|
972 |
-
msgstr ""
|
973 |
-
|
974 |
-
#: ../includes/classes/class.query-log.php:1548
|
975 |
-
msgid "Logging in"
|
976 |
-
msgstr ""
|
977 |
-
|
978 |
-
#: ../includes/classes/class.query-log.php:1549
|
979 |
-
msgid "Publishing Content"
|
980 |
-
msgstr ""
|
981 |
-
|
982 |
-
#: ../includes/classes/class.query-log.php:1551
|
983 |
-
msgid "Unapproved Comment"
|
984 |
-
msgstr ""
|
985 |
-
|
986 |
-
#: ../includes/classes/class.query-log.php:1552
|
987 |
-
msgid "SPAM Comment"
|
988 |
-
msgstr ""
|
989 |
-
|
990 |
-
#: ../includes/classes/class.query-log.php:1554
|
991 |
-
msgid "Link Click"
|
992 |
-
msgstr ""
|
993 |
-
|
994 |
-
#: ../includes/classes/class.query-log.php:1555
|
995 |
-
msgid "Watching Video"
|
996 |
-
msgstr ""
|
997 |
-
|
998 |
-
#: ../includes/classes/class.query-log.php:1556
|
999 |
-
msgid "Visitor Referral"
|
1000 |
-
msgstr ""
|
1001 |
-
|
1002 |
-
#: ../includes/classes/class.query-log.php:1557
|
1003 |
-
msgid "Signup Referral"
|
1004 |
-
msgstr ""
|
1005 |
-
|
1006 |
-
#: ../includes/classes/class.query-log.php:1561
|
1007 |
-
msgid "New Profile Update"
|
1008 |
-
msgstr ""
|
1009 |
-
|
1010 |
-
#: ../includes/classes/class.query-log.php:1562
|
1011 |
-
msgid "Profile Update Removal"
|
1012 |
-
msgstr ""
|
1013 |
-
|
1014 |
-
#: ../includes/classes/class.query-log.php:1563
|
1015 |
-
msgid "Avatar Upload"
|
1016 |
-
msgstr ""
|
1017 |
-
|
1018 |
-
#: ../includes/classes/class.query-log.php:1564
|
1019 |
-
msgid "Profile Cover Upload"
|
1020 |
-
msgstr ""
|
1021 |
-
|
1022 |
-
#: ../includes/classes/class.query-log.php:1566
|
1023 |
-
msgid "Ended Friendship"
|
1024 |
-
msgstr ""
|
1025 |
-
|
1026 |
-
#: ../includes/classes/class.query-log.php:1567
|
1027 |
-
msgid "New Profile Comment"
|
1028 |
-
msgstr ""
|
1029 |
-
|
1030 |
-
#: ../includes/classes/class.query-log.php:1568
|
1031 |
-
msgid "Profile Comment Deletion"
|
1032 |
-
msgstr ""
|
1033 |
-
|
1034 |
-
#: ../includes/classes/class.query-log.php:1569
|
1035 |
-
msgid "Add Activity to Favorites"
|
1036 |
-
msgstr ""
|
1037 |
-
|
1038 |
-
#: ../includes/classes/class.query-log.php:1570
|
1039 |
-
msgid "Remove Activity from Favorites"
|
1040 |
-
msgstr ""
|
1041 |
-
|
1042 |
-
#: ../includes/classes/class.query-log.php:1571
|
1043 |
-
msgid "New Message"
|
1044 |
-
msgstr ""
|
1045 |
-
|
1046 |
-
#: ../includes/classes/class.query-log.php:1573
|
1047 |
-
msgid "New Group"
|
1048 |
-
msgstr ""
|
1049 |
-
|
1050 |
-
#: ../includes/classes/class.query-log.php:1574
|
1051 |
-
msgid "Deleted Group"
|
1052 |
-
msgstr ""
|
1053 |
-
|
1054 |
-
#: ../includes/classes/class.query-log.php:1575
|
1055 |
-
msgid "New Group Forum Topic"
|
1056 |
-
msgstr ""
|
1057 |
-
|
1058 |
-
#: ../includes/classes/class.query-log.php:1576
|
1059 |
-
msgid "Edit Group Forum Topic"
|
1060 |
-
msgstr ""
|
1061 |
-
|
1062 |
-
#: ../includes/classes/class.query-log.php:1577
|
1063 |
-
msgid "New Group Forum Post"
|
1064 |
-
msgstr ""
|
1065 |
-
|
1066 |
-
#: ../includes/classes/class.query-log.php:1578
|
1067 |
-
msgid "Edit Group Forum Post"
|
1068 |
-
msgstr ""
|
1069 |
-
|
1070 |
-
#: ../includes/classes/class.query-log.php:1579
|
1071 |
-
msgid "Joining Group"
|
1072 |
-
msgstr ""
|
1073 |
-
|
1074 |
-
#: ../includes/classes/class.query-log.php:1580
|
1075 |
-
msgid "Leaving Group"
|
1076 |
-
msgstr ""
|
1077 |
-
|
1078 |
-
#: ../includes/classes/class.query-log.php:1581
|
1079 |
-
msgid "New Group Avatar"
|
1080 |
-
msgstr ""
|
1081 |
-
|
1082 |
-
#: ../includes/classes/class.query-log.php:1582
|
1083 |
-
msgid "New Group Cover"
|
1084 |
-
msgstr ""
|
1085 |
-
|
1086 |
-
#: ../includes/classes/class.query-log.php:1583
|
1087 |
-
msgid "New Group Comment"
|
1088 |
-
msgstr ""
|
1089 |
-
|
1090 |
-
#: ../includes/classes/class.query-log.php:1593
|
1091 |
-
msgid "New Link"
|
1092 |
-
msgstr ""
|
1093 |
-
|
1094 |
-
#: ../includes/classes/class.query-log.php:1594
|
1095 |
-
msgid "Link Voting"
|
1096 |
-
msgstr ""
|
1097 |
-
|
1098 |
-
#: ../includes/classes/class.query-log.php:1595
|
1099 |
-
msgid "Link Update"
|
1100 |
-
msgstr ""
|
1101 |
-
|
1102 |
-
#: ../includes/classes/class.query-log.php:1599
|
1103 |
-
msgid "New Forum (bbPress)"
|
1104 |
-
msgstr ""
|
1105 |
-
|
1106 |
-
#: ../includes/classes/class.query-log.php:1600
|
1107 |
-
msgid "New Forum Topic (bbPress)"
|
1108 |
-
msgstr ""
|
1109 |
-
|
1110 |
-
#: ../includes/classes/class.query-log.php:1601
|
1111 |
-
msgid "Favorited Topic (bbPress)"
|
1112 |
-
msgstr ""
|
1113 |
-
|
1114 |
-
#: ../includes/classes/class.query-log.php:1602
|
1115 |
-
msgid "New Topic Reply (bbPress)"
|
1116 |
-
msgstr ""
|
1117 |
-
|
1118 |
-
#: ../includes/classes/class.query-log.php:1606
|
1119 |
-
msgid "Form Submission (Contact Form 7)"
|
1120 |
-
msgstr ""
|
1121 |
-
|
1122 |
-
#: ../includes/classes/class.query-log.php:1609
|
1123 |
-
msgid "Form Submission (Gravity Form)"
|
1124 |
-
msgstr ""
|
1125 |
-
|
1126 |
-
#: ../includes/classes/class.query-log.php:1612
|
1127 |
-
msgid "New Forum Topic (SimplePress)"
|
1128 |
-
msgstr ""
|
1129 |
-
|
1130 |
-
#: ../includes/classes/class.query-log.php:1613
|
1131 |
-
msgid "New Forum Post (SimplePress)"
|
1132 |
-
msgstr ""
|
1133 |
-
|
1134 |
-
#: ../includes/classes/class.query-log.php:1622
|
1135 |
-
msgid "Affiliate Signup (AffiliateWP)"
|
1136 |
-
msgstr ""
|
1137 |
-
|
1138 |
-
#: ../includes/classes/class.query-log.php:1623
|
1139 |
-
msgid "Referred Visit (AffiliateWP)"
|
1140 |
-
msgstr ""
|
1141 |
-
|
1142 |
-
#: ../includes/classes/class.query-log.php:1624
|
1143 |
-
msgid "Affiliate Referral (AffiliateWP)"
|
1144 |
-
msgstr ""
|
1145 |
-
|
1146 |
-
#: ../includes/classes/class.query-log.php:1625
|
1147 |
-
msgid "Referral Refund (AffiliateWP)"
|
1148 |
-
msgstr ""
|
1149 |
-
|
1150 |
-
#: ../includes/classes/class.query-log.php:1634
|
1151 |
-
msgid "Poll Voting"
|
1152 |
-
msgstr ""
|
1153 |
-
|
1154 |
-
#: ../includes/classes/class.query-log.php:1637
|
1155 |
-
msgid "Sending an Invite"
|
1156 |
-
msgstr ""
|
1157 |
-
|
1158 |
-
#: ../includes/classes/class.query-log.php:1638
|
1159 |
-
msgid "Accepting an Invite"
|
1160 |
-
msgstr ""
|
1161 |
-
|
1162 |
-
#: ../includes/classes/class.query-log.php:1645
|
1163 |
-
msgid "Recurring Payout"
|
1164 |
-
msgstr ""
|
1165 |
-
|
1166 |
-
#: ../includes/classes/class.query-log.php:1649
|
1167 |
-
msgid "Badge Reward"
|
1168 |
-
msgstr ""
|
1169 |
-
|
1170 |
-
#: ../includes/classes/class.query-log.php:1652
|
1171 |
-
msgid "buyCRED Purchase (PayPal Standard)"
|
1172 |
-
msgstr ""
|
1173 |
-
|
1174 |
-
#: ../includes/classes/class.query-log.php:1653
|
1175 |
-
msgid "buyCRED Purchase (Skrill)"
|
1176 |
-
msgstr ""
|
1177 |
-
|
1178 |
-
#: ../includes/classes/class.query-log.php:1654
|
1179 |
-
msgid "buyCRED Purchase (Zombaio)"
|
1180 |
-
msgstr ""
|
1181 |
-
|
1182 |
-
#: ../includes/classes/class.query-log.php:1655
|
1183 |
-
msgid "buyCRED Purchase (NETBilling)"
|
1184 |
-
msgstr ""
|
1185 |
-
|
1186 |
-
#: ../includes/classes/class.query-log.php:1656
|
1187 |
-
msgid "buyCRED Purchase (BitPay)"
|
1188 |
-
msgstr ""
|
1189 |
-
|
1190 |
-
#: ../includes/classes/class.query-log.php:1661
|
1191 |
-
msgid "Coupon Purchase"
|
1192 |
-
msgstr ""
|
1193 |
-
|
1194 |
-
#: ../includes/classes/class.query-log.php:1665
|
1195 |
-
msgid "Store Purchase (WooCommerce)"
|
1196 |
-
msgstr ""
|
1197 |
-
|
1198 |
-
#: ../includes/classes/class.query-log.php:1666
|
1199 |
-
msgid "Store Reward (WooCommerce)"
|
1200 |
-
msgstr ""
|
1201 |
-
|
1202 |
-
#: ../includes/classes/class.query-log.php:1667
|
1203 |
-
msgid "Product Review (WooCommerce)"
|
1204 |
-
msgstr ""
|
1205 |
-
|
1206 |
-
#: ../includes/classes/class.query-log.php:1670
|
1207 |
-
msgid "Store Purchase (MarketPress)"
|
1208 |
-
msgstr ""
|
1209 |
-
|
1210 |
-
#: ../includes/classes/class.query-log.php:1671
|
1211 |
-
msgid "Store Reward (MarketPress)"
|
1212 |
-
msgstr ""
|
1213 |
-
|
1214 |
-
#: ../includes/classes/class.query-log.php:1674
|
1215 |
-
msgid "Store Purchase (WP E-Commerce)"
|
1216 |
-
msgstr ""
|
1217 |
-
|
1218 |
-
#: ../includes/classes/class.query-log.php:1680
|
1219 |
-
msgid "Event Payment (Event Espresso)"
|
1220 |
-
msgstr ""
|
1221 |
-
|
1222 |
-
#: ../includes/classes/class.query-log.php:1681
|
1223 |
-
msgid "Event Sale (Event Espresso)"
|
1224 |
-
msgstr ""
|
1225 |
-
|
1226 |
-
#: ../includes/classes/class.query-log.php:1685
|
1227 |
-
msgid "Event Payment (Events Manager)"
|
1228 |
-
msgstr ""
|
1229 |
-
|
1230 |
-
#: ../includes/classes/class.query-log.php:1686
|
1231 |
-
msgid "Event Sale (Events Manager)"
|
1232 |
-
msgstr ""
|
1233 |
-
|
1234 |
-
#: ../includes/classes/class.query-log.php:1690
|
1235 |
-
msgid "Content Purchase"
|
1236 |
-
msgstr ""
|
1237 |
-
|
1238 |
-
#: ../includes/classes/class.query-log.php:1691
|
1239 |
-
msgid "Content Sale"
|
1240 |
-
msgstr ""
|
1241 |
-
|
1242 |
-
#: ../includes/classes/class.query-log.php:1699
|
1243 |
-
msgid "Manual Adjustment by Admin"
|
1244 |
-
msgstr ""
|
1245 |
-
|
1246 |
-
#: ../includes/mycred-rest-api.php:114 ../includes/mycred-rest-api.php:135 ..
|
1247 |
-
#: includes/mycred-rest-api.php:156 ../includes/mycred-rest-api.php:176
|
1248 |
-
msgid "message"
|
1249 |
-
msgstr ""
|
1250 |
-
|
1251 |
-
#: ../includes/mycred-install.php:63
|
1252 |
-
msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#: ../includes/mycred-install.php:68
|
1256 |
-
msgid "myCRED requires PHP 5.3 or higher. Version detected: "
|
1257 |
-
msgstr ""
|
1258 |
-
|
1259 |
-
#: ../includes/mycred-install.php:78
|
1260 |
-
msgid ""
|
1261 |
-
"The mcrypt PHP library must be enabled in order to use this plugin! Please "
|
1262 |
-
"check your PHP configuration or contact your host and ask them to enable it "
|
1263 |
-
"for you!"
|
1264 |
-
msgstr ""
|
1265 |
-
|
1266 |
-
#: ../includes/mycred-widgets.php:392
|
1267 |
-
msgid "Based On"
|
1268 |
-
msgstr ""
|
1269 |
-
|
1270 |
-
#: ../includes/mycred-widgets.php:394
|
1271 |
-
msgid ""
|
1272 |
-
"Use \"balance\" to base the leaderboard on your users current balances or use "
|
1273 |
-
"a specific reference."
|
1274 |
-
msgstr ""
|
1275 |
-
|
1276 |
-
#: ../includes/mycred-widgets.php:394
|
1277 |
-
msgid "Reference Guide"
|
1278 |
-
msgstr ""
|
1279 |
-
|
1280 |
-
#: ../includes/mycred-widgets.php:439
|
1281 |
-
msgid "Timeframe"
|
1282 |
-
msgstr ""
|
1283 |
-
|
1284 |
-
#: ../includes/mycred-widgets.php:441
|
1285 |
-
msgid ""
|
1286 |
-
"Option to limit the leaderboard based on a specific timeframe. Leave empty "
|
1287 |
-
"if not used."
|
1288 |
-
msgstr ""
|
1289 |
-
|
1290 |
-
#: ../includes/mycred-functions.php:2569
|
1291 |
-
msgid "per day"
|
1292 |
-
msgstr ""
|
1293 |
-
|
1294 |
-
#: ../includes/mycred-functions.php:2571
|
1295 |
-
msgid "per week"
|
1296 |
-
msgstr ""
|
1297 |
-
|
1298 |
-
#: ../includes/mycred-functions.php:2573
|
1299 |
-
msgid "per month"
|
1300 |
-
msgstr ""
|
1301 |
-
|
1302 |
-
#: ../includes/mycred-functions.php:2575
|
1303 |
-
msgid "in total"
|
1304 |
-
msgstr ""
|
1305 |
-
|
1306 |
-
#: ../includes/mycred-functions.php:2577 ../includes/mycred-functions.php:2581
|
1307 |
-
#, php-format
|
1308 |
-
msgid "Maximum once"
|
1309 |
-
msgid_plural "Maximum %d times"
|
1310 |
-
msgstr[0] ""
|
1311 |
-
msgstr[1] ""
|
1312 |
-
|
1313 |
-
#: ../includes/mycred-functions.php:2608
|
1314 |
-
#, php-format
|
1315 |
-
msgctxt "ex. 21st."
|
1316 |
-
msgid "%dst"
|
1317 |
-
msgstr ""
|
1318 |
-
|
1319 |
-
#: ../includes/mycred-functions.php:2615
|
1320 |
-
#, php-format
|
1321 |
-
msgctxt "ex. 32nd."
|
1322 |
-
msgid "%dnd"
|
1323 |
-
msgstr ""
|
1324 |
-
|
1325 |
-
#: ../includes/mycred-functions.php:2622
|
1326 |
-
#, php-format
|
1327 |
-
msgctxt "ex. 43rd."
|
1328 |
-
msgid "%drd"
|
1329 |
-
msgstr ""
|
1330 |
-
|
1331 |
-
#: ../includes/mycred-functions.php:2633
|
1332 |
-
#, php-format
|
1333 |
-
msgctxt "ex. 50th"
|
1334 |
-
msgid "%dth"
|
1335 |
-
msgstr ""
|
1336 |
-
|
1337 |
-
#. Description of the plugin
|
1338 |
-
msgid "An adaptive points management system for WordPress powered websites."
|
1339 |
-
msgstr ""
|
1340 |
-
|
1341 |
-
#: ../addons/banking/myCRED-addon-banking.php:141
|
1342 |
-
msgid "Central Banking"
|
1343 |
-
msgstr ""
|
1344 |
-
|
1345 |
-
#: ../addons/banking/myCRED-addon-banking.php:142
|
1346 |
-
#, php-format
|
1347 |
-
msgid ""
|
1348 |
-
"Instead of creating %_plural% out of thin-air, all payouts are made from a "
|
1349 |
-
"nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
|
1350 |
-
"deposited back into this account. If the central bank runs out of %_plural%, "
|
1351 |
-
"no %_plural% will be paid out."
|
1352 |
-
msgstr ""
|
1353 |
-
|
1354 |
-
#: ../addons/banking/myCRED-addon-banking.php:151
|
1355 |
-
msgid ""
|
1356 |
-
"Offer your users interest on the %_plural% they earn on your website. The "
|
1357 |
-
"interest is compounded daily."
|
1358 |
-
msgstr ""
|
1359 |
-
|
1360 |
-
#: ../addons/banking/myCRED-addon-banking.php:160
|
1361 |
-
#, php-format
|
1362 |
-
msgid "Setup mass %_singular% payouts for your users."
|
1363 |
-
msgstr ""
|
1364 |
-
|
1365 |
-
#: ../addons/banking/myCRED-addon-banking.php:202
|
1366 |
-
msgid "New Recurring Payout"
|
1367 |
-
msgstr ""
|
1368 |
-
|
1369 |
-
#: ../addons/banking/myCRED-addon-banking.php:203
|
1370 |
-
msgid "Edit Recurring Payout"
|
1371 |
-
msgstr ""
|
1372 |
-
|
1373 |
-
#: ../addons/banking/myCRED-addon-banking.php:205
|
1374 |
-
msgid "Please fill out all required fields that are highlighted in red."
|
1375 |
-
msgstr ""
|
1376 |
-
|
1377 |
-
#: ../addons/banking/myCRED-addon-banking.php:206
|
1378 |
-
msgid "Are you sure you want to remove this schedule? This can not be undone!"
|
1379 |
-
msgstr ""
|
1380 |
-
|
1381 |
-
#: ../addons/banking/myCRED-addon-banking.php:271
|
1382 |
-
msgid "Warning"
|
1383 |
-
msgstr ""
|
1384 |
-
|
1385 |
-
#: ../addons/banking/myCRED-addon-banking.php:271
|
1386 |
-
msgid ""
|
1387 |
-
"This banking service uses the WordPress CRON to schedule events. If the "
|
1388 |
-
"WordPress CRON is disabled, this service will not work correctly."
|
1389 |
-
msgstr ""
|
1390 |
-
|
1391 |
-
#: ../addons/banking/services/mycred-service-central.php:110
|
1392 |
-
msgid "Central Bank Account"
|
1393 |
-
msgstr ""
|
1394 |
-
|
1395 |
-
#: ../addons/banking/services/mycred-service-central.php:113
|
1396 |
-
msgid "The ID of the user representing the central bank."
|
1397 |
-
msgstr ""
|
1398 |
-
|
1399 |
-
#: ../addons/banking/services/mycred-service-central.php:117
|
1400 |
-
msgid "Ignore Manual Adjustments"
|
1401 |
-
msgstr ""
|
1402 |
-
|
1403 |
-
#: ../addons/banking/services/mycred-service-interest.php:429
|
1404 |
-
msgid "Daily Compound Schedule"
|
1405 |
-
msgstr ""
|
1406 |
-
|
1407 |
-
#: ../addons/banking/services/mycred-service-interest.php:432 ..
|
1408 |
-
#: addons/banking/services/mycred-service-interest.php:457 ..
|
1409 |
-
#: addons/banking/services/mycred-service-payouts.php:726
|
1410 |
-
msgid "Year"
|
1411 |
-
msgstr ""
|
1412 |
-
|
1413 |
-
#: ../addons/banking/services/mycred-service-interest.php:433 ..
|
1414 |
-
#: addons/banking/services/mycred-service-interest.php:458 ..
|
1415 |
-
#: addons/banking/services/mycred-service-payouts.php:732 ..
|
1416 |
-
#: addons/banking/includes/mycred-banking-functions.php:95
|
1417 |
-
msgid "Month"
|
1418 |
-
msgstr ""
|
1419 |
-
|
1420 |
-
#: ../addons/banking/services/mycred-service-interest.php:434 ..
|
1421 |
-
#: addons/banking/services/mycred-service-interest.php:459 ..
|
1422 |
-
#: addons/banking/includes/mycred-banking-functions.php:85
|
1423 |
-
msgid "Day"
|
1424 |
-
msgstr ""
|
1425 |
-
|
1426 |
-
#: ../addons/banking/services/mycred-service-interest.php:454
|
1427 |
-
msgid "Payout Schedule"
|
1428 |
-
msgstr ""
|
1429 |
-
|
1430 |
-
#: ../addons/banking/services/mycred-service-interest.php:493
|
1431 |
-
msgid "Payout Frequency"
|
1432 |
-
msgstr ""
|
1433 |
-
|
1434 |
-
#: ../addons/banking/services/mycred-service-interest.php:506
|
1435 |
-
msgid "Payout Log Table"
|
1436 |
-
msgstr ""
|
1437 |
-
|
1438 |
-
#: ../addons/banking/services/mycred-service-interest.php:519
|
1439 |
-
msgid ""
|
1440 |
-
"Changing the payout period once the service is enabled, will only take "
|
1441 |
-
"effect once the currently scheduled payout runs. To change this, you will "
|
1442 |
-
"also need to adjust the payout schedule above."
|
1443 |
-
msgstr ""
|
1444 |
-
|
1445 |
-
#: ../addons/banking/services/mycred-service-interest.php:524
|
1446 |
-
msgid "Exclude by ID"
|
1447 |
-
msgstr ""
|
1448 |
-
|
1449 |
-
#: ../addons/banking/services/mycred-service-interest.php:528 ..
|
1450 |
-
#: addons/banking/services/mycred-service-interest.php:529 ..
|
1451 |
-
#: addons/banking/services/mycred-service-payouts.php:789
|
1452 |
-
msgid "Comma separated list of user IDs"
|
1453 |
-
msgstr ""
|
1454 |
-
|
1455 |
-
#: ../addons/banking/services/mycred-service-interest.php:535
|
1456 |
-
msgid "Exclude by Role"
|
1457 |
-
msgstr ""
|
1458 |
-
|
1459 |
-
#: ../addons/banking/services/mycred-service-interest.php:539
|
1460 |
-
msgid "Roles to exclude"
|
1461 |
-
msgstr ""
|
1462 |
-
|
1463 |
-
#: ../addons/banking/services/mycred-service-interest.php:655
|
1464 |
-
msgid "Leave empty to pay the default rate."
|
1465 |
-
msgstr ""
|
1466 |
-
|
1467 |
-
#: ../addons/banking/services/mycred-service-payouts.php:30
|
1468 |
-
msgid "Waiting to Start"
|
1469 |
-
msgstr ""
|
1470 |
-
|
1471 |
-
#: ../addons/banking/services/mycred-service-payouts.php:32
|
1472 |
-
msgid "Running"
|
1473 |
-
msgstr ""
|
1474 |
-
|
1475 |
-
#: ../addons/banking/services/mycred-service-payouts.php:33
|
1476 |
-
msgid "Finished"
|
1477 |
-
msgstr ""
|
1478 |
-
|
1479 |
-
#: ../addons/banking/services/mycred-service-payouts.php:34
|
1480 |
-
msgid "Stopped"
|
1481 |
-
msgstr ""
|
1482 |
-
|
1483 |
-
#: ../addons/banking/services/mycred-service-payouts.php:444
|
1484 |
-
msgid "Not yet started"
|
1485 |
-
msgstr ""
|
1486 |
-
|
1487 |
-
#: ../addons/banking/services/mycred-service-payouts.php:455
|
1488 |
-
msgid "Currently Running"
|
1489 |
-
msgstr ""
|
1490 |
-
|
1491 |
-
#: ../addons/banking/services/mycred-service-payouts.php:470
|
1492 |
-
msgid "View Schedule"
|
1493 |
-
msgstr ""
|
1494 |
-
|
1495 |
-
#: ../addons/banking/services/mycred-service-payouts.php:470 ..
|
1496 |
-
#: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151 ..
|
1497 |
-
#: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
|
1498 |
-
msgid "View"
|
1499 |
-
msgstr ""
|
1500 |
-
|
1501 |
-
#: ../addons/banking/services/mycred-service-payouts.php:470
|
1502 |
-
msgid "Delete Schedule"
|
1503 |
-
msgstr ""
|
1504 |
-
|
1505 |
-
#: ../addons/banking/services/mycred-service-payouts.php:521 ..
|
1506 |
-
#: addons/banking/services/mycred-service-payouts.php:764
|
1507 |
-
msgid "Min. Balance"
|
1508 |
-
msgstr ""
|
1509 |
-
|
1510 |
-
#: ../addons/banking/services/mycred-service-payouts.php:524 ..
|
1511 |
-
#: addons/banking/services/mycred-service-payouts.php:771
|
1512 |
-
msgid "Max. Balance"
|
1513 |
-
msgstr ""
|
1514 |
-
|
1515 |
-
#: ../addons/banking/services/mycred-service-payouts.php:529
|
1516 |
-
msgid "Exclude Users"
|
1517 |
-
msgstr ""
|
1518 |
-
|
1519 |
-
#: ../addons/banking/services/mycred-service-payouts.php:531
|
1520 |
-
msgid "Include Users"
|
1521 |
-
msgstr ""
|
1522 |
-
|
1523 |
-
#: ../addons/banking/services/mycred-service-payouts.php:538
|
1524 |
-
msgid "Exclude Roles"
|
1525 |
-
msgstr ""
|
1526 |
-
|
1527 |
-
#: ../addons/banking/services/mycred-service-payouts.php:540
|
1528 |
-
msgid "Include Roles"
|
1529 |
-
msgstr ""
|
1530 |
-
|
1531 |
-
#: ../addons/banking/services/mycred-service-payouts.php:557 ..
|
1532 |
-
#: addons/banking/services/mycred-service-payouts.php:877
|
1533 |
-
msgid "Job Title"
|
1534 |
-
msgstr ""
|
1535 |
-
|
1536 |
-
#: ../addons/banking/services/mycred-service-payouts.php:571
|
1537 |
-
msgid "Start Date"
|
1538 |
-
msgstr ""
|
1539 |
-
|
1540 |
-
#: ../addons/banking/services/mycred-service-payouts.php:571
|
1541 |
-
msgid "Last Run"
|
1542 |
-
msgstr ""
|
1543 |
-
|
1544 |
-
#: ../addons/banking/services/mycred-service-payouts.php:577
|
1545 |
-
msgid "Eligible"
|
1546 |
-
msgstr ""
|
1547 |
-
|
1548 |
-
#: ../addons/banking/services/mycred-service-payouts.php:578
|
1549 |
-
#, php-format
|
1550 |
-
msgid "1 User"
|
1551 |
-
msgid_plural "%d Users"
|
1552 |
-
msgstr[0] ""
|
1553 |
-
msgstr[1] ""
|
1554 |
-
|
1555 |
-
#: ../addons/banking/services/mycred-service-payouts.php:583
|
1556 |
-
msgid "Runs"
|
1557 |
-
msgstr ""
|
1558 |
-
|
1559 |
-
#: ../addons/banking/services/mycred-service-payouts.php:584
|
1560 |
-
msgid "Infinite"
|
1561 |
-
msgstr ""
|
1562 |
-
|
1563 |
-
#: ../addons/banking/services/mycred-service-payouts.php:607
|
1564 |
-
msgid "Will payout even if the central bank account has run out of funds."
|
1565 |
-
msgstr ""
|
1566 |
-
|
1567 |
-
#: ../addons/banking/services/mycred-service-payouts.php:612
|
1568 |
-
msgid "Paid Out"
|
1569 |
-
msgstr ""
|
1570 |
-
|
1571 |
-
#: ../addons/banking/services/mycred-service-payouts.php:613
|
1572 |
-
msgid "Completed"
|
1573 |
-
msgstr ""
|
1574 |
-
|
1575 |
-
#: ../addons/banking/services/mycred-service-payouts.php:614
|
1576 |
-
msgid "Misses"
|
1577 |
-
msgstr ""
|
1578 |
-
|
1579 |
-
#: ../addons/banking/services/mycred-service-payouts.php:615
|
1580 |
-
msgid "Runs Left"
|
1581 |
-
msgstr ""
|
1582 |
-
|
1583 |
-
#: ../addons/banking/services/mycred-service-payouts.php:635
|
1584 |
-
msgid ""
|
1585 |
-
"A miss is when a payout was declined by the plugin. This can be due to "
|
1586 |
-
"custom code declining the payout or if the user is excluded."
|
1587 |
-
msgstr ""
|
1588 |
-
|
1589 |
-
#: ../addons/banking/services/mycred-service-payouts.php:680
|
1590 |
-
msgid "Schedule Title"
|
1591 |
-
msgstr ""
|
1592 |
-
|
1593 |
-
#: ../addons/banking/services/mycred-service-payouts.php:692 ..
|
1594 |
-
#: addons/banking/services/mycred-service-payouts.php:879
|
1595 |
-
msgid "Frequency"
|
1596 |
-
msgstr ""
|
1597 |
-
|
1598 |
-
#: ../addons/banking/services/mycred-service-payouts.php:713
|
1599 |
-
msgid "Payout even if the central bank account runs out of funds."
|
1600 |
-
msgstr ""
|
1601 |
-
|
1602 |
-
#: ../addons/banking/services/mycred-service-payouts.php:720
|
1603 |
-
msgid "First Payout"
|
1604 |
-
msgstr ""
|
1605 |
-
|
1606 |
-
#: ../addons/banking/services/mycred-service-payouts.php:752
|
1607 |
-
msgid "Repeat"
|
1608 |
-
msgstr ""
|
1609 |
-
|
1610 |
-
#: ../addons/banking/services/mycred-service-payouts.php:754
|
1611 |
-
msgid "Use -1 for infinite runs."
|
1612 |
-
msgstr ""
|
1613 |
-
|
1614 |
-
#: ../addons/banking/services/mycred-service-payouts.php:766 ..
|
1615 |
-
#: addons/banking/services/mycred-service-payouts.php:773 ../addons/sell-
|
1616 |
-
#: content/myCRED-addon-sell-content.php:431 ../addons/sell-content/myCRED-addon-
|
1617 |
-
#: sell-content.php:436
|
1618 |
-
msgid "Use zero to disable."
|
1619 |
-
msgstr ""
|
1620 |
-
|
1621 |
-
#: ../addons/banking/services/mycred-service-payouts.php:782
|
1622 |
-
msgid "Limit by ID"
|
1623 |
-
msgstr ""
|
1624 |
-
|
1625 |
-
#: ../addons/banking/services/mycred-service-payouts.php:796
|
1626 |
-
msgid "Limit by Role(s)"
|
1627 |
-
msgstr ""
|
1628 |
-
|
1629 |
-
#: ../addons/banking/services/mycred-service-payouts.php:823
|
1630 |
-
msgid "Schedule"
|
1631 |
-
msgstr ""
|
1632 |
-
|
1633 |
-
#: ../addons/banking/services/mycred-service-payouts.php:844
|
1634 |
-
msgid "Include:"
|
1635 |
-
msgstr ""
|
1636 |
-
|
1637 |
-
#: ../addons/banking/services/mycred-service-payouts.php:845
|
1638 |
-
msgid "Exclude:"
|
1639 |
-
msgstr ""
|
1640 |
-
|
1641 |
-
#: ../addons/banking/services/mycred-service-payouts.php:870
|
1642 |
-
msgid ""
|
1643 |
-
"As long as this service remains disabled, none of your scheduled payouts "
|
1644 |
-
"will run!"
|
1645 |
-
msgstr ""
|
1646 |
-
|
1647 |
-
#: ../addons/banking/services/mycred-service-payouts.php:873
|
1648 |
-
msgid "Schedules"
|
1649 |
-
msgstr ""
|
1650 |
-
|
1651 |
-
#: ../addons/banking/services/mycred-service-payouts.php:880
|
1652 |
-
msgid "Last Ran"
|
1653 |
-
msgstr ""
|
1654 |
-
|
1655 |
-
#: ../addons/banking/services/mycred-service-payouts.php:881
|
1656 |
-
msgid "Next Run"
|
1657 |
-
msgstr ""
|
1658 |
-
|
1659 |
-
#: ../addons/banking/services/mycred-service-payouts.php:889
|
1660 |
-
msgid "No schedules found."
|
1661 |
-
msgstr ""
|
1662 |
-
|
1663 |
-
#: ../addons/banking/services/mycred-service-payouts.php:953
|
1664 |
-
msgid "Schedule Added"
|
1665 |
-
msgstr ""
|
1666 |
-
|
1667 |
-
#: ../addons/banking/services/mycred-service-payouts.php:960
|
1668 |
-
msgid ""
|
1669 |
-
"While the recurring payout has been successfully saved, based on the limits "
|
1670 |
-
"you set, right now there are no users that are eligible for a payout!"
|
1671 |
-
msgstr ""
|
1672 |
-
|
1673 |
-
#: ../addons/banking/services/mycred-service-payouts.php:972 ..
|
1674 |
-
#: addons/banking/services/mycred-service-payouts.php:986
|
1675 |
-
msgid "Schedule not found. Please refresh this page and try again."
|
1676 |
-
msgstr ""
|
1677 |
-
|
1678 |
-
#: ../addons/banking/services/mycred-service-payouts.php:991
|
1679 |
-
msgid "Schedule Deleted"
|
1680 |
-
msgstr ""
|
1681 |
-
|
1682 |
-
#: ../addons/banking/includes/mycred-banking-functions.php:80
|
1683 |
-
msgid "Hour"
|
1684 |
-
msgstr ""
|
1685 |
-
|
1686 |
-
#: ../addons/banking/includes/mycred-banking-functions.php:90
|
1687 |
-
msgid "Week"
|
1688 |
-
msgstr ""
|
1689 |
-
|
1690 |
-
#: ../addons/banking/includes/mycred-banking-functions.php:100
|
1691 |
-
msgid "Quarter"
|
1692 |
-
msgstr ""
|
1693 |
-
|
1694 |
-
#: ../addons/banking/includes/mycred-banking-functions.php:105
|
1695 |
-
msgid "Semiannual"
|
1696 |
-
msgstr ""
|
1697 |
-
|
1698 |
-
#: ../addons/banking/includes/mycred-banking-functions.php:110
|
1699 |
-
msgid "Annual"
|
1700 |
-
msgstr ""
|
1701 |
-
|
1702 |
-
#: ../addons/banking/includes/mycred-banking-functions.php:283
|
1703 |
-
msgid "A title must be set."
|
1704 |
-
msgstr ""
|
1705 |
-
|
1706 |
-
#: ../addons/banking/includes/mycred-banking-functions.php:290
|
1707 |
-
msgid "The amount to payout can not be zero."
|
1708 |
-
msgstr ""
|
1709 |
-
|
1710 |
-
#: ../addons/banking/includes/mycred-banking-functions.php:296
|
1711 |
-
msgid "Start date can not be in the past."
|
1712 |
-
msgstr ""
|
1713 |
-
|
1714 |
-
#: ../addons/banking/includes/mycred-banking-functions.php:303
|
1715 |
-
msgid "Repeat can not be zero."
|
1716 |
-
msgstr ""
|
1717 |
-
|
1718 |
-
#: ../addons/banking/includes/mycred-banking-functions.php:309
|
1719 |
-
msgid "Duplicate schedule."
|
1720 |
-
msgstr ""
|
1721 |
-
|
1722 |
-
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
|
1723 |
-
#, php-format
|
1724 |
-
msgid "%plural% Cost"
|
1725 |
-
msgstr ""
|
1726 |
-
|
1727 |
-
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
|
1728 |
-
msgid "Your Balance"
|
1729 |
-
msgstr ""
|
1730 |
-
|
1731 |
-
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
|
1732 |
-
msgid "Cart & Checkout Cost"
|
1733 |
-
msgstr ""
|
1734 |
-
|
1735 |
-
#: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
|
1736 |
-
#, php-format
|
1737 |
-
msgid "Label for cost in %plural%"
|
1738 |
-
msgstr ""
|
1739 |
-
|
1740 |
-
#: ../addons/gateway/carts/mycred-woocommerce.php:109 ..
|
1741 |
-
#: addons/gateway/carts/mycred-woocommerce.php:181
|
1742 |
-
msgid "Refund Log Template"
|
1743 |
-
msgstr ""
|
1744 |
-
|
1745 |
-
#: ../addons/gateway/carts/mycred-woocommerce.php:183
|
1746 |
-
msgid "Log entry template for refunds of profit shares."
|
1747 |
-
msgstr ""
|
1748 |
-
|
1749 |
-
#: ../addons/gateway/carts/mycred-woocommerce.php:262 ..
|
1750 |
-
#: addons/gateway/carts/mycred-marketpress.php:402 ../addons/sell-
|
1751 |
-
#: content/includes/mycred-sell-functions.php:501
|
1752 |
-
msgid "Insufficient funds."
|
1753 |
-
msgstr ""
|
1754 |
-
|
1755 |
-
#: ../addons/gateway/carts/mycred-woocommerce.php:364
|
1756 |
-
#, php-format
|
1757 |
-
msgctxt "%s = Point amount formatted"
|
1758 |
-
msgid "Refunded %s"
|
1759 |
-
msgstr ""
|
1760 |
-
|
1761 |
-
#: ../addons/transfer/myCRED-addon-transfer.php:456
|
1762 |
-
msgid "Limit Amount"
|
1763 |
-
msgstr ""
|
1764 |
-
|
1765 |
-
#: ../addons/transfer/myCRED-addon-transfer.php:464
|
1766 |
-
msgid ""
|
1767 |
-
"The template to use when the transfer shortcode or widget is viewed by "
|
1768 |
-
"someone who is not logged in."
|
1769 |
-
msgstr ""
|
1770 |
-
|
1771 |
-
#: ../addons/transfer/myCRED-addon-transfer.php:479
|
1772 |
-
msgid ""
|
1773 |
-
"The template to use if you select to show the transfer limit in the transfer "
|
1774 |
-
"shortcode or widget. Ignored if there is no limit enforced."
|
1775 |
-
msgstr ""
|
1776 |
-
|
1777 |
-
#: ../addons/transfer/myCRED-addon-transfer.php:496
|
1778 |
-
msgid ""
|
1779 |
-
"The template to use if you select to show the users balance in the transfer "
|
1780 |
-
"shortcode or widget. Ignored if balances are not shown."
|
1781 |
-
msgstr ""
|
1782 |
-
|
1783 |
-
#: ../addons/transfer/myCRED-addon-transfer.php:512
|
1784 |
-
msgid "Default Button Label"
|
1785 |
-
msgstr ""
|
1786 |
-
|
1787 |
-
#: ../addons/transfer/myCRED-addon-transfer.php:514
|
1788 |
-
msgid ""
|
1789 |
-
"The default transfer button label. You can override this in the shortcode or "
|
1790 |
-
"widget if needed."
|
1791 |
-
msgstr ""
|
1792 |
-
|
1793 |
-
#: ../addons/transfer/myCRED-addon-transfer.php:517
|
1794 |
-
msgid "Insufficient Funds Warning"
|
1795 |
-
msgstr ""
|
1796 |
-
|
1797 |
-
#: ../addons/transfer/myCRED-addon-transfer.php:521
|
1798 |
-
msgid "Message to show the user if they try to send more then they can afford."
|
1799 |
-
msgstr ""
|
1800 |
-
|
1801 |
-
#: ../addons/transfer/myCRED-addon-transfer.php:524
|
1802 |
-
msgid "Limit Reached Warning"
|
1803 |
-
msgstr ""
|
1804 |
-
|
1805 |
-
#: ../addons/transfer/myCRED-addon-transfer.php:528
|
1806 |
-
msgid ""
|
1807 |
-
"Message to show the user once they reach their transfer limit. Ignored if no "
|
1808 |
-
"limits are enforced."
|
1809 |
-
msgstr ""
|
1810 |
-
|
1811 |
-
#: ../addons/transfer/includes/mycred-transfer-widgets.php:105 ..
|
1812 |
-
#: addons/transfer/includes/mycred-transfer-shortcodes.php:31 ../addons/buy-
|
1813 |
-
#: creds/modules/buycred-module-pending.php:542 ../addons/buy-
|
1814 |
-
#: creds/modules/buycred-module-core.php:1384
|
1815 |
-
msgid "Recipient"
|
1816 |
-
msgstr ""
|
1817 |
-
|
1818 |
-
#: ../addons/transfer/includes/mycred-transfer-widgets.php:113
|
1819 |
-
msgid "Placeholder"
|
1820 |
-
msgstr ""
|
1821 |
-
|
1822 |
-
#: ../addons/transfer/includes/mycred-transfer-widgets.php:117
|
1823 |
-
msgid "Message for Excluded Users"
|
1824 |
-
msgstr ""
|
1825 |
-
|
1826 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:216
|
1827 |
-
#, php-format
|
1828 |
-
msgid "Ranks for %s"
|
1829 |
-
msgstr ""
|
1830 |
-
|
1831 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:230 ../addons/ranks/myCRED-addon-ranks.
|
1832 |
-
#: php:1333
|
1833 |
-
msgid "Rank Logo"
|
1834 |
-
msgstr ""
|
1835 |
-
|
1836 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:231
|
1837 |
-
msgid "Set rank logo"
|
1838 |
-
msgstr ""
|
1839 |
-
|
1840 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:232
|
1841 |
-
msgid "Remove rank logo"
|
1842 |
-
msgstr ""
|
1843 |
-
|
1844 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:233
|
1845 |
-
msgid "Use as Logo"
|
1846 |
-
msgstr ""
|
1847 |
-
|
1848 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:283 ../addons/ranks/myCRED-addon-ranks.
|
1849 |
-
#: php:284 ../addons/ranks/myCRED-addon-ranks.php:285 ../addons/ranks/myCRED-
|
1850 |
-
#: addon-ranks.php:286 ../addons/ranks/myCRED-addon-ranks.php:287 ..
|
1851 |
-
#: addons/ranks/myCRED-addon-ranks.php:290 ../addons/ranks/myCRED-addon-ranks.
|
1852 |
-
#: php:291
|
1853 |
-
msgid "Rank Updated."
|
1854 |
-
msgstr ""
|
1855 |
-
|
1856 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:288
|
1857 |
-
msgid "Rank Enabled."
|
1858 |
-
msgstr ""
|
1859 |
-
|
1860 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:289
|
1861 |
-
msgid "Rank Saved."
|
1862 |
-
msgstr ""
|
1863 |
-
|
1864 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:1158
|
1865 |
-
msgid "Rank Setup"
|
1866 |
-
msgstr ""
|
1867 |
-
|
1868 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:1201
|
1869 |
-
msgid "Minimum Balance Requirement"
|
1870 |
-
msgstr ""
|
1871 |
-
|
1872 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:1207
|
1873 |
-
msgid "Maximum Balance Requirement"
|
1874 |
-
msgstr ""
|
1875 |
-
|
1876 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:1400
|
1877 |
-
msgid ""
|
1878 |
-
"Use this button to calculate or recalculate your users totals. If not used, "
|
1879 |
-
"the users current balance will be used as a starting point."
|
1880 |
-
msgstr ""
|
1881 |
-
|
1882 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:1442 ../addons/ranks/myCRED-addon-ranks.
|
1883 |
-
#: php:1487
|
1884 |
-
#, php-format
|
1885 |
-
msgid ""
|
1886 |
-
"Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
|
1887 |
-
"for the title and %rank_logo% to show the rank logo. HTML is allowed."
|
1888 |
-
msgstr ""
|
1889 |
-
|
1890 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:1464
|
1891 |
-
msgid "Include in Topic Replies"
|
1892 |
-
msgstr ""
|
1893 |
-
|
1894 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:1465 ../addons/badges/myCRED-addon-
|
1895 |
-
#: badges.php:1183
|
1896 |
-
msgid "Include in Profile"
|
1897 |
-
msgstr ""
|
1898 |
-
|
1899 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:1466
|
1900 |
-
msgid "Include in Topic Replies and Profile"
|
1901 |
-
msgstr ""
|
1902 |
-
|
1903 |
-
#: ../addons/ranks/myCRED-addon-ranks.php:1470
|
1904 |
-
msgid "Rank in bbPress"
|
1905 |
-
msgstr ""
|
1906 |
-
|
1907 |
-
#: ../addons/notifications/myCRED-addon-notifications.php:203
|
1908 |
-
msgid "Restore to default"
|
1909 |
-
msgstr ""
|
1910 |
-
|
1911 |
-
#: ../addons/notifications/myCRED-addon-notifications.php:217
|
1912 |
-
msgid ""
|
1913 |
-
"Number of seconds before a notice is automatically removed after being shown "
|
1914 |
-
"to user. Use zero to disable."
|
1915 |
-
msgstr ""
|
1916 |
-
|
1917 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:124 ../addons/email-
|
1918 |
-
#: notices/myCRED-addon-email-notices.php:130 ../addons/email-notices/myCRED-
|
1919 |
-
#: addon-email-notices.php:136 ../addons/email-notices/myCRED-addon-email-notices.
|
1920 |
-
#: php:192 ../addons/email-notices/myCRED-addon-email-notices.php:193
|
1921 |
-
msgid "Email Notifications"
|
1922 |
-
msgstr ""
|
1923 |
-
|
1924 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:125
|
1925 |
-
msgid "Email Notification"
|
1926 |
-
msgstr ""
|
1927 |
-
|
1928 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:128
|
1929 |
-
msgid "Edit Email Notification"
|
1930 |
-
msgstr ""
|
1931 |
-
|
1932 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:129
|
1933 |
-
msgid "New Email Notification"
|
1934 |
-
msgstr ""
|
1935 |
-
|
1936 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:132
|
1937 |
-
msgid "Search Email Notifications"
|
1938 |
-
msgstr ""
|
1939 |
-
|
1940 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:133
|
1941 |
-
msgid "No email notifications found"
|
1942 |
-
msgstr ""
|
1943 |
-
|
1944 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:134
|
1945 |
-
msgid "No email notifications found in Trash"
|
1946 |
-
msgstr ""
|
1947 |
-
|
1948 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:167 ../addons/email-
|
1949 |
-
#: notices/myCRED-addon-email-notices.php:168 ../addons/email-notices/myCRED-
|
1950 |
-
#: addon-email-notices.php:169 ../addons/email-notices/myCRED-addon-email-notices.
|
1951 |
-
#: php:170 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
|
1952 |
-
#: addons/email-notices/myCRED-addon-email-notices.php:174 ../addons/email-
|
1953 |
-
#: notices/myCRED-addon-email-notices.php:175 ../addons/email-notices/myCRED-
|
1954 |
-
#: addon-email-notices.php:176
|
1955 |
-
msgid "Email Notice Updated."
|
1956 |
-
msgstr ""
|
1957 |
-
|
1958 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:172
|
1959 |
-
msgid "Email Notice Activated."
|
1960 |
-
msgstr ""
|
1961 |
-
|
1962 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:347 ../addons/email-
|
1963 |
-
#: notices/myCRED-addon-email-notices.php:588
|
1964 |
-
msgid "All types"
|
1965 |
-
msgstr ""
|
1966 |
-
|
1967 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:706
|
1968 |
-
msgid "Instance Related"
|
1969 |
-
msgstr ""
|
1970 |
-
|
1971 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:712
|
1972 |
-
msgid "The users new balance"
|
1973 |
-
msgstr ""
|
1974 |
-
|
1975 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:720
|
1976 |
-
msgid "The users old balance"
|
1977 |
-
msgstr ""
|
1978 |
-
|
1979 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:728
|
1980 |
-
msgid "The amount of points gained or lost in this instance"
|
1981 |
-
msgstr ""
|
1982 |
-
|
1983 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:736
|
1984 |
-
msgid "The log entry"
|
1985 |
-
msgstr ""
|
1986 |
-
|
1987 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:741
|
1988 |
-
#, php-format
|
1989 |
-
msgid "You can also use %s."
|
1990 |
-
msgstr ""
|
1991 |
-
|
1992 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:741
|
1993 |
-
msgid "user related template tags"
|
1994 |
-
msgstr ""
|
1995 |
-
|
1996 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:872
|
1997 |
-
msgid "Badge Add-on"
|
1998 |
-
msgstr ""
|
1999 |
-
|
2000 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:873
|
2001 |
-
msgid "user gains a badge"
|
2002 |
-
msgstr ""
|
2003 |
-
|
2004 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:1357 ../addons/email-
|
2005 |
-
#: notices/myCRED-addon-email-notices.php:1364
|
2006 |
-
msgid "Email Schedule"
|
2007 |
-
msgstr ""
|
2008 |
-
|
2009 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:1359
|
2010 |
-
msgid "WordPress Cron is disabled. Emails will be sent immediately."
|
2011 |
-
msgstr ""
|
2012 |
-
|
2013 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:1368
|
2014 |
-
msgid "Send emails immediately"
|
2015 |
-
msgstr ""
|
2016 |
-
|
2017 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:1372
|
2018 |
-
msgid "Send emails once an hour"
|
2019 |
-
msgstr ""
|
2020 |
-
|
2021 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:1376
|
2022 |
-
msgid "Send emails once a day"
|
2023 |
-
msgstr ""
|
2024 |
-
|
2025 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:1379
|
2026 |
-
msgid "Subscriptions"
|
2027 |
-
msgstr ""
|
2028 |
-
|
2029 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:1381
|
2030 |
-
#, php-format
|
2031 |
-
msgid ""
|
2032 |
-
"Use the %s shortcode to allow users to subscribe / unsubscribe to email "
|
2033 |
-
"updates."
|
2034 |
-
msgstr ""
|
2035 |
-
|
2036 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:1386
|
2037 |
-
msgid "SMTP Override"
|
2038 |
-
msgstr ""
|
2039 |
-
|
2040 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:1390
|
2041 |
-
msgid ""
|
2042 |
-
"SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
|
2043 |
-
"use a SMTP plugin for emails."
|
2044 |
-
msgstr ""
|
2045 |
-
|
2046 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:1520
|
2047 |
-
msgid "Unsubscribe"
|
2048 |
-
msgstr ""
|
2049 |
-
|
2050 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:1542
|
2051 |
-
msgid "There are no email notifications yet."
|
2052 |
-
msgstr ""
|
2053 |
-
|
2054 |
-
#: ../addons/email-notices/myCRED-addon-email-notices.php:1549 ../addons/buy-
|
2055 |
-
#: creds/modules/buycred-module-pending.php:483
|
2056 |
-
msgid "Save Changes"
|
2057 |
-
msgstr ""
|
2058 |
-
|
2059 |
-
#: ../addons/stats/myCRED-addon-stats.php:58
|
2060 |
-
msgid "Statistics"
|
2061 |
-
msgstr ""
|
2062 |
-
|
2063 |
-
#: ../addons/stats/myCRED-addon-stats.php:168
|
2064 |
-
msgid "Statistics Color"
|
2065 |
-
msgstr ""
|
2066 |
-
|
2067 |
-
#: ../addons/stats/myCRED-addon-stats.php:172
|
2068 |
-
msgid "Positive Values"
|
2069 |
-
msgstr ""
|
2070 |
-
|
2071 |
-
#: ../addons/stats/myCRED-addon-stats.php:178
|
2072 |
-
msgid "Negative Values"
|
2073 |
-
msgstr ""
|
2074 |
-
|
2075 |
-
#: ../addons/stats/myCRED-addon-stats.php:240
|
2076 |
-
msgid "Overview"
|
2077 |
-
msgstr ""
|
2078 |
-
|
2079 |
-
#: ../addons/stats/myCRED-addon-stats.php:302
|
2080 |
-
msgid "Refresh"
|
2081 |
-
msgstr ""
|
2082 |
-
|
2083 |
-
#: ../addons/stats/myCRED-addon-stats.php:409
|
2084 |
-
msgid "Your log is empty. No statistics can be shown."
|
2085 |
-
msgstr ""
|
2086 |
-
|
2087 |
-
#: ../addons/stats/widgets/mycred-stats-widget-circulation.php:44
|
2088 |
-
#, php-format
|
2089 |
-
msgid "Total %s:"
|
2090 |
-
msgstr ""
|
2091 |
-
|
2092 |
-
#: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138 ..
|
2093 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:267
|
2094 |
-
#, php-format
|
2095 |
-
msgid "Total amount of %s in circulation"
|
2096 |
-
msgstr ""
|
2097 |
-
|
2098 |
-
#: ../addons/stats/widgets/mycred-stats-widget-circulation.php:171 ..
|
2099 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:302
|
2100 |
-
msgid "Total gains (%)"
|
2101 |
-
msgstr ""
|
2102 |
-
|
2103 |
-
#: ../addons/stats/widgets/mycred-stats-widget-circulation.php:175 ..
|
2104 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:306
|
2105 |
-
msgid "Total loses (%)"
|
2106 |
-
msgstr ""
|
2107 |
-
|
2108 |
-
#: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
|
2109 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:309
|
2110 |
-
#, php-format
|
2111 |
-
msgid "Total Gained: %s"
|
2112 |
-
msgstr ""
|
2113 |
-
|
2114 |
-
#: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
|
2115 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:309
|
2116 |
-
#, php-format
|
2117 |
-
msgid "Total Spent: %s"
|
2118 |
-
msgstr ""
|
2119 |
-
|
2120 |
-
#: ../addons/stats/widgets/mycred-stats-widget-circulation.php:193 ..
|
2121 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:323
|
2122 |
-
msgid "This Year"
|
2123 |
-
msgstr ""
|
2124 |
-
|
2125 |
-
#: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
|
2126 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
|
2127 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
|
2128 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:203 ..
|
2129 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:327 ..
|
2130 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:329 ..
|
2131 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:331 ..
|
2132 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:333 ..
|
2133 |
-
#: addons/badges/includes/mycred-badge-functions.php:267
|
2134 |
-
msgid "Gained"
|
2135 |
-
msgstr ""
|
2136 |
-
|
2137 |
-
#: ../addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
|
2138 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
|
2139 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:202 ..
|
2140 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:204 ..
|
2141 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:328 ..
|
2142 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:330 ..
|
2143 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:332 ..
|
2144 |
-
#: addons/stats/widgets/mycred-stats-widget-circulation.php:334 ..
|
2145 |
-
#: addons/badges/includes/mycred-badge-functions.php:267
|
2146 |
-
msgid "Lost"
|
2147 |
-
msgstr ""
|
2148 |
-
|
2149 |
-
#: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
|
2150 |
-
msgid "Most common ways your users have lost or spent points during this period."
|
2151 |
-
msgstr ""
|
2152 |
-
|
2153 |
-
#: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
|
2154 |
-
#, php-format
|
2155 |
-
msgid "Most common ways your users have lost or spent %_plural% during this period."
|
2156 |
-
msgstr ""
|
2157 |
-
|
2158 |
-
#: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
|
2159 |
-
msgid "Loses in the last 10 days"
|
2160 |
-
msgstr ""
|
2161 |
-
|
2162 |
-
#: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:166 ..
|
2163 |
-
#: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
|
2164 |
-
msgid "No data found"
|
2165 |
-
msgstr ""
|
2166 |
-
|
2167 |
-
#: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
|
2168 |
-
msgid "Most common ways your users have gained points during this period."
|
2169 |
-
msgstr ""
|
2170 |
-
|
2171 |
-
#: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
|
2172 |
-
#, php-format
|
2173 |
-
msgid "Most common ways your users have gained %_plural% during this period."
|
2174 |
-
msgstr ""
|
2175 |
-
|
2176 |
-
#: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
|
2177 |
-
msgid "Gains in the last 10 days"
|
2178 |
-
msgstr ""
|
2179 |
-
|
2180 |
-
#: ../addons/badges/includes/mycred-badge-functions.php:248
|
2181 |
-
#, php-format
|
2182 |
-
msgid "Level %s"
|
2183 |
-
msgstr ""
|
2184 |
-
|
2185 |
-
#: ../addons/badges/includes/mycred-badge-functions.php:265
|
2186 |
-
#, php-format
|
2187 |
-
msgctxt "\"Points\" for \"reference\" x times"
|
2188 |
-
msgid "%s for \"%s\" x %d"
|
2189 |
-
msgstr ""
|
2190 |
-
|
2191 |
-
#: ../addons/badges/includes/mycred-badge-functions.php:267
|
2192 |
-
#, php-format
|
2193 |
-
msgctxt "\"Gained/Lost\" \"x points\" for \"reference\""
|
2194 |
-
msgid "%s %s for \"%s\""
|
2195 |
-
msgstr ""
|
2196 |
-
|
2197 |
-
#: ../addons/badges/includes/mycred-badge-functions.php:269 ..
|
2198 |
-
#: addons/badges/myCRED-addon-badges.php:519 ../addons/badges/myCRED-addon-
|
2199 |
-
#: badges.php:921
|
2200 |
-
msgctxt "Comparison of badge requirements. A OR B"
|
2201 |
-
msgid "OR"
|
2202 |
-
msgstr ""
|
2203 |
-
|
2204 |
-
#: ../addons/badges/includes/mycred-badge-functions.php:271 ..
|
2205 |
-
#: addons/badges/myCRED-addon-badges.php:518 ../addons/badges/myCRED-addon-
|
2206 |
-
#: badges.php:921
|
2207 |
-
msgctxt "Comparison of badge requirements. A AND B"
|
2208 |
-
msgid "AND"
|
2209 |
-
msgstr ""
|
2210 |
-
|
2211 |
-
#: ../addons/badges/includes/mycred-badge-functions.php:287 ..
|
2212 |
-
#: addons/badges/myCRED-addon-badges.php:722
|
2213 |
-
msgid "This badge is manually awarded."
|
2214 |
-
msgstr ""
|
2215 |
-
|
2216 |
-
#: ../addons/badges/myCRED-addon-badges.php:148 ../addons/badges/myCRED-addon-
|
2217 |
-
#: badges.php:154 ../addons/badges/myCRED-addon-badges.php:160 ..
|
2218 |
-
#: addons/badges/myCRED-addon-badges.php:295 ../addons/badges/myCRED-addon-
|
2219 |
-
#: badges.php:296 ../addons/badges/myCRED-addon-badges.php:1134 ..
|
2220 |
-
#: addons/badges/myCRED-addon-badges.php:1256 ../addons/badges/myCRED-addon-
|
2221 |
-
#: badges.php:1259
|
2222 |
-
msgid "Badges"
|
2223 |
-
msgstr ""
|
2224 |
-
|
2225 |
-
#: ../addons/badges/myCRED-addon-badges.php:149
|
2226 |
-
msgid "Badge"
|
2227 |
-
msgstr ""
|
2228 |
-
|
2229 |
-
#: ../addons/badges/myCRED-addon-badges.php:152
|
2230 |
-
msgid "Edit Badge"
|
2231 |
-
msgstr ""
|
2232 |
-
|
2233 |
-
#: ../addons/badges/myCRED-addon-badges.php:153
|
2234 |
-
msgid "New Badge"
|
2235 |
-
msgstr ""
|
2236 |
-
|
2237 |
-
#: ../addons/badges/myCRED-addon-badges.php:155
|
2238 |
-
msgid "View Badge"
|
2239 |
-
msgstr ""
|
2240 |
-
|
2241 |
-
#: ../addons/badges/myCRED-addon-badges.php:156
|
2242 |
-
msgid "Search Badge"
|
2243 |
-
msgstr ""
|
2244 |
-
|
2245 |
-
#: ../addons/badges/myCRED-addon-badges.php:157
|
2246 |
-
msgid "No badges found"
|
2247 |
-
msgstr ""
|
2248 |
-
|
2249 |
-
#: ../addons/badges/myCRED-addon-badges.php:158
|
2250 |
-
msgid "No badges found in Trash"
|
2251 |
-
msgstr ""
|
2252 |
-
|
2253 |
-
#: ../addons/badges/myCRED-addon-badges.php:270 ../addons/badges/myCRED-addon-
|
2254 |
-
#: badges.php:271 ../addons/badges/myCRED-addon-badges.php:272 ..
|
2255 |
-
#: addons/badges/myCRED-addon-badges.php:273 ../addons/badges/myCRED-addon-
|
2256 |
-
#: badges.php:277 ../addons/badges/myCRED-addon-badges.php:278 ..
|
2257 |
-
#: addons/badges/myCRED-addon-badges.php:279
|
2258 |
-
msgid "Badge Updated."
|
2259 |
-
msgstr ""
|
2260 |
-
|
2261 |
-
#: ../addons/badges/myCRED-addon-badges.php:275
|
2262 |
-
msgid "Badge Enabled."
|
2263 |
-
msgstr ""
|
2264 |
-
|
2265 |
-
#: ../addons/badges/myCRED-addon-badges.php:276
|
2266 |
-
msgid "Badge Saved."
|
2267 |
-
msgstr ""
|
2268 |
-
|
2269 |
-
#: ../addons/badges/myCRED-addon-badges.php:396 ../addons/badges/myCRED-addon-
|
2270 |
-
#: badges.php:480
|
2271 |
-
msgid "Badge Name"
|
2272 |
-
msgstr ""
|
2273 |
-
|
2274 |
-
#: ../addons/badges/myCRED-addon-badges.php:397
|
2275 |
-
msgid "Default Image"
|
2276 |
-
msgstr ""
|
2277 |
-
|
2278 |
-
#: ../addons/badges/myCRED-addon-badges.php:398
|
2279 |
-
msgid "First Level"
|
2280 |
-
msgstr ""
|
2281 |
-
|
2282 |
-
#: ../addons/badges/myCRED-addon-badges.php:399
|
2283 |
-
msgid "Requirements"
|
2284 |
-
msgstr ""
|
2285 |
-
|
2286 |
-
#: ../addons/badges/myCRED-addon-badges.php:510 ../addons/badges/myCRED-addon-
|
2287 |
-
#: badges.php:801
|
2288 |
-
msgid "Add Level"
|
2289 |
-
msgstr ""
|
2290 |
-
|
2291 |
-
#: ../addons/badges/myCRED-addon-badges.php:511 ../addons/badges/myCRED-addon-
|
2292 |
-
#: badges.php:802
|
2293 |
-
msgid "Remove Level"
|
2294 |
-
msgstr ""
|
2295 |
-
|
2296 |
-
#: ../addons/badges/myCRED-addon-badges.php:512 ../addons/badges/myCRED-addon-
|
2297 |
-
#: badges.php:755 ../addons/badges/myCRED-addon-badges.php:818 ..
|
2298 |
-
#: addons/badges/myCRED-addon-badges.php:823
|
2299 |
-
msgid "Set Image"
|
2300 |
-
msgstr ""
|
2301 |
-
|
2302 |
-
#: ../addons/badges/myCRED-addon-badges.php:513 ../addons/badges/myCRED-addon-
|
2303 |
-
#: badges.php:755 ../addons/badges/myCRED-addon-badges.php:823
|
2304 |
-
msgid "Change Image"
|
2305 |
-
msgstr ""
|
2306 |
-
|
2307 |
-
#: ../addons/badges/myCRED-addon-badges.php:514
|
2308 |
-
msgid "Are you sure you want to remove this level?"
|
2309 |
-
msgstr ""
|
2310 |
-
|
2311 |
-
#: ../addons/badges/myCRED-addon-badges.php:515 ../addons/badges/myCRED-addon-
|
2312 |
-
#: badges.php:819 ../addons/badges/myCRED-addon-badges.php:1288
|
2313 |
-
msgid "Level"
|
2314 |
-
msgstr ""
|
2315 |
-
|
2316 |
-
#: ../addons/badges/myCRED-addon-badges.php:516
|
2317 |
-
msgid "Badge Image"
|
2318 |
-
msgstr ""
|
2319 |
-
|
2320 |
-
#: ../addons/badges/myCRED-addon-badges.php:517
|
2321 |
-
msgid "Use as Badge"
|
2322 |
-
msgstr ""
|
2323 |
-
|
2324 |
-
#: ../addons/badges/myCRED-addon-badges.php:571
|
2325 |
-
msgid "Badge Setup"
|
2326 |
-
msgstr ""
|
2327 |
-
|
2328 |
-
#: ../addons/badges/myCRED-addon-badges.php:580
|
2329 |
-
msgid "Default Badge Image"
|
2330 |
-
msgstr ""
|
2331 |
-
|
2332 |
-
#: ../addons/badges/myCRED-addon-badges.php:678
|
2333 |
-
msgid "Assign Badge"
|
2334 |
-
msgstr ""
|
2335 |
-
|
2336 |
-
#: ../addons/badges/myCRED-addon-badges.php:679
|
2337 |
-
msgid "Remove Connections"
|
2338 |
-
msgstr ""
|
2339 |
-
|
2340 |
-
#: ../addons/badges/myCRED-addon-badges.php:758
|
2341 |
-
msgid "Optional image to show when a user has not earned this badge."
|
2342 |
-
msgstr ""
|
2343 |
-
|
2344 |
-
#: ../addons/badges/myCRED-addon-badges.php:777
|
2345 |
-
msgid "Time(s)"
|
2346 |
-
msgstr ""
|
2347 |
-
|
2348 |
-
#: ../addons/badges/myCRED-addon-badges.php:778
|
2349 |
-
msgid "In total"
|
2350 |
-
msgstr ""
|
2351 |
-
|
2352 |
-
#: ../addons/badges/myCRED-addon-badges.php:825
|
2353 |
-
#, php-format
|
2354 |
-
msgid "Level %d"
|
2355 |
-
msgstr ""
|
2356 |
-
|
2357 |
-
#: ../addons/badges/myCRED-addon-badges.php:849
|
2358 |
-
msgid "Select Point Type"
|
2359 |
-
msgstr ""
|
2360 |
-
|
2361 |
-
#: ../addons/badges/myCRED-addon-badges.php:863
|
2362 |
-
msgid "Select Reference"
|
2363 |
-
msgstr ""
|
2364 |
-
|
2365 |
-
#: ../addons/badges/myCRED-addon-badges.php:939
|
2366 |
-
msgid "Reward"
|
2367 |
-
msgstr ""
|
2368 |
-
|
2369 |
-
#: ../addons/badges/myCRED-addon-badges.php:1163 ../addons/badges/myCRED-addon-
|
2370 |
-
#: badges.php:1199
|
2371 |
-
msgid "Show all badges, including badges users have not yet earned."
|
2372 |
-
msgstr ""
|
2373 |
-
|
2374 |
-
#: ../addons/badges/myCRED-addon-badges.php:1184
|
2375 |
-
msgid "Include in Forum Replies"
|
2376 |
-
msgstr ""
|
2377 |
-
|
2378 |
-
#: ../addons/badges/myCRED-addon-badges.php:1185
|
2379 |
-
msgid "Include in Profile and Forum Replies"
|
2380 |
-
msgstr ""
|
2381 |
-
|
2382 |
-
#: ../addons/badges/myCRED-addon-badges.php:1251
|
2383 |
-
msgid "No image set"
|
2384 |
-
msgstr ""
|
2385 |
-
|
2386 |
-
#: ../addons/badges/myCRED-addon-badges.php:1283
|
2387 |
-
msgid "Select a level"
|
2388 |
-
msgstr ""
|
2389 |
-
|
2390 |
-
#: ../addons/badges/myCRED-addon-badges.php:1297
|
2391 |
-
msgid "Earned"
|
2392 |
-
msgstr ""
|
2393 |
-
|
2394 |
-
#: ../addons/badges/myCRED-addon-badges.php:1406
|
2395 |
-
#, php-format
|
2396 |
-
msgid "A total of %d users have received this badge."
|
2397 |
-
msgstr ""
|
2398 |
-
|
2399 |
-
#: ../addons/badges/myCRED-addon-badges.php:1408
|
2400 |
-
msgid "No users has yet earned this badge."
|
2401 |
-
msgstr ""
|
2402 |
-
|
2403 |
-
#: ../addons/badges/myCRED-addon-badges.php:1433
|
2404 |
-
msgid "No connections where removed."
|
2405 |
-
msgstr ""
|
2406 |
-
|
2407 |
-
#: ../addons/badges/myCRED-addon-badges.php:1435
|
2408 |
-
#, php-format
|
2409 |
-
msgid "%s connections where removed."
|
2410 |
-
msgstr ""
|
2411 |
-
|
2412 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:249
|
2413 |
-
msgid "Used"
|
2414 |
-
msgstr ""
|
2415 |
-
|
2416 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:296 ../addons/coupons/myCRED-addon-
|
2417 |
-
#: coupons.php:620
|
2418 |
-
#, php-format
|
2419 |
-
msgid "1 time"
|
2420 |
-
msgid_plural "%d times"
|
2421 |
-
msgstr[0] ""
|
2422 |
-
msgstr[1] ""
|
2423 |
-
|
2424 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:453
|
2425 |
-
msgid "Coupon Usage"
|
2426 |
-
msgstr ""
|
2427 |
-
|
2428 |
-
#: ../addons/coupons/myCRED-addon-coupons.php:536
|
2429 |
-
msgid "The maximum number of times this coupon can be used."
|
2430 |
-
msgstr ""
|
2431 |
-
|
2432 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:128
|
2433 |
-
msgid "Sell Content Add-on Update Required"
|
2434 |
-
msgstr ""
|
2435 |
-
|
2436 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:129
|
2437 |
-
msgid "Before continuing to use this add-on you must setup and save your settings."
|
2438 |
-
msgstr ""
|
2439 |
-
|
2440 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:214 ../addons/sell-
|
2441 |
-
#: content/myCRED-addon-sell-content.php:434
|
2442 |
-
msgid "Profit Share"
|
2443 |
-
msgstr ""
|
2444 |
-
|
2445 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:297
|
2446 |
-
msgid "Select all the post types you want to sell."
|
2447 |
-
msgstr ""
|
2448 |
-
|
2449 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:313
|
2450 |
-
msgid "You must select at least one post type to sell."
|
2451 |
-
msgstr ""
|
2452 |
-
|
2453 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:367
|
2454 |
-
msgid "Select all the point types accepted as payment."
|
2455 |
-
msgstr ""
|
2456 |
-
|
2457 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:386
|
2458 |
-
msgid "You must select at least one point type to accept as payment."
|
2459 |
-
msgstr ""
|
2460 |
-
|
2461 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:429 ../addons/sell-
|
2462 |
-
#: content/myCRED-addon-sell-content.php:837
|
2463 |
-
msgid "Expiration"
|
2464 |
-
msgstr ""
|
2465 |
-
|
2466 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:430 ../addons/sell-
|
2467 |
-
#: content/myCRED-addon-sell-content.php:777 ../addons/sell-
|
2468 |
-
#: content/includes/mycred-sell-shortcodes.php:181
|
2469 |
-
msgid "Hour(s)"
|
2470 |
-
msgstr ""
|
2471 |
-
|
2472 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:443
|
2473 |
-
#, php-format
|
2474 |
-
msgid "Use %price% to show the price set for each post."
|
2475 |
-
msgstr ""
|
2476 |
-
|
2477 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:446
|
2478 |
-
msgid "Button CSS Classes"
|
2479 |
-
msgstr ""
|
2480 |
-
|
2481 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:452
|
2482 |
-
msgid "Payment log entry template"
|
2483 |
-
msgstr ""
|
2484 |
-
|
2485 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:457
|
2486 |
-
msgid "Profit Share payout log entry template"
|
2487 |
-
msgstr ""
|
2488 |
-
|
2489 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:459
|
2490 |
-
msgid "Only used if profit sharing is enabled for this point type."
|
2491 |
-
msgstr ""
|
2492 |
-
|
2493 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:470
|
2494 |
-
msgid "Transactions"
|
2495 |
-
msgstr ""
|
2496 |
-
|
2497 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:473
|
2498 |
-
msgid "Reload page after successful payments."
|
2499 |
-
msgstr ""
|
2500 |
-
|
2501 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:478
|
2502 |
-
msgid ""
|
2503 |
-
"Option to show a custom button label while the payment is being processed. "
|
2504 |
-
"HTML is allowed."
|
2505 |
-
msgstr ""
|
2506 |
-
|
2507 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:484
|
2508 |
-
msgid "Members"
|
2509 |
-
msgstr ""
|
2510 |
-
|
2511 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:485
|
2512 |
-
msgid ""
|
2513 |
-
"The template to use when a content is viewed by a member that is logged in "
|
2514 |
-
"and can afford to pay. Only applied to content that is set for sale."
|
2515 |
-
msgstr ""
|
2516 |
-
|
2517 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:502
|
2518 |
-
msgid ""
|
2519 |
-
"The template to use when a content is viewed by someone who is not logged in."
|
2520 |
-
" Only applied to content that is set for sale."
|
2521 |
-
msgstr ""
|
2522 |
-
|
2523 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:520
|
2524 |
-
msgid ""
|
2525 |
-
"The template to use when a content is viewed by a member that is logged but "
|
2526 |
-
"can not afford to buy. Only applied to content that is set for sale."
|
2527 |
-
msgstr ""
|
2528 |
-
|
2529 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:814
|
2530 |
-
msgid "Never expires"
|
2531 |
-
msgstr ""
|
2532 |
-
|
2533 |
-
#: ../addons/sell-content/myCRED-addon-sell-content.php:823
|
2534 |
-
#, php-format
|
2535 |
-
msgid "Sell using %s"
|
2536 |
-
msgstr ""
|
2537 |
-
|
2538 |
-
#: ../addons/sell-content/includes/mycred-sell-functions.php:492
|
2539 |
-
#, php-format
|
2540 |
-
msgctxt "Point type name"
|
2541 |
-
msgid "You can not pay using %s"
|
2542 |
-
msgstr ""
|
2543 |
-
|
2544 |
-
#: ../addons/sell-content/includes/mycred-sell-functions.php:752
|
2545 |
-
#, php-format
|
2546 |
-
msgctxt "all post type name"
|
2547 |
-
msgid "All %s"
|
2548 |
-
msgstr ""
|
2549 |
-
|
2550 |
-
#: ../addons/sell-content/includes/mycred-sell-functions.php:756
|
2551 |
-
#, php-format
|
2552 |
-
msgctxt "all post type name"
|
2553 |
-
msgid "%s I manually select"
|
2554 |
-
msgstr ""
|
2555 |
-
|
2556 |
-
#: ../addons/sell-content/includes/mycred-sell-functions.php:760
|
2557 |
-
#, php-format
|
2558 |
-
msgctxt "%s = post type name"
|
2559 |
-
msgid "All %s except"
|
2560 |
-
msgstr ""
|
2561 |
-
|
2562 |
-
#: ../addons/sell-content/includes/mycred-sell-functions.php:761
|
2563 |
-
#, php-format
|
2564 |
-
msgctxt "%s = post type name"
|
2565 |
-
msgid "Comma separated list of %s IDs to exclude"
|
2566 |
-
msgstr ""
|
2567 |
-
|
2568 |
-
#: ../addons/sell-content/includes/mycred-sell-functions.php:764
|
2569 |
-
#, php-format
|
2570 |
-
msgctxt "%s = post type name"
|
2571 |
-
msgid "Only %s"
|
2572 |
-
msgstr ""
|
2573 |
-
|
2574 |
-
#: ../addons/sell-content/includes/mycred-sell-functions.php:765
|
2575 |
-
#, php-format
|
2576 |
-
msgctxt "%s = post type name"
|
2577 |
-
msgid "Comma separated list of %s IDs"
|
2578 |
-
msgstr ""
|
2579 |
-
|
2580 |
-
#: ../addons/sell-content/includes/mycred-sell-functions.php:777
|
2581 |
-
#, php-format
|
2582 |
-
msgctxt "e.g. Only \"Posts\" in \"Categories\""
|
2583 |
-
msgid "Only %s in %s"
|
2584 |
-
msgstr ""
|
2585 |
-
|
2586 |
-
#: ../addons/sell-content/includes/mycred-sell-functions.php:778 ../addons/sell-
|
2587 |
-
#: content/includes/mycred-sell-functions.php:782 ../addons/sell-
|
2588 |
-
#: content/includes/mycred-sell-functions.php:788 ../addons/sell-
|
2589 |
-
#: content/includes/mycred-sell-functions.php:792
|
2590 |
-
#, php-format
|
2591 |
-
msgctxt "%s = taxonomy name"
|
2592 |
-
msgid "Comma separated list of %s slugs"
|
2593 |
-
msgstr ""
|
2594 |
-
|
2595 |
-
#: ../addons/sell-content/includes/mycred-sell-functions.php:781
|
2596 |
-
#, php-format
|
2597 |
-
msgctxt "e.g. Only \"Posts\" not in \"Categories\""
|
2598 |
-
msgid "Only %s not in %s"
|
2599 |
-
msgstr ""
|
2600 |
-
|
2601 |
-
#: ../addons/sell-content/includes/mycred-sell-functions.php:787
|
2602 |
-
#, php-format
|
2603 |
-
msgctxt "e.g. Only \"Posts\" with \"Tags\""
|
2604 |
-
msgid "Only %s with %s"
|
2605 |
-
msgstr ""
|
2606 |
-
|
2607 |
-
#: ../addons/sell-content/includes/mycred-sell-functions.php:791
|
2608 |
-
#, php-format
|
2609 |
-
msgctxt "e.g. Only \"Posts\" without \"Tags\""
|
2610 |
-
msgid "Only %s without %s"
|
2611 |
-
msgstr ""
|
2612 |
-
|
2613 |
-
#: ../addons/sell-content/includes/mycred-sell-shortcodes.php:233
|
2614 |
-
#, php-format
|
2615 |
-
msgctxt "e.g. 10 hours"
|
2616 |
-
msgid "Purchase expires in %s"
|
2617 |
-
msgstr ""
|
2618 |
-
|
2619 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:218
|
2620 |
-
#, php-format
|
2621 |
-
msgctxt "%s is replaced with the point amount and name."
|
2622 |
-
msgid "Received new request to purchase %s."
|
2623 |
-
msgstr ""
|
2624 |
-
|
2625 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:552
|
2626 |
-
msgid "First Name"
|
2627 |
-
msgstr ""
|
2628 |
-
|
2629 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:558
|
2630 |
-
msgid "Last Name"
|
2631 |
-
msgstr ""
|
2632 |
-
|
2633 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:566
|
2634 |
-
msgid "Address Line 1"
|
2635 |
-
msgstr ""
|
2636 |
-
|
2637 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:574
|
2638 |
-
msgid "Address Line 2"
|
2639 |
-
msgstr ""
|
2640 |
-
|
2641 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
|
2642 |
-
msgid "City"
|
2643 |
-
msgstr ""
|
2644 |
-
|
2645 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:588
|
2646 |
-
msgid "Zip"
|
2647 |
-
msgstr ""
|
2648 |
-
|
2649 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:596
|
2650 |
-
msgid "State"
|
2651 |
-
msgstr ""
|
2652 |
-
|
2653 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:604
|
2654 |
-
msgid "Country"
|
2655 |
-
msgstr ""
|
2656 |
-
|
2657 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:609
|
2658 |
-
msgid "Choose Country"
|
2659 |
-
msgstr ""
|
2660 |
-
|
2661 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:667
|
2662 |
-
msgctxt "buyCRED order description"
|
2663 |
-
msgid "Item"
|
2664 |
-
msgstr ""
|
2665 |
-
|
2666 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1477
|
2667 |
-
msgid "January"
|
2668 |
-
msgstr ""
|
2669 |
-
|
2670 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1478
|
2671 |
-
msgid "February"
|
2672 |
-
msgstr ""
|
2673 |
-
|
2674 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1479
|
2675 |
-
msgid "March"
|
2676 |
-
msgstr ""
|
2677 |
-
|
2678 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1480
|
2679 |
-
msgid "April"
|
2680 |
-
msgstr ""
|
2681 |
-
|
2682 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1481
|
2683 |
-
msgid "May"
|
2684 |
-
msgstr ""
|
2685 |
-
|
2686 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1482
|
2687 |
-
msgid "June"
|
2688 |
-
msgstr ""
|
2689 |
-
|
2690 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1483
|
2691 |
-
msgid "July"
|
2692 |
-
msgstr ""
|
2693 |
-
|
2694 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1484
|
2695 |
-
msgid "August"
|
2696 |
-
msgstr ""
|
2697 |
-
|
2698 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1485
|
2699 |
-
msgid "September"
|
2700 |
-
msgstr ""
|
2701 |
-
|
2702 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1486
|
2703 |
-
msgid "October"
|
2704 |
-
msgstr ""
|
2705 |
-
|
2706 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1487
|
2707 |
-
msgid "November"
|
2708 |
-
msgstr ""
|
2709 |
-
|
2710 |
-
#: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1488
|
2711 |
-
msgid "December"
|
2712 |
-
msgstr ""
|
2713 |
-
|
2714 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:135
|
2715 |
-
msgctxt "Post Type General Name"
|
2716 |
-
msgid "Pending Payments"
|
2717 |
-
msgstr ""
|
2718 |
-
|
2719 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:136
|
2720 |
-
msgctxt "Post Type Singular Name"
|
2721 |
-
msgid "Pending Payment"
|
2722 |
-
msgstr ""
|
2723 |
-
|
2724 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:137 ../addons/buy-
|
2725 |
-
#: creds/modules/buycred-module-pending.php:139 ../addons/buy-
|
2726 |
-
#: creds/modules/buycred-module-pending.php:229 ../addons/buy-
|
2727 |
-
#: creds/modules/buycred-module-pending.php:230
|
2728 |
-
msgid "Pending Payments"
|
2729 |
-
msgstr ""
|
2730 |
-
|
2731 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:143
|
2732 |
-
msgid "Edit Pending Payment"
|
2733 |
-
msgstr ""
|
2734 |
-
|
2735 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:146 ../addons/buy-
|
2736 |
-
#: creds/modules/buycred-module-pending.php:147
|
2737 |
-
msgid "Not found in Trash"
|
2738 |
-
msgstr ""
|
2739 |
-
|
2740 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:177 ../addons/buy-
|
2741 |
-
#: creds/modules/buycred-module-pending.php:178 ../addons/buy-
|
2742 |
-
#: creds/modules/buycred-module-pending.php:179 ../addons/buy-
|
2743 |
-
#: creds/modules/buycred-module-pending.php:180 ../addons/buy-
|
2744 |
-
#: creds/modules/buycred-module-pending.php:181 ../addons/buy-
|
2745 |
-
#: creds/modules/buycred-module-pending.php:182 ../addons/buy-
|
2746 |
-
#: creds/modules/buycred-module-pending.php:183 ../addons/buy-
|
2747 |
-
#: creds/modules/buycred-module-pending.php:184 ../addons/buy-
|
2748 |
-
#: creds/modules/buycred-module-pending.php:185
|
2749 |
-
msgid "Payment Updated."
|
2750 |
-
msgstr ""
|
2751 |
-
|
2752 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:213
|
2753 |
-
msgid "Pending payment successfully credited to account."
|
2754 |
-
msgstr ""
|
2755 |
-
|
2756 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:215
|
2757 |
-
msgid "Failed to credit the pending payment to account."
|
2758 |
-
msgstr ""
|
2759 |
-
|
2760 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:265 ../addons/buy-
|
2761 |
-
#: creds/modules/buycred-module-core.php:729
|
2762 |
-
msgid "Buyer"
|
2763 |
-
msgstr ""
|
2764 |
-
|
2765 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:269
|
2766 |
-
msgid "Type"
|
2767 |
-
msgstr ""
|
2768 |
-
|
2769 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:366 ../addons/buy-
|
2770 |
-
#: creds/modules/buycred-module-pending.php:471
|
2771 |
-
msgid "Pay Out"
|
2772 |
-
msgstr ""
|
2773 |
-
|
2774 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:434
|
2775 |
-
msgid "Pending Payment"
|
2776 |
-
msgstr ""
|
2777 |
-
|
2778 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:472
|
2779 |
-
msgid "Trash"
|
2780 |
-
msgstr ""
|
2781 |
-
|
2782 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:536
|
2783 |
-
msgid "Payer"
|
2784 |
-
msgstr ""
|
2785 |
-
|
2786 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:645
|
2787 |
-
msgid "Pending request created."
|
2788 |
-
msgstr ""
|
2789 |
-
|
2790 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:693
|
2791 |
-
#, php-format
|
2792 |
-
msgid "Pending payment updated by %s"
|
2793 |
-
msgstr ""
|
2794 |
-
|
2795 |
-
#: ../addons/buy-creds/modules/buycred-module-pending.php:791
|
2796 |
-
msgid "No pending payments found"
|
2797 |
-
msgstr ""
|
2798 |
-
|
2799 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:133
|
2800 |
-
msgid "Bank Transfer"
|
2801 |
-
msgstr ""
|
2802 |
-
|
2803 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:315
|
2804 |
-
msgid "Select the point types that users can buy. You must select at least one!"
|
2805 |
-
msgstr ""
|
2806 |
-
|
2807 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:591
|
2808 |
-
msgid "More Gateways"
|
2809 |
-
msgstr ""
|
2810 |
-
|
2811 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:1029 ../addons/buy-
|
2812 |
-
#: creds/modules/buycred-module-core.php:1043
|
2813 |
-
msgid "buyCRED Exchange Rates"
|
2814 |
-
msgstr ""
|
2815 |
-
|
2816 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:1059
|
2817 |
-
msgid "Leave empty to use the default value."
|
2818 |
-
msgstr ""
|
2819 |
-
|
2820 |
-
#: ../addons/buy-creds/modules/buycred-module-core.php:1428
|
2821 |
-
msgid "Pay Using"
|
2822 |
-
msgstr ""
|
2823 |
-
|
2824 |
-
#: ../addons/buy-creds/gateways/bank-transfer.php:139
|
2825 |
-
msgid "Continue"
|
2826 |
-
msgstr ""
|
2827 |
-
|
2828 |
-
#: ../addons/buy-creds/gateways/bank-transfer.php:167
|
2829 |
-
msgid "Checkout Logo"
|
2830 |
-
msgstr ""
|
2831 |
-
|
2832 |
-
#: ../addons/buy-creds/gateways/bank-transfer.php:173
|
2833 |
-
msgid "Bank Account Information"
|
2834 |
-
msgstr ""
|
2835 |
-
|
2836 |
-
#: ../addons/buy-creds/gateways/bank-transfer.php:177
|
2837 |
-
msgid "Bank transfer details to show the user on the checkout page."
|
2838 |
-
msgstr ""
|
2839 |
-
|
2840 |
-
#: ../addons/buy-creds/gateways/bank-transfer.php:186 ../addons/buy-
|
2841 |
-
#: creds/gateways/bitpay.php:265 ../addons/buy-creds/gateways/netbilling.php:234 .
|
2842 |
-
#: ./addons/buy-creds/gateways/paypal-standard.php:298 ../addons/buy-
|
2843 |
-
#: creds/gateways/skrill.php:320
|
2844 |
-
msgid "Exchange Rates"
|
2845 |
-
msgstr ""
|
2846 |
-
|
2847 |
-
#: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
|
2848 |
-
#: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
|
2849 |
-
#: php:145 ../addons/buy-creds/gateways/skrill.php:124
|
2850 |
-
#, php-format
|
2851 |
-
msgid "Price mismatch. Expected: %s Received: %s"
|
2852 |
-
msgstr ""
|
2853 |
-
|
2854 |
-
#: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
|
2855 |
-
#: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
|
2856 |
-
#, php-format
|
2857 |
-
msgid "Currency mismatch. Expected: %s Received: %s"
|
2858 |
-
msgstr ""
|
2859 |
-
|
2860 |
-
#: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
|
2861 |
-
#: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
|
2862 |
-
#: php:157 ../addons/buy-creds/gateways/skrill.php:136
|
2863 |
-
#, php-format
|
2864 |
-
msgid "Payment not completed. Received: %s"
|
2865 |
-
msgstr ""
|
2866 |
-
|
2867 |
-
#: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
|
2868 |
-
#: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/zombaio.php:189
|
2869 |
-
#: ../addons/buy-creds/gateways/paypal-standard.php:168 ../addons/buy-
|
2870 |
-
#: creds/gateways/skrill.php:147
|
2871 |
-
msgid "Failed to credit users account."
|
2872 |
-
msgstr ""
|
2873 |
-
|
2874 |
-
#: ../addons/buy-creds/gateways/zombaio.php:155
|
2875 |
-
#, php-format
|
2876 |
-
msgid "Duplicate transaction. Received: %s"
|
2877 |
-
msgstr ""
|
2878 |
-
|
2879 |
-
#: ../addons/buy-creds/gateways/zombaio.php:161
|
2880 |
-
#, php-format
|
2881 |
-
msgid "Live transaction while debug mode is enabled! Received: %s"
|
2882 |
-
msgstr ""
|
2883 |
-
|
2884 |
-
#: ../addons/buy-creds/gateways/paypal-standard.php:256
|
2885 |
-
#, php-format
|
2886 |
-
msgctxt "Return label. %s = Website name"
|
2887 |
-
msgid "Return to %s"
|
2888 |
-
msgstr ""
|
2889 |
-
|
2890 |
-
#: ../abstracts/mycred-abstract-hook.php:90
|
2891 |
-
msgid "This Hook has no settings"
|
2892 |
-
msgstr "Este gancho no ha sido configurado"
|
2893 |
-
|
2894 |
-
#: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
|
2895 |
-
#: php:354 ../modules/mycred-module-hooks.php:2401 ../includes/mycred-functions.
|
2896 |
-
#: php:2563
|
2897 |
-
msgid "No limit"
|
2898 |
-
msgstr "Sin Limite"
|
2899 |
-
|
2900 |
-
#: ../abstracts/mycred-abstract-hook.php:355
|
2901 |
-
msgid "Once every 24 hours"
|
2902 |
-
msgstr "Una vez cada 24 horas"
|
2903 |
-
|
2904 |
-
#: ../abstracts/mycred-abstract-hook.php:356
|
2905 |
-
msgid "Once every 7 days"
|
2906 |
-
msgstr "Una vez cada 7 dias"
|
2907 |
-
|
2908 |
-
#: ../abstracts/mycred-abstract-hook.php:357
|
2909 |
-
msgid "Once per day (reset at midnight)"
|
2910 |
-
msgstr "Una vez al dia (reinicializado al medianoche)"
|
2911 |
-
|
2912 |
-
#: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
|
2913 |
-
#: abstract-service.php:351 ../addons/email-notices/myCRED-addon-email-notices.
|
2914 |
-
#: php:527 ../addons/email-notices/myCRED-addon-email-notices.php:859 ..
|
2915 |
-
#: addons/badges/myCRED-addon-badges.php:880 ../addons/buy-
|
2916 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:1102 ../addons/buy-
|
2917 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:1127 ../addons/buy-
|
2918 |
-
#: creds/modules/buycred-module-core.php:356 ../addons/buy-creds/modules/buycred-
|
2919 |
-
#: module-core.php:379 ../addons/buy-creds/gateways/zombaio.php:358
|
2920 |
-
msgid "Select"
|
2921 |
-
msgstr "Seleccionar"
|
2922 |
-
|
2923 |
-
#: ../abstracts/mycred-abstract-module.php:400 ../abstracts/mycred-abstract-
|
2924 |
-
#: module.php:410
|
2925 |
-
msgid "Surprise"
|
2926 |
-
msgstr "Sorpresa"
|
2927 |
-
|
2928 |
-
#: ../abstracts/mycred-abstract-module.php:528 ../modules/mycred-module-network.
|
2929 |
-
#: php:98
|
2930 |
-
msgid "click to close"
|
2931 |
-
msgstr "haga clic para cerrar"
|
2932 |
-
|
2933 |
-
#: ../abstracts/mycred-abstract-module.php:529 ../modules/mycred-module-network.
|
2934 |
-
#: php:99
|
2935 |
-
msgid "click to open"
|
2936 |
-
msgstr "haga clic para abrir"
|
2937 |
-
|
2938 |
-
#: ../abstracts/mycred-abstract-module.php:562 ../modules/mycred-module-network.
|
2939 |
-
#: php:155 ../addons/gateway/event-booking/mycred-eventespresso3.php:451 ..
|
2940 |
-
#: addons/email-notices/myCRED-addon-email-notices.php:1469 ../addons/buy-
|
2941 |
-
#: creds/modules/buycred-module-core.php:538
|
2942 |
-
msgid "Settings Updated"
|
2943 |
-
msgstr "Configuraciones Actualizadas"
|
2944 |
-
|
2945 |
-
#: ../modules/mycred-module-management.php:99
|
2946 |
-
msgid "Update Balance"
|
2947 |
-
msgstr "Actualizar Saldo"
|
2948 |
-
|
2949 |
-
#: ../modules/mycred-module-management.php:112
|
2950 |
-
msgid "User is excluded"
|
2951 |
-
msgstr "El Usuario ha sido excluido"
|
2952 |
-
|
2953 |
-
#: ../modules/mycred-module-management.php:120
|
2954 |
-
msgid "Log Entry can not be empty"
|
2955 |
-
msgstr "Entrada de registro no puede estar vacío"
|
2956 |
-
|
2957 |
-
#: ../modules/mycred-module-management.php:128 ../modules/mycred-module-log.php:225
|
2958 |
-
msgid "Amount can not be zero"
|
2959 |
-
msgstr "La Cantidad no Puede ser Cero"
|
2960 |
-
|
2961 |
-
#: ../modules/mycred-module-management.php:233 ../modules/mycred-module-log.php:
|
2962 |
-
#: 94 ../modules/mycred-module-log.php:910 ../includes/classes/class.query-export.
|
2963 |
-
#: php:263 ../includes/classes/class.query-export.php:399 ..
|
2964 |
-
#: includes/classes/class.query-log.php:370 ../includes/classes/class.query-log.
|
2965 |
-
#: php:380 ../addons/banking/services/mycred-service-payouts.php:738 ..
|
2966 |
-
#: addons/sell-content/includes/mycred-sell-shortcodes.php:185 ../addons/buy-
|
2967 |
-
#: creds/modules/buycred-module-core.php:730
|
2968 |
-
msgid "Date"
|
2969 |
-
msgstr "Fecha"
|
2970 |
-
|
2971 |
-
#: ../modules/mycred-module-management.php:234 ../addons/banking/services/mycred-
|
2972 |
-
#: service-interest.php:435 ../addons/banking/services/mycred-service-interest.
|
2973 |
-
#: php:460 ../addons/banking/services/mycred-service-payouts.php:744
|
2974 |
-
msgid "Time"
|
2975 |
-
msgstr "Tiempo"
|
2976 |
-
|
2977 |
-
#. need more context: entrada or inscripción
|
2978 |
-
#: ../modules/mycred-module-management.php:236 ../modules/mycred-module-log.php:
|
2979 |
-
#: 96 ../includes/classes/class.query-export.php:263 ../includes/classes/class.
|
2980 |
-
#: query-export.php:406 ../includes/classes/class.query-log.php:372 ..
|
2981 |
-
#: includes/classes/class.query-log.php:382
|
2982 |
-
msgid "Entry"
|
2983 |
-
msgstr "Entrada"
|
2984 |
-
|
2985 |
-
#: ../modules/mycred-module-management.php:310
|
2986 |
-
msgid "Edit Users Balance"
|
2987 |
-
msgstr "Editar saldo del usuario"
|
2988 |
-
|
2989 |
-
#: ../modules/mycred-module-management.php:311 ../modules/mycred-module-settings.
|
2990 |
-
#: php:431 ../modules/mycred-module-log.php:465 ../modules/mycred-module-hooks.
|
2991 |
-
#: php:306 ../modules/mycred-module-hooks.php:420 ../addons/banking/myCRED-addon-
|
2992 |
-
#: banking.php:204
|
2993 |
-
msgid "Close"
|
2994 |
-
msgstr "Cerrar"
|
2995 |
-
|
2996 |
-
#: ../modules/mycred-module-management.php:312 ../modules/mycred-module-settings.
|
2997 |
-
#: php:426 ../modules/mycred-module-log.php:466 ../mycred.php:632 ..
|
2998 |
-
#: addons/gateway/event-booking/mycred-eventsmanager.php:478 ..
|
2999 |
-
#: addons/transfer/myCRED-addon-transfer.php:140 ../addons/ranks/myCRED-addon-
|
3000 |
-
#: ranks.php:955 ../addons/ranks/myCRED-addon-ranks.php:1535 ..
|
3001 |
-
#: addons/badges/myCRED-addon-badges.php:702
|
3002 |
-
msgid "Processing..."
|
3003 |
-
msgstr "Procesando..."
|
3004 |
-
|
3005 |
-
#: ../modules/mycred-module-management.php:449
|
3006 |
-
msgid "Excluded"
|
3007 |
-
msgstr "Excluido"
|
3008 |
-
|
3009 |
-
#: ../modules/mycred-module-management.php:459 ../modules/mycred-module-hooks.php:
|
3010 |
-
#: 3129 ../addons/coupons/myCRED-addon-coupons.php:307
|
3011 |
-
msgid "Total"
|
3012 |
-
msgstr "Total"
|
3013 |
-
|
3014 |
-
#: ../modules/mycred-module-management.php:469 ../modules/mycred-module-log.php:
|
3015 |
-
#: 282 ../modules/mycred-module-log.php:283 ../mycred.php:931 ../addons/buy-
|
3016 |
-
#: creds/modules/buycred-module-pending.php:437
|
3017 |
-
msgid "History"
|
3018 |
-
msgstr "Historial"
|
3019 |
-
|
3020 |
-
#: ../modules/mycred-module-management.php:470
|
3021 |
-
msgid "Adjust"
|
3022 |
-
msgstr "Modificar"
|
3023 |
-
|
3024 |
-
#: ../modules/mycred-module-management.php:535 ../modules/mycred-module-
|
3025 |
-
#: management.php:538 ../mycred.php:864 ../addons/transfer/myCRED-addon-transfer.
|
3026 |
-
#: php:495 ../addons/transfer/includes/mycred-transfer-shortcodes.php:33
|
3027 |
-
msgid "Balance"
|
3028 |
-
msgstr "Saldo"
|
3029 |
-
|
3030 |
-
#: ../modules/mycred-module-management.php:617 ../addons/banking/services/mycred-
|
3031 |
-
#: service-payouts.php:551
|
3032 |
-
msgid "ID"
|
3033 |
-
msgstr "ID"
|
3034 |
-
|
3035 |
-
#: ../modules/mycred-module-management.php:629 ../addons/gateway/event-
|
3036 |
-
#: booking/mycred-eventespresso3.php:307 ../addons/gateway/event-booking/mycred-
|
3037 |
-
#: eventespresso3.php:332 ../addons/gateway/event-booking/mycred-eventsmanager.
|
3038 |
-
#: php:412 ../addons/gateway/carts/mycred-marketpress.php:158
|
3039 |
-
msgid "Current Balance"
|
3040 |
-
msgstr "Saldo Actual"
|
3041 |
-
|
3042 |
-
#: ../modules/mycred-module-management.php:644 ../plugins/mycred-hook-affiliatewp.
|
3043 |
-
#: php:260 ../includes/shortcodes/mycred_exchange.php:69 ..
|
3044 |
-
#: includes/shortcodes/mycred_hook_table.php:80 ../includes/classes/class.query-
|
3045 |
-
#: export.php:263 ../includes/classes/class.query-export.php:383 ..
|
3046 |
-
#: addons/transfer/includes/mycred-transfer-widgets.php:97 ..
|
3047 |
-
#: addons/transfer/includes/mycred-transfer-shortcodes.php:32 ../addons/buy-
|
3048 |
-
#: creds/abstracts/mycred-abstract-payment-gateway.php:668 ../addons/buy-
|
3049 |
-
#: creds/modules/buycred-module-pending.php:266 ../addons/buy-
|
3050 |
-
#: creds/modules/buycred-module-pending.php:608 ../addons/buy-
|
3051 |
-
#: creds/modules/buycred-module-pending.php:726
|
3052 |
-
msgid "Amount"
|
3053 |
-
msgstr "Cantidad"
|
3054 |
-
|
3055 |
-
#: ../modules/mycred-module-management.php:646
|
3056 |
-
msgid "A positive or negative value"
|
3057 |
-
msgstr "Un valor positivo o negativo"
|
3058 |
-
|
3059 |
-
#: ../modules/mycred-module-management.php:672 ../modules/mycred-module-log.php:
|
3060 |
-
#: 929 ../addons/gateway/event-booking/mycred-eventespresso3.php:518
|
3061 |
-
msgid "Log Entry"
|
3062 |
-
msgstr "Entrada de Registro"
|
3063 |
-
|
3064 |
-
#: ../modules/mycred-module-management.php:673
|
3065 |
-
msgid "optional"
|
3066 |
-
msgstr "opcional"
|
3067 |
-
|
3068 |
-
#: ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:
|
3069 |
-
#: 22 ../modules/mycred-module-settings.php:23 ../modules/mycred-module-network.
|
3070 |
-
#: php:164 ../mycred.php:989 ../addons/gateway/carts/mycred-marketpress.php:409 ..
|
3071 |
-
#: addons/stats/abstracts/mycred-abstract-stat-widget.php:106 ../addons/buy-
|
3072 |
-
#: creds/modules/buycred-module-core.php:533
|
3073 |
-
msgid "Settings"
|
3074 |
-
msgstr "Configuraciones"
|
3075 |
-
|
3076 |
-
#: ../modules/mycred-module-settings.php:138
|
3077 |
-
msgid "Accounts successfully reset"
|
3078 |
-
msgstr "Las cuentas fueron reiniciadas con éxito."
|
3079 |
-
|
3080 |
-
#: ../modules/mycred-module-settings.php:190
|
3081 |
-
msgid "No users found to export"
|
3082 |
-
msgstr "No se encontro usuarios para exportar"
|
3083 |
-
|
3084 |
-
#: ../modules/mycred-module-settings.php:427
|
3085 |
-
msgid ""
|
3086 |
-
"Warning! All entries in your log will be permanently removed! This can not "
|
3087 |
-
"be undone!"
|
3088 |
-
msgstr ""
|
3089 |
-
"¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
|
3090 |
-
"¡Esto no se puede deshacer!"
|
3091 |
-
|
3092 |
-
#: ../modules/mycred-module-settings.php:428
|
3093 |
-
msgid ""
|
3094 |
-
"All log entries belonging to deleted users will be permanently deleted! This "
|
3095 |
-
"can not be undone!"
|
3096 |
-
msgstr ""
|
3097 |
-
"¡Todas las entradas de registro perteneciendo al usuario seran "
|
3098 |
-
"permanentemente borradas! ¡Esto no se puede deshacer!"
|
3099 |
-
|
3100 |
-
#: ../modules/mycred-module-settings.php:429
|
3101 |
-
msgid "Warning! All user balances will be set to zero! This can not be undone!"
|
3102 |
-
msgstr ""
|
3103 |
-
"¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
|
3104 |
-
"deshacer!"
|
3105 |
-
|
3106 |
-
#: ../modules/mycred-module-settings.php:430
|
3107 |
-
msgid "Done!"
|
3108 |
-
msgstr "¡Realizado!"
|
3109 |
-
|
3110 |
-
#: ../modules/mycred-module-settings.php:432
|
3111 |
-
#, php-format
|
3112 |
-
msgid "Export users %plural%"
|
3113 |
-
msgstr "Exportar usuarios %plural%"
|
3114 |
-
|
3115 |
-
#: ../modules/mycred-module-settings.php:529
|
3116 |
-
#, php-format
|
3117 |
-
msgid "%s Settings"
|
3118 |
-
msgstr "Configuración de %s"
|
3119 |
-
|
3120 |
-
#: ../modules/mycred-module-settings.php:538
|
3121 |
-
msgid "Core Settings"
|
3122 |
-
msgstr "Ajustes Basicos"
|
3123 |
-
|
3124 |
-
#: ../modules/mycred-module-settings.php:543 ../includes/mycred-setup.php:275 ..
|
3125 |
-
#: addons/gateway/event-booking/mycred-eventespresso3.php:460 ..
|
3126 |
-
#: addons/gateway/event-booking/mycred-eventsmanager.php:602 ..
|
3127 |
-
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
|
3128 |
-
msgid "Labels"
|
3129 |
-
msgstr "Etiquetas"
|
3130 |
-
|
3131 |
-
#: ../modules/mycred-module-settings.php:561 ../includes/mycred-setup.php:293
|
3132 |
-
msgid "Format"
|
3133 |
-
msgstr "Formato"
|
3134 |
-
|
3135 |
-
#: ../modules/mycred-module-settings.php:565 ../includes/mycred-setup.php:297
|
3136 |
-
msgid "Prefix"
|
3137 |
-
msgstr "Prefijo"
|
3138 |
-
|
3139 |
-
#: ../modules/mycred-module-settings.php:571 ../includes/mycred-setup.php:303
|
3140 |
-
msgid "Separators"
|
3141 |
-
msgstr "Separadores"
|
3142 |
-
|
3143 |
-
#: ../modules/mycred-module-settings.php:579 ../includes/mycred-setup.php:311
|
3144 |
-
msgid "Decimals"
|
3145 |
-
msgstr "Decimales"
|
3146 |
-
|
3147 |
-
#: ../modules/mycred-module-settings.php:585 ../includes/mycred-setup.php:317
|
3148 |
-
msgid "Suffix"
|
3149 |
-
msgstr "Sufijo"
|
3150 |
-
|
3151 |
-
#: ../modules/mycred-module-settings.php:592
|
3152 |
-
msgid "Tip"
|
3153 |
-
msgstr "Pista"
|
3154 |
-
|
3155 |
-
#: ../modules/mycred-module-settings.php:599 ../includes/mycred-setup.php:328
|
3156 |
-
msgid "Security"
|
3157 |
-
msgstr "Seguridad"
|
3158 |
-
|
3159 |
-
#: ../modules/mycred-module-settings.php:646
|
3160 |
-
msgid "Delete log entries when user is deleted."
|
3161 |
-
msgstr "Elimina las entradas de registro cuando se elimina el usuario."
|
3162 |
-
|
3163 |
-
#: ../modules/mycred-module-settings.php:665
|
3164 |
-
msgid "Management"
|
3165 |
-
msgstr "Gestión"
|
3166 |
-
|
3167 |
-
#: ../modules/mycred-module-settings.php:677 ../modules/mycred-module-log.php:433
|
3168 |
-
msgid "Entries"
|
3169 |
-
msgstr "Entradas"
|
3170 |
-
|
3171 |
-
#: ../modules/mycred-module-settings.php:683 ../modules/mycred-module-settings.
|
3172 |
-
#: php:708 ../addons/ranks/myCRED-addon-ranks.php:1624 ../addons/buy-
|
3173 |
-
#: creds/modules/buycred-module-pending.php:443 ../addons/buy-
|
3174 |
-
#: creds/modules/buycred-module-pending.php:729
|
3175 |
-
msgid "Actions"
|
3176 |
-
msgstr "Acciones"
|
3177 |
-
|
3178 |
-
#: ../modules/mycred-module-settings.php:686
|
3179 |
-
msgid "Empty Log"
|
3180 |
-
msgstr "Registro Vacío"
|
3181 |
-
|
3182 |
-
#: ../modules/mycred-module-settings.php:702 ../addons/ranks/myCRED-addon-ranks.
|
3183 |
-
#: php:1045 ../addons/badges/myCRED-addon-badges.php:400
|
3184 |
-
msgid "Users"
|
3185 |
-
msgstr "Usuarios"
|
3186 |
-
|
3187 |
-
#: ../modules/mycred-module-settings.php:710
|
3188 |
-
msgid "Set all to zero"
|
3189 |
-
msgstr "Ajusta todo a cero"
|
3190 |
-
|
3191 |
-
#: ../modules/mycred-module-settings.php:727 ../includes/mycred-widgets.php:592 ..
|
3192 |
-
#: addons/transfer/myCRED-addon-transfer.php:383 ..
|
3193 |
-
#: addons/transfer/includes/mycred-transfer-widgets.php:109 ../addons/sell-
|
3194 |
-
#: content/myCRED-addon-sell-content.php:365 ../addons/buy-creds/modules/buycred-
|
3195 |
-
#: module-core.php:312
|
3196 |
-
msgid "Point Types"
|
3197 |
-
msgstr "Tipo de Puntos"
|
3198 |
-
|
3199 |
-
#: ../modules/mycred-module-settings.php:741 ../modules/mycred-module-settings.
|
3200 |
-
#: php:767 ../modules/mycred-module-settings.php:797
|
3201 |
-
msgid "Meta Key"
|
3202 |
-
msgstr "Clave Meta"
|
3203 |
-
|
3204 |
-
#: ../modules/mycred-module-settings.php:747 ../modules/mycred-module-settings.
|
3205 |
-
#: php:773 ../modules/mycred-module-settings.php:803 ..
|
3206 |
-
#: addons/gateway/carts/mycred-woocommerce.php:159 ../addons/email-
|
3207 |
-
#: notices/myCRED-addon-email-notices.php:575
|
3208 |
-
msgid "Label"
|
3209 |
-
msgstr "Etiqueta"
|
3210 |
-
|
3211 |
-
#: ../modules/mycred-module-settings.php:754 ../modules/mycred-module-settings.
|
3212 |
-
#: php:780 ../modules/mycred-module-hooks.php:306 ../modules/mycred-module-hooks.
|
3213 |
-
#: php:420 ../includes/classes/class.query-log.php:492 ../includes/classes/class.
|
3214 |
-
#: query-log.php:1076 ../addons/banking/services/mycred-service-payouts.php:470 ..
|
3215 |
-
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
|
3216 |
-
msgid "Delete"
|
3217 |
-
msgstr "Borrar"
|
3218 |
-
|
3219 |
-
#: ../modules/mycred-module-settings.php:793
|
3220 |
-
msgid "Add New Type"
|
3221 |
-
msgstr "Añadir Nuevo Tipo"
|
3222 |
-
|
3223 |
-
#: ../modules/mycred-module-settings.php:821 ../addons/gateway/event-
|
3224 |
-
#: booking/mycred-eventespresso3.php:551 ../addons/buy-creds/modules/buycred-
|
3225 |
-
#: module-core.php:591
|
3226 |
-
msgid "Update Settings"
|
3227 |
-
msgstr "Actualizar Configuraciones"
|
3228 |
-
|
3229 |
-
#: ../modules/mycred-module-settings.php:830
|
3230 |
-
msgid "Identify users by"
|
3231 |
-
msgstr "Identifique usuarios por"
|
3232 |
-
|
3233 |
-
#: ../modules/mycred-module-settings.php:836
|
3234 |
-
msgid "User ID"
|
3235 |
-
msgstr "ID del Usuario"
|
3236 |
-
|
3237 |
-
#: ../modules/mycred-module-settings.php:837
|
3238 |
-
msgid "User Email"
|
3239 |
-
msgstr "Email de Usuario"
|
3240 |
-
|
3241 |
-
#: ../modules/mycred-module-settings.php:838
|
3242 |
-
msgid "User Login"
|
3243 |
-
msgstr "Ingreso de Usuario"
|
3244 |
-
|
3245 |
-
#: ../modules/mycred-module-settings.php:846
|
3246 |
-
msgid ""
|
3247 |
-
"Use ID if you intend to use this export as a backup of your current site "
|
3248 |
-
"while Email is recommended if you want to export to a different site."
|
3249 |
-
msgstr ""
|
3250 |
-
"Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
|
3251 |
-
"Email si deseas exportar la data a otro sitio"
|
3252 |
-
|
3253 |
-
#: ../modules/mycred-module-settings.php:849
|
3254 |
-
msgid "Import Log Entry"
|
3255 |
-
msgstr "Importa la entrada de registro"
|
3256 |
-
|
3257 |
-
#: ../modules/mycred-module-settings.php:851
|
3258 |
-
#, php-format
|
3259 |
-
msgid ""
|
3260 |
-
"Optional log entry to use if you intend to import this file in a different "
|
3261 |
-
"%s installation."
|
3262 |
-
msgstr ""
|
3263 |
-
"Usa la entrada de registro opcional si tiene la intención de importar este "
|
3264 |
-
"fichero en otra instalación %s."
|
3265 |
-
|
3266 |
-
#: ../modules/mycred-module-settings.php:854 ../modules/mycred-module-export.php:
|
3267 |
-
#: 236 ../modules/mycred-module-export.php:263 ../modules/mycred-module-export.
|
3268 |
-
#: php:313
|
3269 |
-
msgid "Export"
|
3270 |
-
msgstr "Exportar"
|
3271 |
-
|
3272 |
-
#: ../modules/mycred-module-addons.php:25 ../modules/mycred-module-addons.php:26 .
|
3273 |
-
#: ./includes/mycred-setup.php:171
|
3274 |
-
msgid "Add-ons"
|
3275 |
-
msgstr "Extensiones"
|
3276 |
-
|
3277 |
-
#: ../modules/mycred-module-addons.php:184
|
3278 |
-
msgid "Setup recurring payouts or offer / charge interest on user account balances."
|
3279 |
-
msgstr ""
|
3280 |
-
"Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
|
3281 |
-
"de las cuentas de usuarios."
|
3282 |
-
|
3283 |
-
#: ../modules/mycred-module-addons.php:195
|
3284 |
-
msgid ""
|
3285 |
-
"The <strong>buy</strong>CRED Add-on allows your users to buy points using "
|
3286 |
-
"PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
|
3287 |
-
"also let your users buy points for other members."
|
3288 |
-
msgstr ""
|
3289 |
-
"La Extensión <strong>compra</strong>CRED permite que tus usuarios compren "
|
3290 |
-
"puntos utilizando PayPal, Skrill (Moneybookers) o NETbilling. "
|
3291 |
-
"<strong>compra</strong>CRED tambien permite que tus usuarios compren puntos "
|
3292 |
-
"para otros miembros."
|
3293 |
-
|
3294 |
-
#: ../modules/mycred-module-addons.php:206
|
3295 |
-
msgid ""
|
3296 |
-
"The coupons add-on allows you to create coupons that users can use to add "
|
3297 |
-
"points to their accounts."
|
3298 |
-
msgstr ""
|
3299 |
-
"Los cupones de add-on le permite crear cupones que los usuarios pueden "
|
3300 |
-
"utilizar para agregar puntos a sus cuentas."
|
3301 |
-
|
3302 |
-
#: ../modules/mycred-module-addons.php:217
|
3303 |
-
msgid "Create email notices for any type of myCRED instance."
|
3304 |
-
msgstr ""
|
3305 |
-
"Crea avisos por correo electrónico para cualquier tipo de instancias de "
|
3306 |
-
"myCRED."
|
3307 |
-
|
3308 |
-
#: ../modules/mycred-module-addons.php:228
|
3309 |
-
msgid ""
|
3310 |
-
"Let your users pay using their <strong>my</strong>CRED points balance. "
|
3311 |
-
"Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
|
3312 |
-
"Bookings: Event Espresso and Events Manager (free & pro)."
|
3313 |
-
msgstr ""
|
3314 |
-
"Permite que tus usuarios paguen utilizando el saldo de sus puntos "
|
3315 |
-
"<strong>my</strong>CRED. Carritos soportados: WooCommerce, MarketPress and "
|
3316 |
-
"WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
|
3317 |
-
"Manager (gratis y pro)."
|
3318 |
-
|
3319 |
-
#: ../modules/mycred-module-addons.php:239
|
3320 |
-
msgid "Create pop-up notifications for when users gain or loose points."
|
3321 |
-
msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
|
3322 |
-
|
3323 |
-
#: ../modules/mycred-module-addons.php:251
|
3324 |
-
msgid ""
|
3325 |
-
"Create ranks for users reaching a certain number of %_plural% with the "
|
3326 |
-
"option to add logos for each rank."
|
3327 |
-
msgstr ""
|
3328 |
-
"Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
|
3329 |
-
"con la opción de añadir logotipos para cada rango."
|
3330 |
-
|
3331 |
-
#: ../modules/mycred-module-addons.php:262
|
3332 |
-
msgid ""
|
3333 |
-
"This add-on allows you to sell posts, pages or any public post types on your "
|
3334 |
-
"website. You can either sell the entire content or using our shortcode, sell "
|
3335 |
-
"parts of your content allowing you to offer \"teasers\"."
|
3336 |
-
msgstr ""
|
3337 |
-
"Esta extensión permite que vendas posts, páginas o cualquier tipo de "
|
3338 |
-
"publicación en tu sitio web. Puedes venter contenidos enteros o utilizando "
|
3339 |
-
"el código corto (shortcode), vender partes de tu contenido permitiendote "
|
3340 |
-
"ofrecer \"avances\"."
|
3341 |
-
|
3342 |
-
#: ../modules/mycred-module-addons.php:284
|
3343 |
-
msgid ""
|
3344 |
-
"Allow your users to send or \"donate\" points to other members by either using "
|
3345 |
-
"the mycred_transfer shortcode or the myCRED Transfer widget."
|
3346 |
-
msgstr ""
|
3347 |
-
"Permite que los usuarios envien o \"donen\" puntos a otros miembros utilizando "
|
3348 |
-
"el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
|
3349 |
-
"myCRED."
|
3350 |
-
|
3351 |
-
#: ../modules/mycred-module-addons.php:328
|
3352 |
-
#, php-format
|
3353 |
-
msgid "%s Add-ons"
|
3354 |
-
msgstr "%s Extensiones (addons)"
|
3355 |
-
|
3356 |
-
#: ../modules/mycred-module-addons.php:335
|
3357 |
-
msgid "Add-on Activated"
|
3358 |
-
msgstr "Extensión Activado"
|
3359 |
-
|
3360 |
-
#: ../modules/mycred-module-addons.php:338
|
3361 |
-
msgid "Add-on Deactivated"
|
3362 |
-
msgstr "Extensión Desactivado"
|
3363 |
-
|
3364 |
-
#: ../modules/mycred-module-addons.php:406
|
3365 |
-
msgid "Activate Add-on"
|
3366 |
-
msgstr "Activar Extensión"
|
3367 |
-
|
3368 |
-
#: ../modules/mycred-module-addons.php:407
|
3369 |
-
msgid "Activate"
|
3370 |
-
msgstr "Activar"
|
3371 |
-
|
3372 |
-
#: ../modules/mycred-module-addons.php:413
|
3373 |
-
msgid "Deactivate Add-on"
|
3374 |
-
msgstr "Desactivar Extensión"
|
3375 |
-
|
3376 |
-
#: ../modules/mycred-module-addons.php:414
|
3377 |
-
msgid "Deactivate"
|
3378 |
-
msgstr "Desactivar"
|
3379 |
-
|
3380 |
-
#: ../modules/mycred-module-log.php:24 ../modules/mycred-module-log.php:25 ..
|
3381 |
-
#: addons/gateway/event-booking/mycred-eventespresso3.php:515
|
3382 |
-
msgid "Log"
|
3383 |
-
msgstr "Registro"
|
3384 |
-
|
3385 |
-
#: ../modules/mycred-module-log.php:92 ../modules/mycred-module-log.php:906 ..
|
3386 |
-
#: includes/classes/class.query-export.php:263 ../includes/classes/class.query-
|
3387 |
-
#: export.php:371 ../includes/classes/class.query-log.php:369 ..
|
3388 |
-
#: includes/classes/class.query-log.php:378 ../addons/email-notices/myCRED-addon-
|
3389 |
-
#: email-notices.php:332 ../addons/email-notices/myCRED-addon-email-notices.php:565
|
3390 |
-
msgid "User"
|
3391 |
-
msgstr "Usuario"
|
3392 |
-
|
3393 |
-
#: ../modules/mycred-module-log.php:173
|
3394 |
-
msgid "Row Deleted"
|
3395 |
-
msgstr "Fila Borrado"
|
3396 |
-
|
3397 |
-
#: ../modules/mycred-module-log.php:232
|
3398 |
-
msgid "Log entry not found"
|
3399 |
-
msgstr "No se encontro la entrada de registro "
|
3400 |
-
|
3401 |
-
#: ../modules/mycred-module-log.php:464
|
3402 |
-
msgid "Edit Log Entry"
|
3403 |
-
msgstr "Edidar entrada de registro"
|
3404 |
-
|
3405 |
-
#: ../modules/mycred-module-log.php:468
|
3406 |
-
msgid "Are you sure you want to delete this log entry? This can not be undone!"
|
3407 |
-
msgstr ""
|
3408 |
-
"¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
|
3409 |
-
"deshacer!"
|
3410 |
-
|
3411 |
-
#: ../modules/mycred-module-log.php:502
|
3412 |
-
msgid "Search results for"
|
3413 |
-
msgstr "Buscar entre resultados por"
|
3414 |
-
|
3415 |
-
#: ../modules/mycred-module-log.php:554
|
3416 |
-
#, php-format
|
3417 |
-
msgid "%s Log"
|
3418 |
-
msgstr "Registro de %s"
|
3419 |
-
|
3420 |
-
#: ../modules/mycred-module-log.php:666
|
3421 |
-
#, php-format
|
3422 |
-
msgid "My %s History"
|
3423 |
-
msgstr "Mi Historial de %s"
|
3424 |
-
|
3425 |
-
#: ../modules/mycred-module-network.php:61 ../modules/mycred-module-network.php:
|
3426 |
-
#: 62 ../addons/gateway/carts/mycred-woocommerce.php:29 ..
|
3427 |
-
#: addons/gateway/carts/mycred-marketpress.php:274
|
3428 |
-
msgid "myCRED"
|
3429 |
-
msgstr "myCRED"
|
3430 |
-
|
3431 |
-
#: ../modules/mycred-module-network.php:71 ../modules/mycred-module-network.php:72
|
3432 |
-
msgid "Network Settings"
|
3433 |
-
msgstr "Configuración de la Red"
|
3434 |
-
|
3435 |
-
#: ../modules/mycred-module-network.php:135
|
3436 |
-
#, php-format
|
3437 |
-
msgid "%s Network"
|
3438 |
-
msgstr "Red de %s"
|
3439 |
-
|
3440 |
-
#: ../modules/mycred-module-network.php:151
|
3441 |
-
#, php-format
|
3442 |
-
msgid "Note! %s has not yet been setup."
|
3443 |
-
msgstr "¡Aviso! %s no ha sido configurado."
|
3444 |
-
|
3445 |
-
#: ../modules/mycred-module-network.php:158
|
3446 |
-
#, php-format
|
3447 |
-
msgid "Configure network settings for %s."
|
3448 |
-
msgstr "Configure los parámetros de red para %s."
|
3449 |
-
|
3450 |
-
#: ../modules/mycred-module-network.php:166
|
3451 |
-
msgid "Master Template"
|
3452 |
-
msgstr "Plantilla Principal"
|
3453 |
-
|
3454 |
-
#: ../modules/mycred-module-network.php:170 ../modules/mycred-module-network.php:
|
3455 |
-
#: 184 ../addons/buy-creds/gateways/bitpay.php:299
|
3456 |
-
msgid "Yes"
|
3457 |
-
msgstr "Sí"
|
3458 |
-
|
3459 |
-
#: ../modules/mycred-module-network.php:174 ../modules/mycred-module-network.php:
|
3460 |
-
#: 188 ../addons/buy-creds/gateways/bitpay.php:298
|
3461 |
-
msgid "No"
|
3462 |
-
msgstr "No"
|
3463 |
-
|
3464 |
-
#: ../modules/mycred-module-network.php:177
|
3465 |
-
#, php-format
|
3466 |
-
msgid ""
|
3467 |
-
"If enabled, %s will use your main site's settings for all other sites in "
|
3468 |
-
"your network."
|
3469 |
-
msgstr ""
|
3470 |
-
"Si activado, %s utilizara la configuración de tu sitio principal para todas "
|
3471 |
-
"los sitios en tu red."
|
3472 |
-
|
3473 |
-
#: ../modules/mycred-module-network.php:180
|
3474 |
-
msgid "Central Logging"
|
3475 |
-
msgstr "Central de Registro"
|
3476 |
-
|
3477 |
-
#: ../modules/mycred-module-network.php:191
|
3478 |
-
#, php-format
|
3479 |
-
msgid "If enabled, %s will log all site actions in your main site's log."
|
3480 |
-
msgstr ""
|
3481 |
-
"Si está activado, %s registrará todas las acciones en el registro de tu "
|
3482 |
-
"sitio principal."
|
3483 |
-
|
3484 |
-
#: ../modules/mycred-module-network.php:194
|
3485 |
-
msgid "Site Block"
|
3486 |
-
msgstr "Bloqueo de Sitio"
|
3487 |
-
|
3488 |
-
#: ../modules/mycred-module-network.php:198
|
3489 |
-
#, php-format
|
3490 |
-
msgid "Comma separated list of blog ids where %s is to be disabled."
|
3491 |
-
msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
|
3492 |
-
|
3493 |
-
#: ../modules/mycred-module-network.php:210
|
3494 |
-
msgid "Save Network Settings"
|
3495 |
-
msgstr "Guardar las Configuraciones de la Eed"
|
3496 |
-
|
3497 |
-
#: ../modules/mycred-module-export.php:285 ../modules/mycred-module-export.php:
|
3498 |
-
#: 332 ../includes/classes/class.query-log.php:1141
|
3499 |
-
msgid ""
|
3500 |
-
"Log entries are exported to a CSV file and depending on the number of "
|
3501 |
-
"entries selected, the process may take a few seconds."
|
3502 |
-
msgstr ""
|
3503 |
-
"Se exporta las entradas de registro a un fichero CSV y dependiendo del "
|
3504 |
-
"número de entradas seleccionadas, el proceso puede tardar unos segundos."
|
3505 |
-
|
3506 |
-
#. also, "Inhabilitar"
|
3507 |
-
#: ../modules/mycred-module-export.php:353 ../addons/sell-content/myCRED-addon-
|
3508 |
-
#: sell-content.php:265
|
3509 |
-
msgid "Disabled"
|
3510 |
-
msgstr "Deshactivado"
|
3511 |
-
|
3512 |
-
#: ../modules/mycred-module-export.php:354 ../addons/sell-content/myCRED-addon-
|
3513 |
-
#: sell-content.php:266
|
3514 |
-
msgid "Enabled"
|
3515 |
-
msgstr "Habilitado"
|
3516 |
-
|
3517 |
-
#: ../modules/mycred-module-export.php:400 ../modules/mycred-module-export.php:
|
3518 |
-
#: 448 ../includes/importers/mycred-cubepoints.php:401 ../includes/classes/class.
|
3519 |
-
#: query-export.php:263 ../includes/classes/class.query-export.php:391 ..
|
3520 |
-
#: includes/mycred-widgets.php:195 ../includes/mycred-widgets.php:384 ..
|
3521 |
-
#: addons/gateway/event-booking/mycred-eventespresso3.php:483 ..
|
3522 |
-
#: addons/gateway/event-booking/mycred-eventsmanager.php:550 ..
|
3523 |
-
#: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611 ..
|
3524 |
-
#: addons/gateway/carts/mycred-wpecommerce.php:383 ..
|
3525 |
-
#: addons/gateway/carts/mycred-woocommerce.php:119 ..
|
3526 |
-
#: addons/gateway/carts/mycred-marketpress.php:427 ../addons/ranks/myCRED-addon-
|
3527 |
-
#: ranks.php:1048 ../addons/ranks/myCRED-addon-ranks.php:1218 ../addons/email-
|
3528 |
-
#: notices/myCRED-addon-email-notices.php:276 ../addons/email-notices/myCRED-
|
3529 |
-
#: addon-email-notices.php:582 ../addons/coupons/myCRED-addon-coupons.php:254 ..
|
3530 |
-
#: addons/coupons/myCRED-addon-coupons.php:488 ../addons/buy-
|
3531 |
-
#: creds/modules/buycred-module-pending.php:550 ../addons/buy-
|
3532 |
-
#: creds/modules/buycred-module-pending.php:728
|
3533 |
-
msgid "Point Type"
|
3534 |
-
msgstr "Tipo de Puntos"
|
3535 |
-
|
3536 |
-
#: ../modules/mycred-module-hooks.php:28 ../modules/mycred-module-hooks.php:29 ..
|
3537 |
-
#: modules/mycred-module-hooks.php:30 ../addons/stats/abstracts/mycred-abstract-
|
3538 |
-
#: stat-widget.php:103
|
3539 |
-
msgid "Hooks"
|
3540 |
-
msgstr "Ganchos"
|
3541 |
-
|
3542 |
-
#: ../modules/mycred-module-hooks.php:76
|
3543 |
-
#, php-format
|
3544 |
-
msgid "%plural% for registrations"
|
3545 |
-
msgstr "%plural% por inscripciones"
|
3546 |
-
|
3547 |
-
#: ../modules/mycred-module-hooks.php:77
|
3548 |
-
#, php-format
|
3549 |
-
msgid "Award %_plural% for users joining your website."
|
3550 |
-
msgstr "Concede %_plural% a usuarios para unirse a tu sitio de web."
|
3551 |
-
|
3552 |
-
#: ../modules/mycred-module-hooks.php:97
|
3553 |
-
#, php-format
|
3554 |
-
msgid "%plural% for logins"
|
3555 |
-
msgstr "%plural% para ingresos"
|
3556 |
-
|
3557 |
-
#: ../modules/mycred-module-hooks.php:104
|
3558 |
-
#, php-format
|
3559 |
-
msgid "%plural% for publishing content"
|
3560 |
-
msgstr "%plural% por publicar contenido"
|
3561 |
-
|
3562 |
-
#: ../modules/mycred-module-hooks.php:118
|
3563 |
-
#, php-format
|
3564 |
-
msgid "%plural% for comments"
|
3565 |
-
msgstr "%plural% por comentarios"
|
3566 |
-
|
3567 |
-
#: ../modules/mycred-module-hooks.php:118
|
3568 |
-
#, php-format
|
3569 |
-
msgid "%plural% for Disqus comments"
|
3570 |
-
msgstr "%plural% por comentarios Disqus"
|
3571 |
-
|
3572 |
-
#: ../modules/mycred-module-hooks.php:119
|
3573 |
-
#, php-format
|
3574 |
-
msgid "Award %_plural% for making comments."
|
3575 |
-
msgstr "Concede %_plural% por hacer comentarios."
|
3576 |
-
|
3577 |
-
#: ../modules/mycred-module-hooks.php:125
|
3578 |
-
#, php-format
|
3579 |
-
msgid "%plural% for clicking on links"
|
3580 |
-
msgstr "%plural% por hacer clic sobre enlaces"
|
3581 |
-
|
3582 |
-
#: ../modules/mycred-module-hooks.php:132
|
3583 |
-
#, php-format
|
3584 |
-
msgid "%plural% for viewing Videos"
|
3585 |
-
msgstr "%plural% por ver videos"
|
3586 |
-
|
3587 |
-
#: ../modules/mycred-module-hooks.php:139
|
3588 |
-
#, php-format
|
3589 |
-
msgid "%plural% for referrals"
|
3590 |
-
msgstr "%plural% por referencias (o recomendaciones)"
|
3591 |
-
|
3592 |
-
#: ../modules/mycred-module-hooks.php:309 ../modules/mycred-module-hooks.php:423 .
|
3593 |
-
#: ./addons/buy-creds/modules/buycred-module-pending.php:466
|
3594 |
-
msgid "Save"
|
3595 |
-
msgstr "Guardar"
|
3596 |
-
|
3597 |
-
#: ../modules/mycred-module-hooks.php:344 ../addons/buy-creds/abstracts/mycred-
|
3598 |
-
#: abstract-payment-gateway.php:455 ../addons/buy-creds/modules/buycred-module-
|
3599 |
-
#: pending.php:711
|
3600 |
-
msgid "Cancel"
|
3601 |
-
msgstr "Cancelar"
|
3602 |
-
|
3603 |
-
#: ../modules/mycred-module-hooks.php:751 ../modules/mycred-module-hooks.php:858 .
|
3604 |
-
#: ./modules/mycred-module-hooks.php:1028 ../modules/mycred-module-hooks.php:1059
|
3605 |
-
#: ../modules/mycred-module-hooks.php:1136 ../modules/mycred-module-hooks.php:
|
3606 |
-
#: 1500 ../modules/mycred-module-hooks.php:1517 ../modules/mycred-module-hooks.
|
3607 |
-
#: php:1566 ../modules/mycred-module-hooks.php:1755 ../modules/mycred-module-
|
3608 |
-
#: hooks.php:1772 ../modules/mycred-module-hooks.php:1821 ../modules/mycred-
|
3609 |
-
#: module-hooks.php:2273 ../modules/mycred-module-hooks.php:2290 ..
|
3610 |
-
#: modules/mycred-module-hooks.php:2307 ../modules/mycred-module-hooks.php:3644 .
|
3611 |
-
#: ./modules/mycred-module-hooks.php:3659 ../plugins/mycred-hook-invite-anyone.
|
3612 |
-
#: php:211 ../plugins/mycred-hook-invite-anyone.php:232 ../plugins/mycred-hook-wp-
|
3613 |
-
#: postratings.php:173 ../plugins/mycred-hook-wp-postratings.php:192 ..
|
3614 |
-
#: plugins/mycred-hook-gravityforms.php:165 ../plugins/mycred-hook-simplepress.
|
3615 |
-
#: php:309 ../plugins/mycred-hook-simplepress.php:322 ../plugins/mycred-hook-
|
3616 |
-
#: simplepress.php:339 ../plugins/mycred-hook-simplepress.php:357 ..
|
3617 |
-
#: plugins/mycred-hook-buddypress-gallery.php:116 ../plugins/mycred-hook-
|
3618 |
-
#: buddypress.php:621 ../plugins/mycred-hook-buddypress.php:638 ../plugins/mycred-
|
3619 |
-
#: hook-buddypress.php:655 ../plugins/mycred-hook-buddypress.php:672 ..
|
3620 |
-
#: plugins/mycred-hook-buddypress.php:692 ../plugins/mycred-hook-buddypress.php:
|
3621 |
-
#: 705 ../plugins/mycred-hook-buddypress.php:722 ../plugins/mycred-hook-
|
3622 |
-
#: buddypress.php:735 ../plugins/mycred-hook-buddypress.php:752 ../plugins/mycred-
|
3623 |
-
#: hook-buddypress.php:765 ../plugins/mycred-hook-buddypress.php:782 ..
|
3624 |
-
#: plugins/mycred-hook-buddypress.php:799 ../plugins/mycred-hook-buddypress.php:
|
3625 |
-
#: 1429 ../plugins/mycred-hook-buddypress.php:1442 ../plugins/mycred-hook-
|
3626 |
-
#: buddypress.php:1459 ../plugins/mycred-hook-buddypress.php:1476 ..
|
3627 |
-
#: plugins/mycred-hook-buddypress.php:1493 ../plugins/mycred-hook-buddypress.php:
|
3628 |
-
#: 1510 ../plugins/mycred-hook-buddypress.php:1528 ../plugins/mycred-hook-
|
3629 |
-
#: buddypress.php:1541 ../plugins/mycred-hook-buddypress.php:1558 ..
|
3630 |
-
#: plugins/mycred-hook-buddypress.php:1575 ../plugins/mycred-hook-buddypress.php:
|
3631 |
-
#: 1592 ../plugins/mycred-hook-buddypress-links.php:271 ../plugins/mycred-hook-
|
3632 |
-
#: buddypress-links.php:288 ../plugins/mycred-hook-buddypress-links.php:305 ..
|
3633 |
-
#: plugins/mycred-hook-buddypress-links.php:324 ../plugins/mycred-hook-
|
3634 |
-
#: buddypress-links.php:341 ../plugins/mycred-hook-buddypress-links.php:354 ..
|
3635 |
-
#: plugins/mycred-hook-affiliatewp.php:229 ../plugins/mycred-hook-affiliatewp.
|
3636 |
-
#: php:246 ../plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-
|
3637 |
-
#: buddypress-media.php:316 ../plugins/mycred-hook-buddypress-media.php:330 ..
|
3638 |
-
#: plugins/mycred-hook-buddypress-media.php:344 ../plugins/mycred-hook-
|
3639 |
-
#: buddypress-media.php:357 ../plugins/mycred-hook-buddypress-media.php:367 ..
|
3640 |
-
#: plugins/mycred-hook-buddypress-media.php:377 ../plugins/mycred-hook-contact-
|
3641 |
-
#: form7.php:168 ../plugins/mycred-hook-jetpack.php:545 ../plugins/mycred-hook-
|
3642 |
-
#: jetpack.php:558 ../plugins/mycred-hook-bbPress.php:443 ../plugins/mycred-hook-
|
3643 |
-
#: bbPress.php:456 ../plugins/mycred-hook-bbPress.php:473 ../plugins/mycred-hook-
|
3644 |
-
#: bbPress.php:491 ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-
|
3645 |
-
#: bbPress.php:525 ../plugins/mycred-hook-bbPress.php:551 ../plugins/mycred-hook-
|
3646 |
-
#: badgeOS.php:336 ../addons/badges/myCRED-addon-badges.php:949
|
3647 |
-
msgid "Log template"
|
3648 |
-
msgstr "Plantilla de Registro"
|
3649 |
-
|
3650 |
-
#: ../modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:
|
3651 |
-
#: 1024 ../modules/mycred-module-hooks.php:1048 ../modules/mycred-module-hooks.
|
3652 |
-
#: php:1055 ../modules/mycred-module-hooks.php:1125 ../modules/mycred-module-
|
3653 |
-
#: hooks.php:1132 ../modules/mycred-module-hooks.php:1356 ../modules/mycred-
|
3654 |
-
#: module-hooks.php:1496 ../modules/mycred-module-hooks.php:1513 ..
|
3655 |
-
#: modules/mycred-module-hooks.php:1562 ../modules/mycred-module-hooks.php:1751 .
|
3656 |
-
#: ./modules/mycred-module-hooks.php:1768 ../modules/mycred-module-hooks.php:1817
|
3657 |
-
#: ../modules/mycred-module-hooks.php:3638 ../modules/mycred-module-hooks.php:
|
3658 |
-
#: 3667 ../plugins/mycred-hook-invite-anyone.php:216 ../plugins/mycred-hook-
|
3659 |
-
#: invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:237 ..
|
3660 |
-
#: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-wp-
|
3661 |
-
#: postratings.php:165 ../plugins/mycred-hook-wp-postratings.php:184 ..
|
3662 |
-
#: plugins/mycred-hook-gravityforms.php:160 ../plugins/mycred-hook-simplepress.
|
3663 |
-
#: php:304 ../plugins/mycred-hook-simplepress.php:334 ../plugins/mycred-hook-
|
3664 |
-
#: buddypress-gallery.php:111 ../plugins/mycred-hook-buddypress.php:616 ..
|
3665 |
-
#: plugins/mycred-hook-buddypress.php:633 ../plugins/mycred-hook-buddypress.php:
|
3666 |
-
#: 650 ../plugins/mycred-hook-buddypress.php:667 ../plugins/mycred-hook-
|
3667 |
-
#: buddypress.php:684 ../plugins/mycred-hook-buddypress.php:717 ../plugins/mycred-
|
3668 |
-
#: hook-buddypress.php:747 ../plugins/mycred-hook-buddypress.php:777 ..
|
3669 |
-
#: plugins/mycred-hook-buddypress.php:794 ../plugins/mycred-hook-buddypress.php:
|
3670 |
-
#: 1454 ../plugins/mycred-hook-buddypress.php:1471 ../plugins/mycred-hook-
|
3671 |
-
#: buddypress.php:1488 ../plugins/mycred-hook-buddypress.php:1505 ..
|
3672 |
-
#: plugins/mycred-hook-buddypress.php:1523 ../plugins/mycred-hook-buddypress.php:
|
3673 |
-
#: 1553 ../plugins/mycred-hook-buddypress.php:1570 ../plugins/mycred-hook-
|
3674 |
-
#: buddypress.php:1587 ../plugins/mycred-hook-buddypress-links.php:266 ..
|
3675 |
-
#: plugins/mycred-hook-buddypress-links.php:283 ../plugins/mycred-hook-
|
3676 |
-
#: buddypress-links.php:300 ../plugins/mycred-hook-buddypress-links.php:310 ..
|
3677 |
-
#: plugins/mycred-hook-buddypress-links.php:319 ../plugins/mycred-hook-
|
3678 |
-
#: buddypress-links.php:336 ../plugins/mycred-hook-affiliatewp.php:241 ..
|
3679 |
-
#: plugins/mycred-hook-events-manager-light.php:205 ../plugins/mycred-hook-
|
3680 |
-
#: sharethis.php:302 ../plugins/mycred-hook-buddypress-media.php:312 ..
|
3681 |
-
#: plugins/mycred-hook-buddypress-media.php:326 ../plugins/mycred-hook-
|
3682 |
-
#: buddypress-media.php:340 ../plugins/mycred-hook-wp-favorite-posts.php:222 ..
|
3683 |
-
#: plugins/mycred-hook-wp-favorite-posts.php:240 ../plugins/mycred-hook-contact-
|
3684 |
-
#: form7.php:163 ../plugins/mycred-hook-bbPress.php:438 ../plugins/mycred-hook-
|
3685 |
-
#: bbPress.php:468 ../plugins/mycred-hook-bbPress.php:503 ../plugins/mycred-hook-
|
3686 |
-
#: bbPress.php:520 ../plugins/mycred-hook-woocommerce.php:336 ..
|
3687 |
-
#: includes/shortcodes/mycred_hook_table.php:81 ../addons/transfer/myCRED-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|