WC Vendors - Version 1.7.2

Version Description

No Upgrade required at this time.

Download this release

Release Info

Developer digitalchild
Plugin Icon 128x128 WC Vendors
Version 1.7.2
Comparing to
See all releases

Code changes from version 1.7.1 to 1.7.2

changelog.txt CHANGED
@@ -1,5 +1,13 @@
1
  Changelog for WC Vendors
2
 
 
 
 
 
 
 
 
 
3
  Version 1.7.1
4
 
5
  * Fixed: Invalid argument on new orders dashboard page #138
1
  Changelog for WC Vendors
2
 
3
+ Version 1.7.2
4
+
5
+ * Added: Filters for seller tab #141
6
+ * Fixed: URI Too Large Error #143
7
+ * Fixed: Give tax to vendors #142
8
+ * Updated: Spanish Translations #140
9
+ * Added: Persian Translation #139
10
+
11
  Version 1.7.1
12
 
13
  * Fixed: Invalid argument on new orders dashboard page #138
class-wc-vendors.php CHANGED
@@ -7,9 +7,9 @@
7
  * Author: WC Vendors
8
  * Author URI: http://wcvendors.com
9
  *
10
- * Version: 1.7.1
11
  * Requires at least: 4.0.0
12
- * Tested up to: 4.2.0
13
  *
14
  * Text Domain: wcvendors
15
  * Domain Path: /languages/
7
  * Author: WC Vendors
8
  * Author URI: http://wcvendors.com
9
  *
10
+ * Version: 1.7.2
11
  * Requires at least: 4.0.0
12
+ * Tested up to: 4.2.2
13
  *
14
  * Text Domain: wcvendors
15
  * Domain Path: /languages/
classes/admin/class-admin-page.php CHANGED
@@ -503,6 +503,8 @@ class WCV_Admin_Page extends WP_List_Table
503
  {
504
  global $wpdb;
505
 
 
 
506
  $per_page = $this->get_items_per_page( 'commission_per_page', 10 );
507
  $current_page = $this->get_pagenum();
508
 
503
  {
504
  global $wpdb;
505
 
506
+ $_SERVER['REQUEST_URI'] = remove_query_arg( '_wp_http_referer', $_SERVER['REQUEST_URI'] );
507
+
508
  $per_page = $this->get_items_per_page( 'commission_per_page', 10 );
509
  $current_page = $this->get_pagenum();
510
 
classes/class-vendors.php CHANGED
@@ -93,6 +93,7 @@ class WCV_Vendors
93
  $is_vendor = WCV_Vendors::is_vendor( $author );
94
  $commission = $is_vendor ? WCV_Commission::calculate_commission( $product[ 'line_subtotal' ], $product_id, $order ) : 0;
95
  $tax = !empty( $product[ 'line_tax' ] ) ? (float) $product[ 'line_tax' ] : 0;
 
96
  // Check if shipping is enabled
97
  if ( get_option('woocommerce_calc_shipping') === 'no' ) { $shipping = 0; } else {
98
  $shipping = WCV_Shipping::get_shipping_due( $order->id, $product, $author );
@@ -158,7 +159,7 @@ class WCV_Vendors
158
  }
159
 
160
  }
161
-
162
  // Add remainders on end to admin
163
  $discount = $order->get_total_discount();
164
  $shipping = ( $order->order_shipping - $shipping_given );
93
  $is_vendor = WCV_Vendors::is_vendor( $author );
94
  $commission = $is_vendor ? WCV_Commission::calculate_commission( $product[ 'line_subtotal' ], $product_id, $order ) : 0;
95
  $tax = !empty( $product[ 'line_tax' ] ) ? (float) $product[ 'line_tax' ] : 0;
96
+
97
  // Check if shipping is enabled
98
  if ( get_option('woocommerce_calc_shipping') === 'no' ) { $shipping = 0; } else {
99
  $shipping = WCV_Shipping::get_shipping_due( $order->id, $product, $author );
159
  }
160
 
161
  }
162
+
163
  // Add remainders on end to admin
164
  $discount = $order->get_total_discount();
165
  $shipping = ( $order->order_shipping - $shipping_given );
classes/front/class-vendor-shop.php CHANGED
@@ -96,7 +96,9 @@ class WCV_Vendor_Shop
96
 
97
  $seller_info = do_shortcode( $seller_info );
98
  self::$seller_info = '<div class="pv_seller_info">';
 
99
  self::$seller_info .= ( $global_html || $has_html ) ? wpautop( wptexturize( wp_kses_post( $seller_info ) ) ) : sanitize_text_field( $seller_info );
 
100
  self::$seller_info .= '</div>';
101
 
102
  $tabs[ 'seller_info' ] = array(
96
 
97
  $seller_info = do_shortcode( $seller_info );
98
  self::$seller_info = '<div class="pv_seller_info">';
99
+ self::$seller_info .= apply_filters('wcv_before_seller_info_tab', '');
100
  self::$seller_info .= ( $global_html || $has_html ) ? wpautop( wptexturize( wp_kses_post( $seller_info ) ) ) : sanitize_text_field( $seller_info );
101
+ self::$seller_info .= apply_filters('wcv_after_seller_info_tab', '');
102
  self::$seller_info .= '</div>';
103
 
104
  $tabs[ 'seller_info' ] = array(
classes/gateways/PayPal_AdvPayments/paypal_ap.php CHANGED
@@ -435,7 +435,7 @@ class WC_PaypalAP extends WC_Payment_Gateway
435
  $receiverOptions->receiver = $receiverId;
436
  $receiverOptions->invoiceData = new InvoiceData();
437
  $receiverOptions->invoiceData->item = $invoice_items;
438
- $receiverOptions->invoiceData->totalTax = number_format( $receivers_two[$product['vendor_id']['tax']], 2 );
439
  $receiverOptions->invoiceData->totalShipping = number_format( $receivers_two[$product['vendor_id']]['shipping'], 2 );
440
  }
441
 
435
  $receiverOptions->receiver = $receiverId;
436
  $receiverOptions->invoiceData = new InvoiceData();
437
  $receiverOptions->invoiceData->item = $invoice_items;
438
+ $receiverOptions->invoiceData->totalTax = number_format( $receivers_two[$product['vendor_id']]['tax'], 2 );
439
  $receiverOptions->invoiceData->totalShipping = number_format( $receivers_two[$product['vendor_id']]['shipping'], 2 );
440
  }
441
 
languages/wcvendors-es_ES.mo CHANGED
Binary file
languages/wcvendors-es_ES.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WC Vendors\n"
4
- "POT-Creation-Date: 2015-02-17 17:37+1000\n"
5
- "PO-Revision-Date: 2015-02-18 13:19-0400\n"
6
- "Last-Translator: \n"
7
  "Language-Team: WC Vendors <support@wcvendors.com>\n"
8
  "Language: es\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.4\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -17,319 +17,434 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPath-1: ..\n"
19
 
20
- #: classes/admin/class-admin-page.php:28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgid "Vendors shipped"
22
  msgstr "Vendedores han despachado"
23
 
24
- #: classes/admin/class-admin-page.php:51
25
  msgid "Vendors Shipped"
26
  msgstr "Vendedores han despachado"
27
 
28
- #: classes/admin/class-admin-page.php:73
29
- #: classes/admin/class-admin-page.php:133
30
- #: classes/admin/class-admin-reports.php:345
31
- #: classes/admin/class-product-meta.php:148
32
- #: classes/admin/class-product-meta.php:164
33
- #: views/dashboard/reports.php:19
34
  msgid "Commission"
35
  msgstr "Comisión"
36
 
37
- #: classes/admin/class-admin-page.php:252
38
- #: classes/admin/class-admin-reports.php:175
39
- #: views/dashboard/reports.php:17 views/emails/admin-new-order.php:22
40
- #: views/emails/notify-vendor-shipped.php:22
 
41
  msgid "Product"
42
  msgstr "Producto"
43
 
44
- #: classes/admin/class-admin-page.php:253
 
45
  msgid "Order ID"
46
  msgstr "ID de la Orden"
47
 
48
- #: classes/admin/class-admin-page.php:254
49
- #: classes/admin/class-admin-reports.php:176
50
- #: classes/admin/class-product-meta.php:44
51
- #: classes/admin/class-product-meta.php:184
52
- #: classes/admin/class-product-meta.php:220
53
  msgid "Vendor"
54
  msgstr "Vendedor"
55
 
56
- #: classes/admin/class-admin-page.php:255
57
- #: classes/admin/class-admin-reports.php:177
58
- #: classes/admin/class-admin-reports.php:350
59
- #: classes/admin/class-admin-reports.php:374
60
- #: views/dashboard/orders.php:25
 
61
  msgid "Total"
62
  msgstr "Total"
63
 
64
- #: classes/admin/class-admin-page.php:256
65
- #: classes/admin/class-admin-reports.php:179
66
  msgid "Status"
67
  msgstr "Estado"
68
 
69
- #: classes/admin/class-admin-page.php:257
70
- #: classes/front/orders/class-orders.php:216
71
- #: views/dashboard/orders.php:26
 
72
  msgid "Date"
73
  msgstr "Fecha"
74
 
75
- #: classes/admin/class-admin-page.php:294
76
  msgid "Mark paid"
77
  msgstr "Marcar pagado"
78
 
79
- #: classes/admin/class-admin-page.php:295
80
  msgid "Mark due"
81
  msgstr "Marcar adeudado"
82
 
83
- #: classes/admin/class-admin-page.php:296
84
  msgid "Mark reversed"
85
  msgstr "Marcar revertido"
86
 
87
- #: classes/admin/class-admin-page.php:313
 
88
  msgid "Filter"
89
  msgstr "Filtrar"
90
 
91
- #: classes/admin/class-admin-page.php:347
92
  msgid "Show all dates"
93
  msgstr "Todas las fechas"
94
 
95
- #: classes/admin/class-admin-page.php:360
96
  #, php-format
97
  msgid "%1$s %2$d"
98
  msgstr "%1$s %2$d"
99
 
100
- #: classes/admin/class-admin-page.php:386
 
 
 
 
101
  msgid "Commission marked paid."
102
  msgstr "Comisión marcada pagada."
103
 
104
- #: classes/admin/class-admin-page.php:393
105
  msgid "Commission marked due."
106
  msgstr "Comisión marcada adeudada."
107
 
108
- #: classes/admin/class-admin-page.php:400
109
  msgid "Commission marked reversed."
110
  msgstr "Comisión marcada revertida."
111
 
112
- #: classes/admin/class-admin-reports.php:41
113
- #: classes/admin/class-admin-users.php:349
114
- msgid "WC Vendors"
115
- msgstr "WC Vendors"
116
-
117
- #: classes/admin/class-admin-reports.php:44
118
  msgid "Overview"
119
  msgstr "Resumen"
120
 
121
- #: classes/admin/class-admin-reports.php:50
122
  msgid "Commission by vendor"
123
  msgstr "Comisión por vendedor"
124
 
125
- #: classes/admin/class-admin-reports.php:56
126
  msgid "Commission by product"
127
  msgstr "Comisión por producto"
128
 
129
- #: classes/admin/class-admin-reports.php:115
130
- #: views/dashboard/date-picker.php:3
131
  msgid "From:"
132
  msgstr "De:"
133
 
134
- #: classes/admin/class-admin-reports.php:119
135
- #: views/dashboard/date-picker.php:7
136
  msgid "To:"
137
  msgstr "Para:"
138
 
139
- #: classes/admin/class-admin-reports.php:122
140
- #: classes/admin/class-admin-reports.php:283
141
- #: views/dashboard/date-picker.php:12
142
  msgid "Show"
143
  msgstr "Mostrar"
144
 
145
- #: classes/admin/class-admin-reports.php:133
146
  msgid "Total paid in range"
147
  msgstr "Total pagado en el rango"
148
 
149
- #: classes/admin/class-admin-reports.php:136
150
- #: classes/admin/class-admin-reports.php:143
151
- #: classes/admin/class-admin-reports.php:150
152
  msgid "n/a"
153
  msgstr "n/a"
154
 
155
- #: classes/admin/class-admin-reports.php:140
156
  msgid "Total due in range"
157
  msgstr "Total adeudado en el rango"
158
 
159
- #: classes/admin/class-admin-reports.php:147
160
  msgid "Total reversed in range"
161
  msgstr "Total revertido en el rango"
162
 
163
- #: classes/admin/class-admin-reports.php:157
164
  msgid "Recent Commission"
165
  msgstr "Comisión Reciente"
166
 
167
- #: classes/admin/class-admin-reports.php:174
168
- #: classes/front/orders/class-orders.php:208
169
- #: views/dashboard/orders.php:23
170
  msgid "Order"
171
  msgstr "Orden"
172
 
173
- #: classes/admin/class-admin-reports.php:178
174
  msgid "Date &amp; Time"
175
  msgstr "Fecha &amp; Hora"
176
 
177
- #: classes/admin/class-admin-reports.php:187
178
  msgid "N/A"
179
  msgstr "N/A"
180
 
181
- #: classes/admin/class-admin-reports.php:192
182
  msgid "D j M Y \\a\\t h:ia"
183
  msgstr "D j M Y \\a\\t h:ia"
184
 
185
- #: classes/admin/class-admin-reports.php:201
186
  msgid "No commission yet"
187
  msgstr "No hay comisión aún"
188
 
189
- #: classes/admin/class-admin-reports.php:232
190
  msgid "Show:"
191
  msgstr "Mostrar:"
192
 
193
- #: classes/admin/class-admin-reports.php:243
194
- msgid "Year"
195
- msgstr "Año"
196
 
197
- #: classes/admin/class-admin-reports.php:276
 
 
 
 
198
  msgid "Select a vendor&hellip;"
199
  msgstr "Seleccionar un vendedor&hellip;"
200
 
201
- #: classes/admin/class-admin-reports.php:344
202
  msgid "Month"
203
  msgstr "Mes"
204
 
205
- #: classes/admin/class-admin-reports.php:346
206
  msgid "Tax"
207
  msgstr "Impuesto"
208
 
209
- #: classes/admin/class-admin-reports.php:347
210
- #: views/dashboard/orders.php:24 views/orders/orders.php:113
 
211
  msgid "Shipping"
212
  msgstr "Despacho"
213
 
214
- #: classes/admin/class-admin-reports.php:348
215
  msgid "Reversed"
216
  msgstr "Revertido"
217
 
218
- #: classes/admin/class-admin-reports.php:349
219
  msgid "Paid"
220
  msgstr "Pagado"
221
 
222
- #: classes/admin/class-admin-users.php:359
223
  msgid "Enable HTML for the shop description"
224
  msgstr "Permitir HTML en la descripción de la tienda"
225
 
226
- #: classes/admin/class-admin-users.php:365
227
  msgid "Shop name"
228
  msgstr "Nombre de la tienda"
229
 
230
- #: classes/admin/class-admin-users.php:372
231
  msgid "PayPal E-mail"
232
  msgstr "E-mail de PayPal"
233
 
234
- #: classes/admin/class-admin-users.php:373
235
  msgid "required"
236
  msgstr "requerido"
237
 
238
- #: classes/admin/class-admin-users.php:380
239
  msgid "Commission rate"
240
  msgstr "Taza de comisión"
241
 
242
- #: classes/admin/class-admin-users.php:381
243
- #: classes/admin/class-product-meta.php:171
244
  msgid "Leave blank for default"
245
  msgstr "Dejar en blanco para \"por defecto\""
246
 
247
- #: classes/admin/class-admin-users.php:387
248
- #: classes/front/class-vendor-shop.php:103
249
- #: views/dashboard/settings/seller-info.php:3
 
250
  msgid "Seller info"
251
  msgstr "Información del vendedor"
252
 
253
- #: classes/admin/class-admin-users.php:392
254
  msgid "Shop description"
255
  msgstr "Descripción de la tienda"
256
 
257
- #: classes/admin/class-vendor-applicants.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
  msgid "Approve"
259
  msgstr "Aprobar"
260
 
261
- #: classes/admin/class-vendor-applicants.php:27
262
  msgid "Deny"
263
  msgstr "Rechazar"
264
 
265
- #: classes/admin/class-vendor-applicants.php:71
266
  msgid "Vendor has been <b>denied</b>."
267
  msgstr "Vendedor ha sido <b>rechazado</b>"
268
 
269
- #: classes/admin/class-vendor-applicants.php:82
270
  msgid "Vendor has been <b>approved</b>."
271
  msgstr "Vendedor ha sido <b>aprobado</b>."
272
 
273
- #: classes/admin/class-vendor-applicants.php:96
274
  msgid "Pending Vendors"
275
  msgstr "Vendedores Pendientes"
276
 
277
- #: classes/admin/emails/class-emails.php:55
278
- #: classes/admin/emails/class-wc-approve-vendor.php:70
279
  msgid "pending"
280
  msgstr "pendientes"
281
 
282
- #: classes/admin/emails/class-emails.php:57
283
  msgid "approved"
284
  msgstr "aprobados"
285
 
286
- #: classes/admin/emails/class-emails.php:59
287
  msgid "denied"
288
  msgstr "denegados"
289
 
290
- #: classes/admin/emails/class-emails.php:87
291
- #: classes/front/class-vendor-cart.php:60
292
- #: classes/front/class-vendor-shop.php:178
293
  msgid "Sold by: "
294
- msgstr "Ordenar por: "
295
 
296
- #: classes/admin/emails/class-wc-approve-vendor.php:28
297
  msgid "Vendor Application"
298
  msgstr "Postulación del Vendedor"
299
 
300
- #: classes/admin/emails/class-wc-approve-vendor.php:29
301
  msgid "Vendor application will either be approved, denied, or pending."
302
  msgstr "La postulación del Vendedor puede ser aprobada, denegada o pendiente."
303
 
304
- #: classes/admin/emails/class-wc-approve-vendor.php:31
305
  msgid "Application {status}"
306
  msgstr "Postulación {status}"
307
 
308
- #: classes/admin/emails/class-wc-approve-vendor.php:32
309
  msgid "[{blogname}] Your vendor application has been {status}"
310
  msgstr "[{blogname}] Tu postulación a vendedor está {status}"
311
 
312
- #: classes/admin/emails/class-wc-approve-vendor.php:123
313
- #: classes/admin/emails/class-wc-notify-admin.php:129
314
- #: classes/admin/emails/class-wc-notify-shipped.php:163
315
- #: classes/admin/emails/class-wc-notify-vendor.php:230
 
316
  msgid "Enable/Disable"
317
  msgstr "Habilitar/Deshabilitar"
318
 
319
- #: classes/admin/emails/class-wc-approve-vendor.php:125
320
- #: classes/admin/emails/class-wc-notify-admin.php:131
321
- #: classes/admin/emails/class-wc-notify-shipped.php:165
322
- #: classes/admin/emails/class-wc-notify-vendor.php:232
323
  msgid "Enable this email notification"
324
  msgstr "Habilitar notificación por email"
325
 
326
- #: classes/admin/emails/class-wc-approve-vendor.php:129
327
- #: classes/admin/emails/class-wc-notify-admin.php:135
328
  msgid "Recipient(s)"
329
  msgstr "Receptor(es)"
330
 
331
- #: classes/admin/emails/class-wc-approve-vendor.php:131
332
- #: classes/admin/emails/class-wc-notify-admin.php:137
333
  #, php-format
334
  msgid ""
335
  "Enter recipients (comma separated) for this email. Defaults to <code>%s</"
@@ -338,17 +453,17 @@ msgstr ""
338
  "Entrar los receptores (separados por coma) de este email. Por defecto a "
339
  "<code>%s</code>."
340
 
341
- #: classes/admin/emails/class-wc-approve-vendor.php:136
342
- #: classes/admin/emails/class-wc-notify-admin.php:142
343
- #: classes/admin/emails/class-wc-notify-shipped.php:169
344
- #: classes/admin/emails/class-wc-notify-vendor.php:236
345
  msgid "Subject"
346
  msgstr "Asunto"
347
 
348
- #: classes/admin/emails/class-wc-approve-vendor.php:138
349
- #: classes/admin/emails/class-wc-notify-admin.php:144
350
- #: classes/admin/emails/class-wc-notify-shipped.php:171
351
- #: classes/admin/emails/class-wc-notify-vendor.php:238
352
  #, php-format
353
  msgid ""
354
  "This controls the email subject line. Leave blank to use the default "
@@ -357,17 +472,17 @@ msgstr ""
357
  "Esto controla el asunto del email. Dejar en blanco para usar el por defecto: "
358
  "<code>%s</code>."
359
 
360
- #: classes/admin/emails/class-wc-approve-vendor.php:143
361
- #: classes/admin/emails/class-wc-notify-admin.php:149
362
- #: classes/admin/emails/class-wc-notify-shipped.php:176
363
- #: classes/admin/emails/class-wc-notify-vendor.php:243
364
  msgid "Email Heading"
365
  msgstr "Título del Email"
366
 
367
- #: classes/admin/emails/class-wc-approve-vendor.php:145
368
- #: classes/admin/emails/class-wc-notify-admin.php:151
369
- #: classes/admin/emails/class-wc-notify-shipped.php:178
370
- #: classes/admin/emails/class-wc-notify-vendor.php:245
371
  #, php-format
372
  msgid ""
373
  "This controls the main heading contained within the email notification. "
@@ -376,189 +491,180 @@ msgstr ""
376
  "Esto controla el título principal de la notificación por email. Dejar en "
377
  "blanco para utilizar el por defecto: <code>%s</code>."
378
 
379
- #: classes/admin/emails/class-wc-approve-vendor.php:150
380
- #: classes/admin/emails/class-wc-notify-admin.php:156
381
- #: classes/admin/emails/class-wc-notify-shipped.php:183
382
- #: classes/admin/emails/class-wc-notify-vendor.php:250
383
  msgid "Email type"
384
  msgstr "Tipo de email"
385
 
386
- #: classes/admin/emails/class-wc-approve-vendor.php:152
387
- #: classes/admin/emails/class-wc-notify-admin.php:158
388
- #: classes/admin/emails/class-wc-notify-shipped.php:185
389
- #: classes/admin/emails/class-wc-notify-vendor.php:252
390
  msgid "Choose which format of email to send."
391
  msgstr "Elegir cuál formato de email se mandará."
392
 
393
- #: classes/admin/emails/class-wc-approve-vendor.php:156
394
- #: classes/admin/emails/class-wc-notify-admin.php:162
395
- #: classes/admin/emails/class-wc-notify-shipped.php:189
396
- #: classes/admin/emails/class-wc-notify-vendor.php:256
397
  msgid "Plain text"
398
  msgstr "Texto plano"
399
 
400
- #: classes/admin/emails/class-wc-approve-vendor.php:157
401
- #: classes/admin/emails/class-wc-notify-admin.php:163
402
- #: classes/admin/emails/class-wc-notify-shipped.php:190
403
- #: classes/admin/emails/class-wc-notify-vendor.php:257
404
  msgid "HTML"
405
  msgstr "HTML"
406
 
407
- #: classes/admin/emails/class-wc-approve-vendor.php:158
408
- #: classes/admin/emails/class-wc-notify-admin.php:164
409
- #: classes/admin/emails/class-wc-notify-shipped.php:191
410
- #: classes/admin/emails/class-wc-notify-vendor.php:258
411
  msgid "Multipart"
412
  msgstr "Multiparte"
413
 
414
- #: classes/admin/emails/class-wc-notify-admin.php:28
415
  msgid "New Vendor Product"
416
  msgstr "Nuevo Producto del Vendedor"
417
 
418
- #: classes/admin/emails/class-wc-notify-admin.php:29
419
  msgid "New order emails are sent when a new product is submitted by a vendor"
420
  msgstr ""
421
  "Nuevos emails de pedido se envían cuando un nuevo producto es ingresado por "
422
  "un vendedor"
423
 
424
- #: classes/admin/emails/class-wc-notify-admin.php:31
425
  msgid "New product submitted: {product_name}"
426
  msgstr "Nuevo producto ingresado: {product_name}"
427
 
428
- #: classes/admin/emails/class-wc-notify-admin.php:32
429
  msgid "[{blogname}] New product submitted by {vendor_name} - {product_name}"
430
  msgstr ""
431
  "[{blogname}] Nuevo producto ingresado por {vendor_name} - {product_name}"
432
 
433
- #: classes/admin/emails/class-wc-notify-shipped.php:28
434
  msgid "Vendor has shipped"
435
  msgstr "Vendedor ha despachado"
436
 
437
- #: classes/admin/emails/class-wc-notify-shipped.php:29
438
  msgid ""
439
  "An email is sent when a vendor has marked one of their orders as shipped."
440
  msgstr ""
441
  "Un email es enviado cada vez que un vendedor marca una orden como despachada."
442
 
443
- #: classes/admin/emails/class-wc-notify-shipped.php:31
444
  msgid "Your order has been shipped"
445
  msgstr "Tu orden ha sido despachada"
446
 
447
- #: classes/admin/emails/class-wc-notify-shipped.php:32
448
  msgid ""
449
  "[{blogname}] Your order has been shipped ({order_number}) - {order_date}"
450
  msgstr ""
451
  "[{blogname}] Tu orden ha sido despachada ({order_number}) - {order_date}"
452
 
453
- #: classes/admin/emails/class-wc-notify-shipped.php:112
454
  msgid "Subtotal:"
455
  msgstr "Subtotal:"
456
 
457
- #: classes/admin/emails/class-wc-notify-vendor.php:27
458
  msgid "Notify vendors"
459
  msgstr "Notificar vendedores"
460
 
461
- #: classes/admin/emails/class-wc-notify-vendor.php:28
462
  msgid "New order emails are sent when an order is received/paid by a customer."
463
  msgstr ""
464
  "Nuevos emails de pedido son enviados cada vez que una orden es recibida/"
465
  "pagada por un usuario."
466
 
467
- #: classes/admin/emails/class-wc-notify-vendor.php:30
468
  msgid "New customer order"
469
  msgstr "Nueva orden de cliente"
470
 
471
- #: classes/admin/emails/class-wc-notify-vendor.php:31
472
  msgid "[{blogname}] New customer order ({order_number}) - {order_date}"
473
  msgstr "[{blogname}] Nueva orden de cliente ({order_number}) - {order_date}"
474
 
475
- #: classes/admin/emails/class-wc-notify-vendor.php:103
476
  msgid "Commission Subtotal:"
477
  msgstr "Subtotal de Comisión:"
478
 
479
- #: classes/admin/emails/class-wc-notify-vendor.php:110
480
  msgid "Shipping Subtotal:"
481
  msgstr "Subtotal Despacho:"
482
 
483
- #: classes/admin/settings/classes/sf-class-format-options.php:211
484
- #: classes/admin/settings/classes/sf-class-settings.php:773
485
  msgid "Select a page..."
486
  msgstr "Seleccionar una página..."
487
 
488
- #: classes/admin/settings/classes/sf-class-settings.php:153
489
- #: views/dashboard/settings/settings.php:1
490
  msgid "Settings"
491
  msgstr "Ajustes"
492
 
493
- #: classes/admin/settings/classes/sf-class-settings.php:297
494
  msgid "Could not load settings at: "
495
  msgstr "No se pueden cargar ajustes en: "
496
 
497
- #: classes/admin/settings/classes/sf-class-settings.php:297
498
  msgid "Error - WP Settings Framework"
499
  msgstr "Error - WP Settings Framework"
500
 
501
- #: classes/admin/settings/classes/sf-class-settings.php:363
502
- #: classes/front/dashboard/class-vendor-dashboard.php:96
503
- msgid "Settings saved."
504
- msgstr "Ajustes guardados."
505
-
506
- #: classes/admin/settings/classes/sf-class-settings.php:479
507
  #, php-format
508
  msgid "Save %s changes"
509
  msgstr "Guardar %s cambios"
510
 
511
- #: classes/admin/settings/sf-options.php:4
512
- msgid "General"
513
- msgstr "General"
514
-
515
- #: classes/admin/settings/sf-options.php:5
516
  msgid "General options"
517
  msgstr "Opciones generales"
518
 
519
- #: classes/admin/settings/sf-options.php:5
520
- #: classes/admin/settings/sf-options.php:45
521
- #: classes/admin/settings/sf-options.php:223
522
  msgid " "
523
  msgstr ""
524
 
525
- #: classes/admin/settings/sf-options.php:8
526
  msgid "Default commission (%)"
527
  msgstr "Comisión por defecto (%)"
528
 
529
- #: classes/admin/settings/sf-options.php:9
530
  msgid ""
531
- "The default rate the vendor receives for each product. If a product has a "
532
  "commission rate already set, this value will be ignored for that product."
533
  msgstr ""
534
- "La tarifa por defecto que cada vendedor recibe por producto. Si un producto "
535
- "tiene una tarifa de comisión configurada, el valor será ignorado para ese "
536
- "producto."
537
 
538
- #: classes/admin/settings/sf-options.php:20
539
  msgid "Registration"
540
  msgstr "Registro"
541
 
542
- #: classes/admin/settings/sf-options.php:21
543
  msgid "Allow users or guests to apply to become a vendor"
544
  msgstr "Permitir a los usuarios o visitas solicitar ser vendedores"
545
 
546
- #: classes/admin/settings/sf-options.php:22
547
  msgid ""
548
  "This will show a checkbox on the My Account page's registration form asking "
549
  "if the user would like to apply to be a vendor. Also, on the Vendor "
550
- "Dashboard, users can apply to become a vendor."
551
  msgstr ""
552
- "Esto va a mostrar un checkbox en el formulario de registro de la página de "
553
- "Mi Cuenta, preguntando al usuario si quiere solicitar ser un vendedor. "
554
- "También, en el Dashboard del Vendedor, los usuarios pueden postular para "
555
- "convertirse en vendedor."
556
 
557
- #: classes/admin/settings/sf-options.php:29
558
  msgid "Approve vendor applications manually"
559
  msgstr "Aprobar las postulaciones de vendedor automáticamente"
560
 
561
- #: classes/admin/settings/sf-options.php:30
562
  msgid ""
563
  "With this unchecked, all vendor applications are automatically accepted. "
564
  "Otherwise, you must approve each manually."
@@ -566,101 +672,144 @@ msgstr ""
566
  "Si no está chequeado, todas las postulaciones a vendedores se aprobarán "
567
  "automáticamente. De lo contrario, debes aprobarlas manualmente."
568
 
569
- #: classes/admin/settings/sf-options.php:37
570
  msgid "Taxes"
571
  msgstr "Impuestos"
572
 
573
- #: classes/admin/settings/sf-options.php:38
574
  msgid "Give vendors any tax collected per-product"
575
  msgstr "Dar a los vendedores todo el impuesto recolectado por producto"
576
 
577
- #: classes/admin/settings/sf-options.php:39
 
 
 
 
 
 
 
 
 
 
578
  msgid ""
579
- "The tax collected on a vendor's product will be given to him in its entirety"
580
- msgstr "El impuesto recolectado por producto será dado completo al vendedor."
581
 
582
- #: classes/admin/settings/sf-options.php:45
583
  msgid "Shop options"
584
  msgstr "Opciones de la tienda"
585
 
586
- #: classes/admin/settings/sf-options.php:48
587
  msgid "Shop HTML"
588
  msgstr "HTML de la tienda"
589
 
590
- #: classes/admin/settings/sf-options.php:49
591
- msgid "Enable HTML for a vendor's shop description by default"
592
- msgstr "Habilitar por defecto HTML para la descripción de la tienda"
 
 
 
 
 
593
 
594
- #: classes/admin/settings/sf-options.php:56
595
  msgid "Vendor shop page"
596
  msgstr "Página de la Tienda del Vendedor"
597
 
598
- #: classes/admin/settings/sf-options.php:57
599
  msgid "Eg: <code>yoursite.com/[your_setting_here]/[vendor_name_here]</code>"
600
  msgstr "Ej: <code>tusitio.com/[your_setting_here]/[vendor_name_here]</code>"
601
 
602
- #: classes/admin/settings/sf-options.php:64
603
  msgid "Shop Headers"
604
  msgstr "Encabezados de la Tienda"
605
 
606
- #: classes/admin/settings/sf-options.php:65
607
  msgid "Enable vendor shop headers"
608
  msgstr "Habilitar encabezados de la Tienda del Vendedor"
609
 
610
- #: classes/admin/settings/sf-options.php:66
611
  msgid ""
612
- "This will override the HTML Shop description output on product-archive pages."
 
 
613
  msgstr ""
614
- "Esto va a sobrescribir el HTML de la descripción de la Tienda en las páginas "
615
- "de producto-archivo."
 
 
616
 
617
- #: classes/admin/settings/sf-options.php:72
618
- #: classes/admin/settings/sf-options.php:198
619
- msgid "Products"
620
- msgstr "Productos"
 
 
 
 
 
 
 
 
621
 
622
- #: classes/admin/settings/sf-options.php:73
 
 
 
 
 
 
 
 
 
 
623
  msgid "Product Add Page"
624
  msgstr "Página de Agregar Producto"
625
 
626
- #: classes/admin/settings/sf-options.php:73
627
  msgid "Configure what to hide from all vendors when adding a product"
628
  msgstr ""
629
  "Configurar qué esconder de todos los vendedores cuando se agrega un producto"
630
 
631
- #: classes/admin/settings/sf-options.php:76
632
  msgid "Left side panel"
633
  msgstr "Panel de la izquierda"
634
 
635
- #: classes/admin/settings/sf-options.php:77
636
- msgid "Hide these areas of the add product page for vendors"
637
- msgstr "Esconder estas áreas de la Página de Agregar Producto"
 
 
 
 
638
 
639
- #: classes/admin/settings/sf-options.php:91
640
  msgid "Types"
641
  msgstr "Tipos"
642
 
643
- #: classes/admin/settings/sf-options.php:92
644
- msgid "Hide these product types from the vendor"
645
- msgstr "Esconder estos tipos de productos para el vendedor"
 
646
 
647
- #: classes/admin/settings/sf-options.php:105
648
  msgid "Type options"
649
  msgstr "Opciones de tipos"
650
 
651
- #: classes/admin/settings/sf-options.php:106
652
- msgid "Hide these product options from the vendor"
653
- msgstr "Esconder estas opciones de productos para el vendedor"
 
654
 
655
- #: classes/admin/settings/sf-options.php:117
656
  msgid "Miscellaneous"
657
  msgstr "Misceláneos"
658
 
659
- #: classes/admin/settings/sf-options.php:129
660
  msgid "Stylesheet"
661
  msgstr "Hojas de estilos"
662
 
663
- #: classes/admin/settings/sf-options.php:130
664
  msgid ""
665
  "You can add CSS in this textarea, which will be loaded on the product add/"
666
  "edit page for vendors."
@@ -668,57 +817,48 @@ msgstr ""
668
  "Puedes agregar CSS en esta área, éste va a ser cargado en la página de "
669
  "agregar/editar productos del vendedor."
670
 
671
- #: classes/admin/settings/sf-options.php:136
672
- msgid "Capabilities"
673
- msgstr "Capacidades"
674
-
675
- #: classes/admin/settings/sf-options.php:137
676
  msgid "Permissions"
677
  msgstr "Permisos"
678
 
679
- #: classes/admin/settings/sf-options.php:137
680
  msgid "General permissions used around the shop"
681
  msgstr "Permisos generales usados en la tienda"
682
 
683
- #: classes/admin/settings/sf-options.php:140
684
- #: classes/class-install.php:205 views/dashboard/orders.php:18
685
- msgid "Orders"
686
- msgstr "Órdenes"
687
-
688
- #: classes/admin/settings/sf-options.php:141
689
  msgid "View orders"
690
  msgstr "Ver órdenes"
691
 
692
- #: classes/admin/settings/sf-options.php:142
693
  msgid "Show customer details such as email, address, name, etc, for each order"
694
  msgstr ""
695
  "Mostrar detalles del cliente como email, dirección y nombre para cada orden"
696
 
697
- #: classes/admin/settings/sf-options.php:149
698
  msgid "View comments"
699
  msgstr "Ver comentarios"
700
 
701
- #: classes/admin/settings/sf-options.php:150
702
  msgid "View all vendor comments for an order on the frontend"
703
  msgstr ""
704
  "Ver todos los comentarios de los vendedores para una orden en el frontend"
705
 
706
- #: classes/admin/settings/sf-options.php:157
707
  msgid "Submit comments"
708
  msgstr "Enviar comentarios"
709
 
710
- #: classes/admin/settings/sf-options.php:158
711
  msgid ""
712
  "Submit comments for an order on the frontend. Eg, tracking ID for a product"
713
  msgstr ""
714
  "Enviar comentarios de una orden en el frontend. Eg: ID de tracking del "
715
  "producto"
716
 
717
- #: classes/admin/settings/sf-options.php:165
718
  msgid "View email addresses"
719
  msgstr "Ver dirección de email"
720
 
721
- #: classes/admin/settings/sf-options.php:166
722
  msgid ""
723
  "While viewing order details on the frontend, you can disable or enable email "
724
  "addresses"
@@ -726,23 +866,23 @@ msgstr ""
726
  "Al ver los detalles de la orden en el frontend se puede habilitar o "
727
  "deshabitar la dirección de email"
728
 
729
- #: classes/admin/settings/sf-options.php:173
730
  msgid "Export a CSV file of orders for a product"
731
  msgstr "Exportar un archivo CSV de las órdenes de productos"
732
 
733
- #: classes/admin/settings/sf-options.php:174
734
  msgid "Vendors could export orders for a product on the frontend"
735
  msgstr "Los vendedores pueden exportar ordenes de un producto en el frontend"
736
 
737
- #: classes/admin/settings/sf-options.php:181
738
  msgid "Reports"
739
  msgstr "Reportes"
740
 
741
- #: classes/admin/settings/sf-options.php:182
742
  msgid "View backend sales reports"
743
  msgstr "Ver reportes de venta en el backend"
744
 
745
- #: classes/admin/settings/sf-options.php:183
746
  msgid ""
747
  "Graphs and tables via the Reports page in backend. The reports will only "
748
  "display sales data that pertain to their products"
@@ -750,11 +890,11 @@ msgstr ""
750
  "Gráficos y tablas vía la página de Reportes en el backend. Los reportes solo "
751
  "mostrarán datos de ventas que perteneces a sus productos."
752
 
753
- #: classes/admin/settings/sf-options.php:190
754
  msgid "View Frontend sales reports"
755
  msgstr "Ver reportes de venta en el Frontend"
756
 
757
- #: classes/admin/settings/sf-options.php:191
758
  msgid ""
759
  "Sales table on the frontend on the My Account page. The table will only "
760
  "display sales data that pertain to their products"
@@ -762,11 +902,11 @@ msgstr ""
762
  "Tabla de ventas en el frontend en la página de Mi Cuenta. La tabla va a "
763
  "mostrar sólo datos de sus productos."
764
 
765
- #: classes/admin/settings/sf-options.php:199
766
  msgid "Submit products"
767
  msgstr "Enviar productos"
768
 
769
- #: classes/admin/settings/sf-options.php:200
770
  msgid ""
771
  "Vendors could submit a product through the backend, and an admin would "
772
  "approve or deny it"
@@ -774,11 +914,11 @@ msgstr ""
774
  "Los vendedores pueden enviar un producto a través del backend, un "
775
  "administrador pueden aprobarlos o rechazarlos."
776
 
777
- #: classes/admin/settings/sf-options.php:207
778
  msgid "Edit live products"
779
  msgstr "Editar productos en publicados"
780
 
781
- #: classes/admin/settings/sf-options.php:208
782
  msgid ""
783
  "Vendors could edit an approved product after it has already gone live. There "
784
  "is no approval or review after editing a live product. This could be "
@@ -788,11 +928,11 @@ msgstr ""
788
  "publicado. No es necesario la aprobación o revisión. Esto puede ser "
789
  "peligroso con vendedores maliciosos, tomar con cuidado."
790
 
791
- #: classes/admin/settings/sf-options.php:215
792
  msgid "Submit products live without requiring approval"
793
  msgstr "Publicar productos sin necesitar aprobación"
794
 
795
- #: classes/admin/settings/sf-options.php:216
796
  msgid ""
797
  "Vendors can submit products without review or approval from a shop admin. "
798
  "This could be dangerous with malicious vendors, so take caution."
@@ -801,19 +941,19 @@ msgstr ""
801
  "revisión. Esto puede ser peligroso con vendedores maliciosos, tomar con "
802
  "cuidado."
803
 
804
- #: classes/admin/settings/sf-options.php:222
805
  msgid "Pages"
806
  msgstr "Páginas"
807
 
808
- #: classes/admin/settings/sf-options.php:223
809
  msgid "Page configuration"
810
  msgstr "Configuración de la página"
811
 
812
- #: classes/admin/settings/sf-options.php:226
813
  msgid "Vendor dashboard"
814
  msgstr "Dashboard del vendedor"
815
 
816
- #: classes/admin/settings/sf-options.php:227
817
  msgid ""
818
  "Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</"
819
  "code><br/>By default, My Account > Vendor Dashboard should have the "
@@ -822,11 +962,11 @@ msgstr ""
822
  "Elegir la página que tiene el shortcode <code>[wcv_vendor_dashboard]</"
823
  "code><br/> Por defecto es Mi Cuenta > Dashboard del Vendedor"
824
 
825
- #: classes/admin/settings/sf-options.php:234
826
  msgid "Shop settings"
827
  msgstr "Ajustes de la Tienda"
828
 
829
- #: classes/admin/settings/sf-options.php:235
830
  msgid ""
831
  "Choose the page that has the shortcode <code>[wcv_shop_settings]</code><br/"
832
  ">These are the shop settings a vendor can configure."
@@ -834,11 +974,11 @@ msgstr ""
834
  "Elegir la página que tiene el shortcode <code>[wcv_shop_settings]</code><br/"
835
  ">Estos son los ajustes de la tienda que el vendedor puede configurar"
836
 
837
- #: classes/admin/settings/sf-options.php:242
838
  msgid "Orders page"
839
  msgstr "Página de órdenes"
840
 
841
- #: classes/admin/settings/sf-options.php:243
842
  msgid ""
843
  "Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By "
844
  "default, My Account > Orders should have the shortcode."
@@ -846,11 +986,11 @@ msgstr ""
846
  "Elegir la página que tiene el shorcode <code>[wcv_orders]</code><br/>Por "
847
  "defecto es Mi Cuenta > Órdenes"
848
 
849
- #: classes/admin/settings/sf-options.php:250
850
  msgid "Vendor terms"
851
  msgstr "Condiciones de los vendedores"
852
 
853
- #: classes/admin/settings/sf-options.php:251
854
  msgid ""
855
  "These terms are shown to a user when submitting an application to become a "
856
  "vendor.<br/>If left blank, no terms will be shown to the applicant."
@@ -858,20 +998,20 @@ msgstr ""
858
  "Estas condiciones se muestran a un usuario cuando envía una postulación a "
859
  "ser vendedor.<br/>Si se deja en blanco no se mostrará ninguna."
860
 
861
- #: classes/admin/settings/sf-options.php:269
862
  msgid "Payments"
863
  msgstr "Pagos"
864
 
865
- #: classes/admin/settings/sf-options.php:271
866
  msgid "User payments"
867
  msgstr "Pagos de Usuarios"
868
 
869
- #: classes/admin/settings/sf-options.php:272
870
  #, php-format
871
  msgid "Total commission currently due: %s. <a href=\"%s\">View details</a>."
872
  msgstr "Deuda total de comisiones: %s. <a href=\"%s\">Ver detalles</a>."
873
 
874
- #: classes/admin/settings/sf-options.php:273
875
  #, php-format
876
  msgid ""
877
  "Make sure you update your PayPal Adaptive Payments settings <a href=\"%s"
@@ -880,58 +1020,59 @@ msgstr ""
880
  "Asegúrate de actualizar tus ajustes de PayPal Adaptive Payments <a href=\"%s"
881
  "\">acá</a>."
882
 
883
- #: classes/admin/settings/sf-options.php:277
884
  msgid "Instant pay"
885
  msgstr "Pago instantáneo"
886
 
887
- #: classes/admin/settings/sf-options.php:278
888
  msgid "Instantly pay vendors their commission when an order is made"
889
  msgstr ""
890
  "Pagar instantáneamente la comisión a los vendedores cuando se hace una orden"
891
 
892
- #: classes/admin/settings/sf-options.php:279
893
  msgid ""
894
  "For this to work, customers must checkout with the PayPal Adaptive Payments "
895
- "gateway. Using other gateways will not pay vendors instantly"
896
  msgstr ""
897
- "Para que esto funcione los clientes debe pagar por PayPal Adaptive Payments. "
898
- "No se podrá pagar automáticamente a los vendedores si es de otra forma."
 
899
 
900
- #: classes/admin/settings/sf-options.php:286
901
  msgid "Payment schedule"
902
  msgstr "Calendario de pagos"
903
 
904
- #: classes/admin/settings/sf-options.php:287
905
  msgid "Note: Schedule will only work if instant pay is unchecked"
906
  msgstr ""
907
  "Nota: El calendario sólo va a funcionar si el \"Pago instantáneo\" no está "
908
  "chequeado"
909
 
910
- #: classes/admin/settings/sf-options.php:292
911
  msgid "Weekly"
912
  msgstr "Semanal"
913
 
914
- #: classes/admin/settings/sf-options.php:293
915
  msgid "Biweekly"
916
  msgstr "Bisemanal"
917
 
918
- #: classes/admin/settings/sf-options.php:294
919
  msgid "Monthly"
920
  msgstr "Mensual"
921
 
922
- #: classes/admin/settings/sf-options.php:295
923
  msgid "Manual"
924
  msgstr "Manual"
925
 
926
- #: classes/admin/settings/sf-options.php:296
927
  msgid "Now"
928
  msgstr "Ahora"
929
 
930
- #: classes/admin/settings/sf-options.php:301
931
  msgid "Email notification"
932
  msgstr "Notificaciones por email"
933
 
934
- #: classes/admin/settings/sf-options.php:302
935
  msgid ""
936
  "Send the WooCommerce admin an email each time a payment has been made via "
937
  "the payment schedule options above"
@@ -939,67 +1080,99 @@ msgstr ""
939
  "Mandar un mail al administrador de WooCommerce cada vez que se realice un "
940
  "pago por medio del Caledario de Pagos"
941
 
942
- #: classes/class-cron.php:87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
943
  #, php-format
944
  msgid "Payment total: %s"
945
  msgstr "Total de pago: %s"
946
 
947
- #: classes/class-cron.php:148
948
  msgid "Once Weekly"
949
  msgstr "Semanal"
950
 
951
- #: classes/class-cron.php:153
952
  msgid "Once every two weeks"
953
  msgstr "Bisemanal"
954
 
955
- #: classes/class-cron.php:158
956
  msgid "Once a month"
957
  msgstr "Mensual"
958
 
959
- #: classes/class-install.php:99 classes/class-install.php:253
960
  msgid "Pending Vendor"
961
  msgstr "Vendedor Pendiente"
962
 
963
- #: classes/class-install.php:204
964
  msgid "Vendor Dashboard"
965
  msgstr "Dashboard del Vendedor"
966
 
967
- #: classes/class-install.php:206
968
- msgid "Shop Settings"
969
- msgstr "Ajustes de Tienda"
970
-
971
- #: classes/front/class-vendor-cart.php:41
972
- #: classes/front/class-vendor-shop.php:255
973
  msgid "Sold by"
974
  msgstr "Vendido por"
975
 
976
- #: classes/front/dashboard/class-vendor-dashboard.php:41
977
- msgid "Order unmarked shipped."
978
- msgstr "Desmarcar como orden enviada."
979
-
980
- #: classes/front/dashboard/class-vendor-dashboard.php:51
981
  msgid "Order marked shipped."
982
  msgstr "Marcar como orden enviada."
983
 
984
- #: classes/front/dashboard/class-vendor-dashboard.php:69
985
- msgid "Your PayPal address is not a valid email address."
986
- msgstr "Tu dirección de PayPal no es una dirección de email válida."
 
 
 
987
 
988
- #: classes/front/dashboard/class-vendor-dashboard.php:78
989
- msgid "That shop name is already taken. Your shop name must be unique."
990
- msgstr "Ese nombre de tienda ya está tomado. Tu tienda debe ser única."
 
991
 
992
- #: classes/front/orders/class-export-csv.php:37
993
  msgid "Extra data"
994
  msgstr "Data adicional"
995
 
996
- #: classes/front/orders/class-export-csv.php:38
997
- #: views/dashboard/reports.php:18 views/emails/admin-new-order.php:23
998
- #: views/emails/notify-vendor-shipped.php:23
 
999
  msgid "Quantity"
1000
  msgstr "Cantidad"
1001
 
1002
- #: classes/front/orders/class-orders.php:107
1003
  msgid ""
1004
  "You haven't selected a product's orders to view! Please go back to the "
1005
  "Vendor Dashboard and click Show Orders on the product you'd like to view."
@@ -1008,83 +1181,74 @@ msgstr ""
1008
  "Dashboard del Vendedor y haz click en Mostrar Órdenes en el producto que "
1009
  "quieres ver."
1010
 
1011
- #: classes/front/orders/class-orders.php:111
1012
  msgid "No orders."
1013
  msgstr "No hay órdenes."
1014
 
1015
- #: classes/front/orders/class-orders.php:144
1016
- #: classes/front/orders/class-orders.php:145
1017
- msgid "Tracking number"
1018
- msgstr "Número de Tracking"
1019
-
1020
- #: classes/front/orders/class-orders.php:147
1021
- msgid "Success. Your tracking number has been updated."
1022
- msgstr "Éxito. Tu número de tracking ha sido actualizado."
1023
-
1024
- #: classes/front/orders/class-orders.php:209
1025
  msgid "Product Title"
1026
  msgstr "Título del Producto"
1027
 
1028
- #: classes/front/orders/class-orders.php:210
1029
  msgid "Full name"
1030
  msgstr "Nombre completo"
1031
 
1032
- #: classes/front/orders/class-orders.php:211
1033
  msgid "Address"
1034
  msgstr "Dirección"
1035
 
1036
- #: classes/front/orders/class-orders.php:212
1037
  msgid "City"
1038
  msgstr "Ciudad"
1039
 
1040
- #: classes/front/orders/class-orders.php:213
1041
  msgid "State"
1042
  msgstr "Estado"
1043
 
1044
- #: classes/front/orders/class-orders.php:214
1045
  msgid "Zip"
1046
  msgstr "Zip"
1047
 
1048
- #: classes/front/orders/class-orders.php:215
1049
  msgid "Email address"
1050
  msgstr "Dirección de email"
1051
 
1052
- #: classes/front/orders/class-submit-comment.php:41
1053
  msgid "You've left the comment field empty!"
1054
  msgstr "¡Has dejado el campo de comentarios vacío!"
1055
 
1056
- #: classes/front/orders/class-submit-comment.php:63
1057
  msgid "Success. The customer has been notified of your comment."
1058
  msgstr "Éxito. El cliente ha sido notificado de tu comentario."
1059
 
1060
- #: classes/front/signup/class-vendor-signup.php:44
1061
- #: views/dashboard/denied.php:22
1062
  msgid "Apply to become a vendor? "
1063
- msgstr "Postula a ser un vendedor "
1064
 
1065
- #: classes/front/signup/class-vendor-signup.php:53
1066
- #: views/dashboard/denied.php:33
1067
  #, php-format
1068
  msgid "I have read and accepted the <a href=\"%s\">terms and conditions</a>"
1069
  msgstr "Leí y acepto los <a href=\"%s\">términos y condiciones</a>"
1070
 
1071
- #: classes/front/signup/class-vendor-signup.php:87
1072
  msgid "Application denied. You are an administrator."
1073
  msgstr "Aplicación denegada. Eres un administrador."
1074
 
1075
- #: classes/front/signup/class-vendor-signup.php:89
1076
  msgid "Your application has been submitted."
1077
- msgstr "La postulación ha sido enviada."
1078
 
1079
- #: classes/front/signup/class-vendor-signup.php:125
1080
  msgid "You must accept the terms and conditions to become a vendor."
1081
  msgstr "Debes aceptar los términos y condiciones para postular a vendedor."
1082
 
1083
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:43
1084
  msgid "PayPal Adaptive Payments"
1085
  msgstr "PayPal Adaptive Payments"
1086
 
1087
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:119
1088
  #, php-format
1089
  msgid ""
1090
  "Something went wrong. Response from PayPal invalidated this order. Status: "
@@ -1092,43 +1256,45 @@ msgid ""
1092
  msgstr ""
1093
  "Algo salió mal. La respuesta de PayPal invalidó esta orden. Estado: %s."
1094
 
1095
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:124
1096
  msgid "IPN payment completed"
1097
  msgstr "Pago IPN completado"
1098
 
1099
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:146
1100
  msgid "Enable PayPal Adaptive Payments"
1101
  msgstr "Habilitar PayPal Adaptive Payments"
1102
 
1103
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:152
1104
  msgid "Method Title"
1105
  msgstr "Título del Método"
1106
 
1107
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:153
 
1108
  msgid "This controls the title which the user sees during checkout."
1109
  msgstr "Esto controla el título que el usuario verá durante el checkout."
1110
 
1111
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:154
1112
  msgid "PayPal"
1113
  msgstr "PayPal"
1114
 
1115
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:159
 
1116
  msgid "Description"
1117
  msgstr "Descripción"
1118
 
1119
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:160
1120
  msgid "This controls the description which the user sees during checkout."
1121
  msgstr "Esto controla la descripción que el usuario verá durante el checkout."
1122
 
1123
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:161
1124
  msgid "Pay via PayPal!"
1125
  msgstr "¡Pagar vía PayPal!"
1126
 
1127
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:172
1128
  msgid "Live Credentials"
1129
  msgstr "Credenciales Publicadas"
1130
 
1131
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:174
1132
  #, php-format
1133
  msgid ""
1134
  "You must have an <a href=\"%s\">Application ID</a> to process live "
@@ -1137,44 +1303,44 @@ msgstr ""
1137
  "Debes tener un <a href=\"%s\">ID de postulación</a> para procesar "
1138
  "transacciones. No se necesita uno para probar en modo Sandbox."
1139
 
1140
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:179
1141
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:213
1142
  msgid "PayPal Email"
1143
  msgstr "Email de PayPal"
1144
 
1145
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:180
1146
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:214
1147
  msgid "The email address main payments should go to."
1148
  msgstr "El email es la dirección principal a la que deben ir los pagos"
1149
 
1150
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:185
1151
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:219
1152
  msgid "API Username"
1153
  msgstr "API Nombre de Usuario"
1154
 
1155
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:190
1156
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:224
1157
  msgid "API Password"
1158
  msgstr "API Contraseña"
1159
 
1160
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:195
1161
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:229
1162
  msgid "API Signature"
1163
  msgstr "API Firma"
1164
 
1165
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:200
1166
  msgid "Application ID"
1167
  msgstr "ID de Postuación"
1168
 
1169
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:202
1170
  msgid "Only required when doing live transactions."
1171
  msgstr "Solo requerida para hacer transacciones."
1172
 
1173
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:206
1174
  msgid "Sandbox Credentials"
1175
  msgstr "Credenciales de Sandbox"
1176
 
1177
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:208
1178
  #, php-format
1179
  msgid ""
1180
  "You can signup for a sandbox developer account <a href=\"%s\">here</a>. You "
@@ -1184,19 +1350,19 @@ msgstr ""
1184
  "\">aquí</a>. Necesitas una cuenta de Developer si quieres habilitar el modo "
1185
  "de Sandbox para hacer pruebas."
1186
 
1187
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:240
1188
  msgid "Misc. Settings"
1189
  msgstr "Otros Ajustes"
1190
 
1191
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:245
1192
  msgid "Enable PayPal Sandbox mode"
1193
  msgstr "Habilitar modo Sandbox para PayPal"
1194
 
1195
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:251
1196
  msgid "Enable logging"
1197
  msgstr "Habilitar logging"
1198
 
1199
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:269
1200
  msgid ""
1201
  "The PayPal Adaptive Payments gateway can instantly pay your vendors their "
1202
  "due commission (if enabled). Also used to mass pay vendors on a schedule / "
@@ -1207,39 +1373,39 @@ msgstr ""
1207
  "para pagar en masa a los vendedores en una fecha o método manual (si está "
1208
  "habilitado)."
1209
 
1210
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1211
  msgid "Gateway Disabled"
1212
  msgstr "Gateway Deshabilitado"
1213
 
1214
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1215
  #, php-format
1216
  msgid "%s does not support your store currency."
1217
  msgstr "%s no soporta la moneda de tu cuenta."
1218
 
1219
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:369
1220
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:483
1221
- #: classes/gateways/PayPal_Masspay/class-paypal-masspay.php:150
1222
  #, php-format
1223
  msgid "Error: %s"
1224
  msgstr "Error: %s"
1225
 
1226
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:378
1227
- #: classes/gateways/PayPal_AdvPayments/paypal_ap.php:379
1228
  #, php-format
1229
  msgid "Error ID: %s. %s"
1230
  msgstr "Error ID: %s. %s"
1231
 
1232
- #: classes/gateways/PayPal_Masspay/class-paypal-masspay.php:115
1233
  msgid "No vendors found to pay. Maybe they haven't set a PayPal address?"
1234
  msgstr ""
1235
  "No se encontraron vendedores que pagar. Puede que no tengan configurada su "
1236
  "dirección de PayPal."
1237
 
1238
- #: classes/gateways/PayPal_Masspay/class-paypal-masspay.php:164
1239
  msgid "All due commission has been paid for."
1240
  msgstr "Se han pagado todas las comisiones adeudadas."
1241
 
1242
- #: classes/gateways/PayPal_Masspay/class-paypal-masspay.php:170
1243
  msgid ""
1244
  "All due commission has been paid for, but I could not clear it from their "
1245
  "profiles due to an internal error. Commission will still be listed as due. "
@@ -1249,11 +1415,11 @@ msgstr ""
1249
  "perfil por un error interno. Las comisiones van a seguir como adeudadas. Por "
1250
  "favor marcar manualmente como pagadas desde la Página de Comisiones."
1251
 
1252
- #: classes/gateways/PayPal_Masspay/class-paypal-masspay.php:205
1253
  msgid "WooCommerce: Mass payments for vendors update"
1254
  msgstr "WooCommerce: Actualizar los pagos en masa de vendedores"
1255
 
1256
- #: classes/gateways/PayPal_Masspay/class-paypal-masspay.php:207
1257
  msgid ""
1258
  "Hello! A payment was just triggered to mass pay all vendors their due "
1259
  "commission."
@@ -1261,205 +1427,214 @@ msgstr ""
1261
  "Hola! Un pago ha sido desatado para pagar a todos los vendedores su comisión "
1262
  "adeudada."
1263
 
1264
- #: classes/gateways/PayPal_Masspay/class-paypal-masspay.php:208
1265
  #, php-format
1266
  msgid "Payment status: %s."
1267
  msgstr "Estado del Pago: %s."
1268
 
1269
- #: classes/gateways/PayPal_Masspay/class-paypal-masspay.php:209
1270
  #, php-format
1271
  msgid "Payment message: %s."
1272
  msgstr "Mensaje del Pago: %s."
1273
 
1274
- #: classes/gateways/PayPal_Masspay/class-paypal-masspay.php:212
1275
  #, php-format
1276
  msgid "Payment total: %s."
1277
  msgstr "Total del Pago: %s."
1278
 
1279
- #: views/dashboard/denied.php:8
 
 
 
 
 
1280
  msgid ""
1281
- "Your account has not yet been approved to become a vendor. When it is, you "
1282
- "will receive an email telling you that your account is approved!"
 
 
1283
  msgstr ""
1284
- "Tu cuenta no ha sido aprobada para convertirte en un vendedor. ¡De ser "
1285
- "aprobada, se te enviará un email!"
 
 
1286
 
1287
- #: views/dashboard/denied.php:12
 
 
 
 
 
 
 
 
 
 
 
 
1288
  msgid ""
1289
- "Your account is not setup as a vendor yet. If you would like to register, "
1290
- "please complete this page!"
 
1291
  msgstr ""
1292
- "Tu cuenta no está configurada como vendedor aún. ¡Si quieres registrarte "
1293
- "completa esta página!"
 
1294
 
1295
- #: views/dashboard/denied.php:53
1296
- msgid "Submit"
1297
- msgstr "Enviar"
1298
 
1299
- #: views/dashboard/links.php:1
1300
- msgid "Control Center"
1301
- msgstr "Centro de Mando"
 
 
 
 
 
 
 
1302
 
1303
- #: views/dashboard/links.php:3
1304
- msgid "My shop"
1305
- msgstr "Mi tienda"
1306
 
1307
- #: views/dashboard/links.php:7
1308
- msgid "My settings"
1309
- msgstr "Mis ajustes"
 
 
 
 
 
 
 
 
1310
 
1311
- #: views/dashboard/links.php:13
1312
- msgid "Submit a product"
1313
- msgstr "Enviar un producto"
1314
 
1315
- #: views/dashboard/orders.php:7 views/dashboard/orders.php:10
1316
  msgid "Hide items"
1317
  msgstr "Esconder elementos"
1318
 
1319
- #: views/dashboard/orders.php:8 views/dashboard/orders.php:58
1320
  msgid "View items"
1321
  msgstr "Ver elementos"
1322
 
1323
- #: views/dashboard/orders.php:27
1324
  msgid "Links"
1325
  msgstr "Links"
1326
 
1327
- #: views/dashboard/orders.php:58
1328
  msgid "Unmark shipped"
1329
  msgstr "Desmarcar enviado"
1330
 
1331
- #: views/dashboard/orders.php:58
1332
- msgid "Mark shipped"
1333
- msgstr "Marcar enviado"
1334
 
1335
- #: views/dashboard/orders.php:90
1336
  msgid "You have no orders during this period."
1337
  msgstr "No tienes órdenes durante este periodo."
1338
 
1339
- #: views/dashboard/reports.php:1
1340
  msgid "Sales Report"
1341
  msgstr "Reporte de Ventas"
1342
 
1343
- #: views/dashboard/reports.php:20
1344
  msgid "Rate"
1345
  msgstr "Evaluar"
1346
 
1347
- #: views/dashboard/reports.php:47
1348
  msgid "Show Orders"
1349
  msgstr "Mostrar Órdenes"
1350
 
1351
- #: views/dashboard/reports.php:56
1352
  msgid "Totals"
1353
  msgstr "Totales"
1354
 
1355
- #: views/dashboard/reports.php:71
1356
  msgid "You have no sales during this period."
1357
  msgstr "No has tenido ventas durante este periodo."
1358
 
1359
- #: views/dashboard/reports.php:82
1360
  msgid "You haven't made any sales yet."
1361
  msgstr "No ha hecho ninguna venta por ahora."
1362
 
1363
- #: views/dashboard/settings/paypal-email-form.php:2
1364
- msgid "PayPal Address"
1365
- msgstr "Dirección de PayPal"
1366
-
1367
- #: views/dashboard/settings/paypal-email-form.php:3
1368
- msgid "Your PayPal address is used to send you your commission."
1369
- msgstr "Tu dirección de PayPal es usada para enviarte tu comisión."
1370
-
1371
- #: views/dashboard/settings/seller-info.php:4
1372
- msgid "This is displayed on each of your products."
1373
- msgstr "Esto se muestra en cada uno de tus productos."
1374
-
1375
- #: views/dashboard/settings/settings.php:47
1376
  msgid "Save"
1377
  msgstr "Guardar"
1378
 
1379
- #: views/dashboard/settings/shop-description.php:2
1380
- msgid "Shop Description"
1381
- msgstr "Descripción de la Tienda"
1382
-
1383
- #: views/dashboard/settings/shop-description.php:3
1384
- #, php-format
1385
- msgid "This is displayed on your <a href=\"%s\">shop page</a>."
1386
- msgstr "Esto será mostrado en la <a href=\"%s\">página de tu tienda</a>."
1387
-
1388
- #: views/dashboard/settings/shop-name.php:2
1389
- msgid "Shop Name"
1390
- msgstr "Nombre de la Tienda"
1391
-
1392
- #: views/dashboard/settings/shop-name.php:3
1393
- msgid "Your shop name is public and must be unique."
1394
- msgstr "El nombre de tu tienda es público y único."
1395
-
1396
- #: views/emails/admin-new-order.php:13
1397
  #, php-format
1398
  msgid "You have received an order from %s. Their order is as follows:"
1399
  msgstr "Has recibido una orden de %s. La orden la siguiente:"
1400
 
1401
- #: views/emails/admin-new-order.php:17
1402
- #: views/emails/notify-vendor-shipped.php:17
1403
  #, php-format
1404
  msgid "Order: %s"
1405
  msgstr "Orden: %s"
1406
 
1407
- #: views/emails/admin-new-order.php:24
1408
- #: views/emails/notify-vendor-shipped.php:24
1409
  msgid "Price"
1410
  msgstr "Precio"
1411
 
1412
- #: views/emails/admin-new-order.php:50
1413
- #: views/emails/notify-vendor-shipped.php:50
1414
  msgid "Customer details"
1415
  msgstr "Detalle del cliente"
1416
 
1417
- #: views/emails/admin-new-order.php:53
1418
- #: views/emails/notify-vendor-shipped.php:53
1419
  msgid "Email:"
1420
  msgstr "Email:"
1421
 
1422
- #: views/emails/admin-new-order.php:56
1423
- #: views/emails/notify-vendor-shipped.php:56
1424
  msgid "Tel:"
1425
  msgstr "Tel:"
1426
 
1427
- #: views/emails/application-status.php:5
1428
  #, php-format
1429
  msgid "Hi there. This is a notification about a vendor application on %s."
1430
  msgstr "Hola. Esta es una notificación de la postulación de un vendedor en %s."
1431
 
1432
- #: views/emails/application-status.php:8
1433
  #, php-format
1434
  msgid "Application status: %s"
1435
  msgstr "Estado de la postulación: %s"
1436
 
1437
- #: views/emails/application-status.php:9
1438
  #, php-format
1439
  msgid "Applicant username: %s"
1440
  msgstr "Username del postulante: %s"
1441
 
1442
- #: views/emails/new-product.php:5
1443
  #, php-format
1444
  msgid "Hi there. This is a notification about a new product on %s."
1445
  msgstr "Hola. Esta es una notificación sobre un nuevo producto en %s."
1446
 
1447
- #: views/emails/new-product.php:8
1448
  #, php-format
1449
  msgid "Product title: %s"
1450
  msgstr "Título del producto: %s"
1451
 
1452
- #: views/emails/new-product.php:9
1453
  #, php-format
1454
  msgid "Submitted by: %s"
1455
  msgstr "Enviado por: %s"
1456
 
1457
- #: views/emails/new-product.php:10
1458
  #, php-format
1459
  msgid "Edit product: %s"
1460
  msgstr "Editar producto: %s"
1461
 
1462
- #: views/emails/notify-vendor-shipped.php:13
1463
  msgid ""
1464
  "A vendor has marked part of your order as shipped. The items that are "
1465
  "shipped are as follows:"
@@ -1467,73 +1642,149 @@ msgstr ""
1467
  "Un vendedor ha marcado parte de tu orden como enviada. Los elementos serán "
1468
  "enviados de la siguiente forma:"
1469
 
1470
- #: views/orders/comments/add-new-comment.php:11
1471
  msgid "Add comment"
1472
  msgstr "Agregar comentario"
1473
 
1474
- #: views/orders/comments/existing-comments.php:9
1475
  #, php-format
1476
  msgid "added %s ago"
1477
  msgstr "Agregado %s atrás"
1478
 
1479
- #: views/orders/csv-export.php:6
1480
  msgid "Export orders"
1481
  msgstr "Exportar órdenes"
1482
 
1483
- #: views/orders/customer-note/customer-note.php:4
1484
  msgid "Customer note"
1485
  msgstr "Nota del cliente"
1486
 
1487
- #: views/orders/customer-note/customer-note.php:8
1488
  msgid "No customer note."
1489
  msgstr "No hay nota del cliente."
1490
 
1491
- #: views/orders/orders.php:84
1492
  #, php-format
1493
  msgid "Comments (%s)"
1494
  msgstr "Comentarios (%s)"
1495
 
1496
- #: views/orders/shipping/shipping-form.php:46
1497
  msgid "Provider:"
1498
  msgstr "Proveedor:"
1499
 
1500
- #: views/orders/shipping/shipping-form.php:48
1501
  msgid "Custom Provider"
1502
  msgstr "Proveedor Personalizado"
1503
 
1504
- #: views/orders/shipping/shipping-form.php:68
1505
  msgid "Provider Name:"
1506
  msgstr "Nombre del Proveedor:"
1507
 
1508
- #: views/orders/shipping/shipping-form.php:76
1509
  msgid "Tracking number:"
1510
  msgstr "Número de Tracking:"
1511
 
1512
- #: views/orders/shipping/shipping-form.php:84
1513
  msgid "Tracking link:"
1514
  msgstr "Enlace de Tracking:"
1515
 
1516
- #: views/orders/shipping/shipping-form.php:93
1517
  msgid "Date shipped:"
1518
  msgstr "Fecha de envío:"
1519
 
1520
- #: views/orders/shipping/shipping-form.php:101
1521
  msgid "Preview:"
1522
  msgstr "Previsualizar:"
1523
 
1524
- #: views/orders/shipping/shipping-form.php:101
1525
  msgid "Click here to track your shipment"
1526
  msgstr "Haz click para trackear tu envío"
1527
 
1528
- #: views/orders/shipping/shipping-form.php:110
1529
  msgid "Update tracking number"
1530
  msgstr "Actualizar el numero de tracking"
1531
 
1532
- #: views/orders/shipping/shipping-form.php:112
1533
  msgid "Mark as shipped"
1534
  msgstr "Marcar como enviada"
1535
 
1536
- #: views/orders/table-body.php:25
1537
  #, php-format
1538
  msgid "Quantity: %d"
1539
  msgstr "Cantidad: %d"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WC Vendors\n"
4
+ "POT-Creation-Date: 2015-04-25 19:19-0500\n"
5
+ "PO-Revision-Date: 2015-04-25 19:19-0500\n"
6
+ "Last-Translator: Dto2y3d <masyoututoriales@gmail.com>\n"
7
  "Language-Team: WC Vendors <support@wcvendors.com>\n"
8
  "Language: es\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.5\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPath-1: ..\n"
19
 
20
+ #: ../class-wc-vendors.php:71 ../classes/admin/class-admin-reports.php:41
21
+ #: ../classes/admin/class-admin-users.php:371
22
+ msgid "WC Vendors"
23
+ msgstr "WC Vendors"
24
+
25
+ #: ../class-wc-vendors.php:98
26
+ msgid ""
27
+ "<b>WC Vendors is disabled</b>. WC Vendors requires a minimum of WooCommerce "
28
+ "v2.2.0."
29
+ msgstr ""
30
+ "<b>WC vendedores está deshabilitado</b>. WC vendedores requiere como mínimo "
31
+ "WooCommerce v2.2.0."
32
+
33
+ #: ../class-wc-vendors.php:225 ../classes/admin/settings/sf-options.php:159
34
+ msgid "Capabilities"
35
+ msgstr "Capacidades"
36
+
37
+ #: ../class-wc-vendors.php:249 ../classes/admin/settings/sf-options.php:4
38
+ msgid "General"
39
+ msgstr "General"
40
+
41
+ #: ../class-wc-vendors.php:284
42
+ msgid "Documentation/KB"
43
+ msgstr "Documentación/KB"
44
+
45
+ #: ../class-wc-vendors.php:285
46
+ msgid "Help Forums"
47
+ msgstr "Foros de ayuda"
48
+
49
+ #: ../class-wc-vendors.php:286
50
+ msgid "Paid Support"
51
+ msgstr "Soporte pagado"
52
+
53
+ #: ../class-wc-vendors.php:308
54
+ #, php-format
55
+ msgid ""
56
+ "WC Vendors requires the Vendor shop page value be set <a href=\"%s\">click "
57
+ "here to set it.</a> | <a href=\"%s\">Hide Notice</a>"
58
+ msgstr ""
59
+ "WC vendedores requiere fijar el valor de la pagina tienda del vendedor <a "
60
+ "href=\"%s\">haga clic aquí para definirlo</a> | <a href=\"%s\">Ocultar "
61
+ "aviso</a>"
62
+
63
+ #: ../class-wc-vendors.php:316
64
+ #, php-format
65
+ msgid ""
66
+ "You must save your permalinks once you have modified your vendor page. <a "
67
+ "href=\"%s\">click here to save</a>. | <a href=\"%s\">Hide Notice</a>"
68
+ msgstr ""
69
+ "Una vez que ha modificado su página vendedor debe guardar tus enlaces "
70
+ "permanentes. <a href=\"%s\">haga clic aquí para guardar</a>. | <a href=\"%s"
71
+ "\">Ocultar aviso</a>"
72
+
73
+ #: ../classes/admin/class-admin-page.php:27
74
  msgid "Vendors shipped"
75
  msgstr "Vendedores han despachado"
76
 
77
+ #: ../classes/admin/class-admin-page.php:50
78
  msgid "Vendors Shipped"
79
  msgstr "Vendedores han despachado"
80
 
81
+ #: ../classes/admin/class-admin-page.php:72
82
+ #: ../classes/admin/class-admin-page.php:132
83
+ #: ../classes/admin/class-admin-reports.php:339
84
+ #: ../classes/admin/class-product-meta.php:149
85
+ #: ../classes/admin/class-product-meta.php:165
86
+ #: ../templates/dashboard/reports.php:19
87
  msgid "Commission"
88
  msgstr "Comisión"
89
 
90
+ #: ../classes/admin/class-admin-page.php:251
91
+ #: ../classes/admin/class-admin-reports.php:168
92
+ #: ../templates/dashboard/reports.php:17
93
+ #: ../templates/emails/admin-new-order.php:22
94
+ #: ../templates/emails/notify-vendor-shipped.php:22
95
  msgid "Product"
96
  msgstr "Producto"
97
 
98
+ #: ../classes/admin/class-admin-page.php:252
99
+ #: ../classes/admin/class-vendor-admin-dashboard.php:255
100
  msgid "Order ID"
101
  msgstr "ID de la Orden"
102
 
103
+ #: ../classes/admin/class-admin-page.php:253
104
+ #: ../classes/admin/class-admin-reports.php:169
105
+ #: ../classes/admin/class-product-meta.php:44
106
+ #: ../classes/admin/class-product-meta.php:185
107
+ #: ../classes/admin/class-product-meta.php:221
108
  msgid "Vendor"
109
  msgstr "Vendedor"
110
 
111
+ #: ../classes/admin/class-admin-page.php:254
112
+ #: ../classes/admin/class-admin-reports.php:170
113
+ #: ../classes/admin/class-admin-reports.php:344
114
+ #: ../classes/admin/class-admin-reports.php:368
115
+ #: ../classes/admin/class-vendor-admin-dashboard.php:258
116
+ #: ../templates/dashboard/orders.php:35
117
  msgid "Total"
118
  msgstr "Total"
119
 
120
+ #: ../classes/admin/class-admin-page.php:255
121
+ #: ../classes/admin/class-admin-reports.php:172
122
  msgid "Status"
123
  msgstr "Estado"
124
 
125
+ #: ../classes/admin/class-admin-page.php:256
126
+ #: ../classes/admin/class-vendor-admin-dashboard.php:259
127
+ #: ../classes/front/orders/class-orders.php:216
128
+ #: ../templates/dashboard/orders.php:36
129
  msgid "Date"
130
  msgstr "Fecha"
131
 
132
+ #: ../classes/admin/class-admin-page.php:293
133
  msgid "Mark paid"
134
  msgstr "Marcar pagado"
135
 
136
+ #: ../classes/admin/class-admin-page.php:294
137
  msgid "Mark due"
138
  msgstr "Marcar adeudado"
139
 
140
+ #: ../classes/admin/class-admin-page.php:295
141
  msgid "Mark reversed"
142
  msgstr "Marcar revertido"
143
 
144
+ #: ../classes/admin/class-admin-page.php:312
145
+ #: ../classes/admin/class-admin-page.php:316
146
  msgid "Filter"
147
  msgstr "Filtrar"
148
 
149
+ #: ../classes/admin/class-admin-page.php:351
150
  msgid "Show all dates"
151
  msgstr "Todas las fechas"
152
 
153
+ #: ../classes/admin/class-admin-page.php:364
154
  #, php-format
155
  msgid "%1$s %2$d"
156
  msgstr "%1$s %2$d"
157
 
158
+ #: ../classes/admin/class-admin-page.php:386
159
+ msgid "Show all Statuses"
160
+ msgstr "Mostrar todos los Estados"
161
+
162
+ #: ../classes/admin/class-admin-page.php:412
163
  msgid "Commission marked paid."
164
  msgstr "Comisión marcada pagada."
165
 
166
+ #: ../classes/admin/class-admin-page.php:419
167
  msgid "Commission marked due."
168
  msgstr "Comisión marcada adeudada."
169
 
170
+ #: ../classes/admin/class-admin-page.php:426
171
  msgid "Commission marked reversed."
172
  msgstr "Comisión marcada revertida."
173
 
174
+ #: ../classes/admin/class-admin-reports.php:44
 
 
 
 
 
175
  msgid "Overview"
176
  msgstr "Resumen"
177
 
178
+ #: ../classes/admin/class-admin-reports.php:50
179
  msgid "Commission by vendor"
180
  msgstr "Comisión por vendedor"
181
 
182
+ #: ../classes/admin/class-admin-reports.php:56
183
  msgid "Commission by product"
184
  msgstr "Comisión por producto"
185
 
186
+ #: ../classes/admin/class-admin-reports.php:115
187
+ #: ../templates/dashboard/date-picker.php:3
188
  msgid "From:"
189
  msgstr "De:"
190
 
191
+ #: ../classes/admin/class-admin-reports.php:117
192
+ #: ../templates/dashboard/date-picker.php:7
193
  msgid "To:"
194
  msgstr "Para:"
195
 
196
+ #: ../classes/admin/class-admin-reports.php:119
197
+ #: ../classes/admin/class-admin-reports.php:277
198
+ #: ../templates/dashboard/date-picker.php:12
199
  msgid "Show"
200
  msgstr "Mostrar"
201
 
202
+ #: ../classes/admin/class-admin-reports.php:125
203
  msgid "Total paid in range"
204
  msgstr "Total pagado en el rango"
205
 
206
+ #: ../classes/admin/class-admin-reports.php:128
207
+ #: ../classes/admin/class-admin-reports.php:135
208
+ #: ../classes/admin/class-admin-reports.php:142
209
  msgid "n/a"
210
  msgstr "n/a"
211
 
212
+ #: ../classes/admin/class-admin-reports.php:132
213
  msgid "Total due in range"
214
  msgstr "Total adeudado en el rango"
215
 
216
+ #: ../classes/admin/class-admin-reports.php:139
217
  msgid "Total reversed in range"
218
  msgstr "Total revertido en el rango"
219
 
220
+ #: ../classes/admin/class-admin-reports.php:149
221
  msgid "Recent Commission"
222
  msgstr "Comisión Reciente"
223
 
224
+ #: ../classes/admin/class-admin-reports.php:167
225
+ #: ../classes/front/orders/class-orders.php:208
226
+ #: ../templates/dashboard/orders.php:33
227
  msgid "Order"
228
  msgstr "Orden"
229
 
230
+ #: ../classes/admin/class-admin-reports.php:171
231
  msgid "Date &amp; Time"
232
  msgstr "Fecha &amp; Hora"
233
 
234
+ #: ../classes/admin/class-admin-reports.php:180
235
  msgid "N/A"
236
  msgstr "N/A"
237
 
238
+ #: ../classes/admin/class-admin-reports.php:185
239
  msgid "D j M Y \\a\\t h:ia"
240
  msgstr "D j M Y \\a\\t h:ia"
241
 
242
+ #: ../classes/admin/class-admin-reports.php:194
243
  msgid "No commission yet"
244
  msgstr "No hay comisión aún"
245
 
246
+ #: ../classes/admin/class-admin-reports.php:228
247
  msgid "Show:"
248
  msgstr "Mostrar:"
249
 
250
+ #: ../classes/admin/class-admin-reports.php:237
251
+ msgid "Search for a product&hellip;"
252
+ msgstr "Busca un producto ..."
253
 
254
+ #: ../classes/admin/class-admin-reports.php:240
255
+ msgid "Type in a product name to start searching..."
256
+ msgstr "Escriba un nombre de producto para comenzar la búsqueda..."
257
+
258
+ #: ../classes/admin/class-admin-reports.php:272
259
  msgid "Select a vendor&hellip;"
260
  msgstr "Seleccionar un vendedor&hellip;"
261
 
262
+ #: ../classes/admin/class-admin-reports.php:338
263
  msgid "Month"
264
  msgstr "Mes"
265
 
266
+ #: ../classes/admin/class-admin-reports.php:340
267
  msgid "Tax"
268
  msgstr "Impuesto"
269
 
270
+ #: ../classes/admin/class-admin-reports.php:341
271
+ #: ../classes/admin/settings/sf-options.php:46
272
+ #: ../templates/dashboard/orders.php:34 ../templates/orders/orders.php:113
273
  msgid "Shipping"
274
  msgstr "Despacho"
275
 
276
+ #: ../classes/admin/class-admin-reports.php:342
277
  msgid "Reversed"
278
  msgstr "Revertido"
279
 
280
+ #: ../classes/admin/class-admin-reports.php:343
281
  msgid "Paid"
282
  msgstr "Pagado"
283
 
284
+ #: ../classes/admin/class-admin-users.php:381
285
  msgid "Enable HTML for the shop description"
286
  msgstr "Permitir HTML en la descripción de la tienda"
287
 
288
+ #: ../classes/admin/class-admin-users.php:387
289
  msgid "Shop name"
290
  msgstr "Nombre de la tienda"
291
 
292
+ #: ../classes/admin/class-admin-users.php:394
293
  msgid "PayPal E-mail"
294
  msgstr "E-mail de PayPal"
295
 
296
+ #: ../classes/admin/class-admin-users.php:395
297
  msgid "required"
298
  msgstr "requerido"
299
 
300
+ #: ../classes/admin/class-admin-users.php:402
301
  msgid "Commission rate"
302
  msgstr "Taza de comisión"
303
 
304
+ #: ../classes/admin/class-admin-users.php:403
305
+ #: ../classes/admin/class-product-meta.php:172
306
  msgid "Leave blank for default"
307
  msgstr "Dejar en blanco para \"por defecto\""
308
 
309
+ #: ../classes/admin/class-admin-users.php:409
310
+ #: ../classes/admin/views/html-vendor-settings-page.php:30
311
+ #: ../classes/front/class-vendor-shop.php:103
312
+ #: ../templates/dashboard/settings/seller-info.php:3
313
  msgid "Seller info"
314
  msgstr "Información del vendedor"
315
 
316
+ #: ../classes/admin/class-admin-users.php:414
317
  msgid "Shop description"
318
  msgstr "Descripción de la tienda"
319
 
320
+ #: ../classes/admin/class-vendor-admin-dashboard.php:19
321
+ #: ../classes/class-install.php:166
322
+ msgid "Shop Settings"
323
+ msgstr "Ajustes de Tienda"
324
+
325
+ #: ../classes/admin/class-vendor-admin-dashboard.php:20
326
+ #: ../classes/admin/class-vendor-admin-dashboard.php:142
327
+ #: ../classes/admin/settings/sf-options.php:163
328
+ #: ../classes/class-install.php:165 ../templates/dashboard/orders.php:24
329
+ msgid "Orders"
330
+ msgstr "Órdenes"
331
+
332
+ #: ../classes/admin/class-vendor-admin-dashboard.php:53
333
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:101
334
+ msgid "Your PayPal address is not a valid email address."
335
+ msgstr "Tu dirección de PayPal no es una dirección de email válida."
336
+
337
+ #: ../classes/admin/class-vendor-admin-dashboard.php:63
338
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:110
339
+ msgid "That shop name is already taken. Your shop name must be unique."
340
+ msgstr "Ese nombre de tienda ya está tomado. Tu tienda debe ser única."
341
+
342
+ #: ../classes/admin/class-vendor-admin-dashboard.php:83
343
+ #: ../classes/admin/settings/classes/sf-class-settings.php:366
344
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:128
345
+ msgid "Settings saved."
346
+ msgstr "Ajustes guardados."
347
+
348
+ #: ../classes/admin/class-vendor-admin-dashboard.php:256
349
+ msgid "Customer"
350
+ msgstr "Cliente"
351
+
352
+ #: ../classes/admin/class-vendor-admin-dashboard.php:257
353
+ #: ../classes/admin/settings/sf-options.php:95
354
+ #: ../classes/admin/settings/sf-options.php:221
355
+ msgid "Products"
356
+ msgstr "Productos"
357
+
358
+ #: ../classes/admin/class-vendor-admin-dashboard.php:260
359
+ msgid "Shipped"
360
+ msgstr "Enviado"
361
+
362
+ #: ../classes/admin/class-vendor-admin-dashboard.php:293
363
+ #: ../templates/dashboard/orders.php:68
364
+ msgid "Mark shipped"
365
+ msgstr "Marcar enviado"
366
+
367
+ #: ../classes/admin/class-vendor-admin-dashboard.php:317
368
+ msgid "Orders marked shipped."
369
+ msgstr "Pedidos marcados como enviados."
370
+
371
+ #: ../classes/admin/class-vendor-applicants.php:26
372
  msgid "Approve"
373
  msgstr "Aprobar"
374
 
375
+ #: ../classes/admin/class-vendor-applicants.php:27
376
  msgid "Deny"
377
  msgstr "Rechazar"
378
 
379
+ #: ../classes/admin/class-vendor-applicants.php:71
380
  msgid "Vendor has been <b>denied</b>."
381
  msgstr "Vendedor ha sido <b>rechazado</b>"
382
 
383
+ #: ../classes/admin/class-vendor-applicants.php:82
384
  msgid "Vendor has been <b>approved</b>."
385
  msgstr "Vendedor ha sido <b>aprobado</b>."
386
 
387
+ #: ../classes/admin/class-vendor-applicants.php:96
388
  msgid "Pending Vendors"
389
  msgstr "Vendedores Pendientes"
390
 
391
+ #: ../classes/admin/emails/class-emails.php:55
392
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:70
393
  msgid "pending"
394
  msgstr "pendientes"
395
 
396
+ #: ../classes/admin/emails/class-emails.php:57
397
  msgid "approved"
398
  msgstr "aprobados"
399
 
400
+ #: ../classes/admin/emails/class-emails.php:59
401
  msgid "denied"
402
  msgstr "denegados"
403
 
404
+ #: ../classes/admin/emails/class-emails.php:86
405
+ #: ../classes/front/class-vendor-cart.php:59
406
+ #: ../classes/front/class-vendor-shop.php:178
407
  msgid "Sold by: "
408
+ msgstr "En venta por: "
409
 
410
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:28
411
  msgid "Vendor Application"
412
  msgstr "Postulación del Vendedor"
413
 
414
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:29
415
  msgid "Vendor application will either be approved, denied, or pending."
416
  msgstr "La postulación del Vendedor puede ser aprobada, denegada o pendiente."
417
 
418
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:31
419
  msgid "Application {status}"
420
  msgstr "Postulación {status}"
421
 
422
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:32
423
  msgid "[{blogname}] Your vendor application has been {status}"
424
  msgstr "[{blogname}] Tu postulación a vendedor está {status}"
425
 
426
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:123
427
+ #: ../classes/admin/emails/class-wc-notify-admin.php:131
428
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:163
429
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:232
430
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:62
431
  msgid "Enable/Disable"
432
  msgstr "Habilitar/Deshabilitar"
433
 
434
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:125
435
+ #: ../classes/admin/emails/class-wc-notify-admin.php:133
436
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:165
437
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:234
438
  msgid "Enable this email notification"
439
  msgstr "Habilitar notificación por email"
440
 
441
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:129
442
+ #: ../classes/admin/emails/class-wc-notify-admin.php:137
443
  msgid "Recipient(s)"
444
  msgstr "Receptor(es)"
445
 
446
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:131
447
+ #: ../classes/admin/emails/class-wc-notify-admin.php:139
448
  #, php-format
449
  msgid ""
450
  "Enter recipients (comma separated) for this email. Defaults to <code>%s</"
453
  "Entrar los receptores (separados por coma) de este email. Por defecto a "
454
  "<code>%s</code>."
455
 
456
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:136
457
+ #: ../classes/admin/emails/class-wc-notify-admin.php:144
458
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:169
459
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:238
460
  msgid "Subject"
461
  msgstr "Asunto"
462
 
463
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:138
464
+ #: ../classes/admin/emails/class-wc-notify-admin.php:146
465
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:171
466
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:240
467
  #, php-format
468
  msgid ""
469
  "This controls the email subject line. Leave blank to use the default "
472
  "Esto controla el asunto del email. Dejar en blanco para usar el por defecto: "
473
  "<code>%s</code>."
474
 
475
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:143
476
+ #: ../classes/admin/emails/class-wc-notify-admin.php:151
477
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:176
478
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:245
479
  msgid "Email Heading"
480
  msgstr "Título del Email"
481
 
482
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:145
483
+ #: ../classes/admin/emails/class-wc-notify-admin.php:153
484
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:178
485
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:247
486
  #, php-format
487
  msgid ""
488
  "This controls the main heading contained within the email notification. "
491
  "Esto controla el título principal de la notificación por email. Dejar en "
492
  "blanco para utilizar el por defecto: <code>%s</code>."
493
 
494
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:150
495
+ #: ../classes/admin/emails/class-wc-notify-admin.php:158
496
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:183
497
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:252
498
  msgid "Email type"
499
  msgstr "Tipo de email"
500
 
501
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:152
502
+ #: ../classes/admin/emails/class-wc-notify-admin.php:160
503
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:185
504
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:254
505
  msgid "Choose which format of email to send."
506
  msgstr "Elegir cuál formato de email se mandará."
507
 
508
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:156
509
+ #: ../classes/admin/emails/class-wc-notify-admin.php:164
510
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:189
511
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:258
512
  msgid "Plain text"
513
  msgstr "Texto plano"
514
 
515
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:157
516
+ #: ../classes/admin/emails/class-wc-notify-admin.php:165
517
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:190
518
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:259
519
  msgid "HTML"
520
  msgstr "HTML"
521
 
522
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:158
523
+ #: ../classes/admin/emails/class-wc-notify-admin.php:166
524
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:191
525
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:260
526
  msgid "Multipart"
527
  msgstr "Multiparte"
528
 
529
+ #: ../classes/admin/emails/class-wc-notify-admin.php:28
530
  msgid "New Vendor Product"
531
  msgstr "Nuevo Producto del Vendedor"
532
 
533
+ #: ../classes/admin/emails/class-wc-notify-admin.php:29
534
  msgid "New order emails are sent when a new product is submitted by a vendor"
535
  msgstr ""
536
  "Nuevos emails de pedido se envían cuando un nuevo producto es ingresado por "
537
  "un vendedor"
538
 
539
+ #: ../classes/admin/emails/class-wc-notify-admin.php:31
540
  msgid "New product submitted: {product_name}"
541
  msgstr "Nuevo producto ingresado: {product_name}"
542
 
543
+ #: ../classes/admin/emails/class-wc-notify-admin.php:32
544
  msgid "[{blogname}] New product submitted by {vendor_name} - {product_name}"
545
  msgstr ""
546
  "[{blogname}] Nuevo producto ingresado por {vendor_name} - {product_name}"
547
 
548
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:28
549
  msgid "Vendor has shipped"
550
  msgstr "Vendedor ha despachado"
551
 
552
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:29
553
  msgid ""
554
  "An email is sent when a vendor has marked one of their orders as shipped."
555
  msgstr ""
556
  "Un email es enviado cada vez que un vendedor marca una orden como despachada."
557
 
558
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:31
559
  msgid "Your order has been shipped"
560
  msgstr "Tu orden ha sido despachada"
561
 
562
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:32
563
  msgid ""
564
  "[{blogname}] Your order has been shipped ({order_number}) - {order_date}"
565
  msgstr ""
566
  "[{blogname}] Tu orden ha sido despachada ({order_number}) - {order_date}"
567
 
568
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:112
569
  msgid "Subtotal:"
570
  msgstr "Subtotal:"
571
 
572
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:27
573
  msgid "Notify vendors"
574
  msgstr "Notificar vendedores"
575
 
576
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:28
577
  msgid "New order emails are sent when an order is received/paid by a customer."
578
  msgstr ""
579
  "Nuevos emails de pedido son enviados cada vez que una orden es recibida/"
580
  "pagada por un usuario."
581
 
582
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:30
583
  msgid "New customer order"
584
  msgstr "Nueva orden de cliente"
585
 
586
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:31
587
  msgid "[{blogname}] New customer order ({order_number}) - {order_date}"
588
  msgstr "[{blogname}] Nueva orden de cliente ({order_number}) - {order_date}"
589
 
590
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:103
591
  msgid "Commission Subtotal:"
592
  msgstr "Subtotal de Comisión:"
593
 
594
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:112
595
  msgid "Shipping Subtotal:"
596
  msgstr "Subtotal Despacho:"
597
 
598
+ #: ../classes/admin/settings/classes/sf-class-format-options.php:211
599
+ #: ../classes/admin/settings/classes/sf-class-settings.php:776
600
  msgid "Select a page..."
601
  msgstr "Seleccionar una página..."
602
 
603
+ #: ../classes/admin/settings/classes/sf-class-settings.php:153
604
+ #: ../templates/dashboard/settings/settings.php:1
605
  msgid "Settings"
606
  msgstr "Ajustes"
607
 
608
+ #: ../classes/admin/settings/classes/sf-class-settings.php:300
609
  msgid "Could not load settings at: "
610
  msgstr "No se pueden cargar ajustes en: "
611
 
612
+ #: ../classes/admin/settings/classes/sf-class-settings.php:300
613
  msgid "Error - WP Settings Framework"
614
  msgstr "Error - WP Settings Framework"
615
 
616
+ #: ../classes/admin/settings/classes/sf-class-settings.php:482
 
 
 
 
 
617
  #, php-format
618
  msgid "Save %s changes"
619
  msgstr "Guardar %s cambios"
620
 
621
+ #: ../classes/admin/settings/sf-options.php:5
 
 
 
 
622
  msgid "General options"
623
  msgstr "Opciones generales"
624
 
625
+ #: ../classes/admin/settings/sf-options.php:5
626
+ #: ../classes/admin/settings/sf-options.php:54
627
+ #: ../classes/admin/settings/sf-options.php:246
628
  msgid " "
629
  msgstr ""
630
 
631
+ #: ../classes/admin/settings/sf-options.php:8
632
  msgid "Default commission (%)"
633
  msgstr "Comisión por defecto (%)"
634
 
635
+ #: ../classes/admin/settings/sf-options.php:9
636
  msgid ""
637
+ "The default rate you pay each vendor for a product sale. If a product has a "
638
  "commission rate already set, this value will be ignored for that product."
639
  msgstr ""
640
+ "El monto que pagas a cada vendedor por la venta de un producto. Si un "
641
+ "producto tiene un monto de Comisión ya establecido, este valor se omitirá "
642
+ "para ese producto."
643
 
644
+ #: ../classes/admin/settings/sf-options.php:20
645
  msgid "Registration"
646
  msgstr "Registro"
647
 
648
+ #: ../classes/admin/settings/sf-options.php:21
649
  msgid "Allow users or guests to apply to become a vendor"
650
  msgstr "Permitir a los usuarios o visitas solicitar ser vendedores"
651
 
652
+ #: ../classes/admin/settings/sf-options.php:22
653
  msgid ""
654
  "This will show a checkbox on the My Account page's registration form asking "
655
  "if the user would like to apply to be a vendor. Also, on the Vendor "
656
+ "Dashboard, users can still apply to become a vendor even if this is disabled."
657
  msgstr ""
658
+ "Esto mostrará una casilla en el formulario de la página mi cuenta "
659
+ "preguntando si el usuario desea aplicar para ser un vendedor. Además, en el "
660
+ "tablero del vendedor, los usuarios pueden aplicar aún para convertirse en un "
661
+ "vendedor, incluso si éste está desactivado."
662
 
663
+ #: ../classes/admin/settings/sf-options.php:29
664
  msgid "Approve vendor applications manually"
665
  msgstr "Aprobar las postulaciones de vendedor automáticamente"
666
 
667
+ #: ../classes/admin/settings/sf-options.php:30
668
  msgid ""
669
  "With this unchecked, all vendor applications are automatically accepted. "
670
  "Otherwise, you must approve each manually."
672
  "Si no está chequeado, todas las postulaciones a vendedores se aprobarán "
673
  "automáticamente. De lo contrario, debes aprobarlas manualmente."
674
 
675
+ #: ../classes/admin/settings/sf-options.php:37
676
  msgid "Taxes"
677
  msgstr "Impuestos"
678
 
679
+ #: ../classes/admin/settings/sf-options.php:38
680
  msgid "Give vendors any tax collected per-product"
681
  msgstr "Dar a los vendedores todo el impuesto recolectado por producto"
682
 
683
+ #: ../classes/admin/settings/sf-options.php:39
684
+ msgid "The tax collected on a vendor's product will be given in its entirety"
685
+ msgstr ""
686
+ "Los impuestos recolectados en el producto de un vendedor se dará en su "
687
+ "totalidad"
688
+
689
+ #: ../classes/admin/settings/sf-options.php:47
690
+ msgid "Give vendors any shipping collected per-product"
691
+ msgstr "Dar los vendedores cualquier envío recogido por producto"
692
+
693
+ #: ../classes/admin/settings/sf-options.php:48
694
  msgid ""
695
+ "The shipping collected on a vendor's product will be given in its entirety"
696
+ msgstr "Se dará el envío recogido por producto a un vendedor en su totalidad"
697
 
698
+ #: ../classes/admin/settings/sf-options.php:54
699
  msgid "Shop options"
700
  msgstr "Opciones de la tienda"
701
 
702
+ #: ../classes/admin/settings/sf-options.php:57
703
  msgid "Shop HTML"
704
  msgstr "HTML de la tienda"
705
 
706
+ #: ../classes/admin/settings/sf-options.php:58
707
+ msgid ""
708
+ "Enable HTML for a vendor's shop description by default. You can enable or "
709
+ "disable this per vendor by editing the vendors username."
710
+ msgstr ""
711
+ "Habilitar HTML para la descripción de la tienda de un vendedor por defecto. "
712
+ "Usted puede activar o desactivar esto por vendedor editando el nombre de "
713
+ "usuario de los vendedores."
714
 
715
+ #: ../classes/admin/settings/sf-options.php:65
716
  msgid "Vendor shop page"
717
  msgstr "Página de la Tienda del Vendedor"
718
 
719
+ #: ../classes/admin/settings/sf-options.php:66
720
  msgid "Eg: <code>yoursite.com/[your_setting_here]/[vendor_name_here]</code>"
721
  msgstr "Ej: <code>tusitio.com/[your_setting_here]/[vendor_name_here]</code>"
722
 
723
+ #: ../classes/admin/settings/sf-options.php:73
724
  msgid "Shop Headers"
725
  msgstr "Encabezados de la Tienda"
726
 
727
+ #: ../classes/admin/settings/sf-options.php:74
728
  msgid "Enable vendor shop headers"
729
  msgstr "Habilitar encabezados de la Tienda del Vendedor"
730
 
731
+ #: ../classes/admin/settings/sf-options.php:75
732
  msgid ""
733
+ "This will override the HTML Shop description output on product-archive "
734
+ "pages. In order to customize the shop headers visit wcvendors.com and read "
735
+ "the article in the Knowledgebase titled Changing the Vendor Templates."
736
  msgstr ""
737
+ "Esto sobrescribirá el HTML descripción de la tienda en la salida de páginas "
738
+ "de producto-archivo. Para personalizar la cabeceras de tienda visita "
739
+ "wcvendors.com y leer el artículo en la Knowledgebase titulado cambiar las "
740
+ "plantillas de proveedores."
741
 
742
+ #: ../classes/admin/settings/sf-options.php:82
743
+ msgid "Vendor Display Name"
744
+ msgstr "Mostar Nombre del vendedor"
745
+
746
+ #: ../classes/admin/settings/sf-options.php:83
747
+ msgid ""
748
+ "Select what will be displayed for the sold by text throughout the store."
749
+ msgstr "Seleccione lo que se mostrará para vender por texto en toda la tienda."
750
+
751
+ #: ../classes/admin/settings/sf-options.php:87
752
+ msgid "Display Name"
753
+ msgstr "Mostar Nombre"
754
 
755
+ #: ../classes/admin/settings/sf-options.php:88
756
+ #: ../classes/admin/views/html-vendor-settings-page.php:22
757
+ #: ../templates/dashboard/settings/shop-name.php:2
758
+ msgid "Shop Name"
759
+ msgstr "Nombre de la Tienda"
760
+
761
+ #: ../classes/admin/settings/sf-options.php:89
762
+ msgid "User Login"
763
+ msgstr "Identificación del usuario"
764
+
765
+ #: ../classes/admin/settings/sf-options.php:96
766
  msgid "Product Add Page"
767
  msgstr "Página de Agregar Producto"
768
 
769
+ #: ../classes/admin/settings/sf-options.php:96
770
  msgid "Configure what to hide from all vendors when adding a product"
771
  msgstr ""
772
  "Configurar qué esconder de todos los vendedores cuando se agrega un producto"
773
 
774
+ #: ../classes/admin/settings/sf-options.php:99
775
  msgid "Left side panel"
776
  msgstr "Panel de la izquierda"
777
 
778
+ #: ../classes/admin/settings/sf-options.php:100
779
+ msgid ""
780
+ "CHECKING these boxes will HIDE these areas of the add product page for "
781
+ "vendors"
782
+ msgstr ""
783
+ "MARCANDO estas cajas se OCULTARÁN estas áreas de la página de agregar "
784
+ "producto para vendedores"
785
 
786
+ #: ../classes/admin/settings/sf-options.php:114
787
  msgid "Types"
788
  msgstr "Tipos"
789
 
790
+ #: ../classes/admin/settings/sf-options.php:115
791
+ msgid "CHECKING these boxes will HIDE these product types from the vendor"
792
+ msgstr ""
793
+ "MARCANDO estas cajas se OCULTARÁN estos tipos de productos para el vendedor"
794
 
795
+ #: ../classes/admin/settings/sf-options.php:128
796
  msgid "Type options"
797
  msgstr "Opciones de tipos"
798
 
799
+ #: ../classes/admin/settings/sf-options.php:129
800
+ msgid "CHECKING these boxes will HIDE these product options from the vendor"
801
+ msgstr ""
802
+ "MARCANDO estas cajas se OCULTARÁN estas opciones de producto para el vendedor"
803
 
804
+ #: ../classes/admin/settings/sf-options.php:140
805
  msgid "Miscellaneous"
806
  msgstr "Misceláneos"
807
 
808
+ #: ../classes/admin/settings/sf-options.php:152
809
  msgid "Stylesheet"
810
  msgstr "Hojas de estilos"
811
 
812
+ #: ../classes/admin/settings/sf-options.php:153
813
  msgid ""
814
  "You can add CSS in this textarea, which will be loaded on the product add/"
815
  "edit page for vendors."
817
  "Puedes agregar CSS en esta área, éste va a ser cargado en la página de "
818
  "agregar/editar productos del vendedor."
819
 
820
+ #: ../classes/admin/settings/sf-options.php:160
 
 
 
 
821
  msgid "Permissions"
822
  msgstr "Permisos"
823
 
824
+ #: ../classes/admin/settings/sf-options.php:160
825
  msgid "General permissions used around the shop"
826
  msgstr "Permisos generales usados en la tienda"
827
 
828
+ #: ../classes/admin/settings/sf-options.php:164
 
 
 
 
 
829
  msgid "View orders"
830
  msgstr "Ver órdenes"
831
 
832
+ #: ../classes/admin/settings/sf-options.php:165
833
  msgid "Show customer details such as email, address, name, etc, for each order"
834
  msgstr ""
835
  "Mostrar detalles del cliente como email, dirección y nombre para cada orden"
836
 
837
+ #: ../classes/admin/settings/sf-options.php:172
838
  msgid "View comments"
839
  msgstr "Ver comentarios"
840
 
841
+ #: ../classes/admin/settings/sf-options.php:173
842
  msgid "View all vendor comments for an order on the frontend"
843
  msgstr ""
844
  "Ver todos los comentarios de los vendedores para una orden en el frontend"
845
 
846
+ #: ../classes/admin/settings/sf-options.php:180
847
  msgid "Submit comments"
848
  msgstr "Enviar comentarios"
849
 
850
+ #: ../classes/admin/settings/sf-options.php:181
851
  msgid ""
852
  "Submit comments for an order on the frontend. Eg, tracking ID for a product"
853
  msgstr ""
854
  "Enviar comentarios de una orden en el frontend. Eg: ID de tracking del "
855
  "producto"
856
 
857
+ #: ../classes/admin/settings/sf-options.php:188
858
  msgid "View email addresses"
859
  msgstr "Ver dirección de email"
860
 
861
+ #: ../classes/admin/settings/sf-options.php:189
862
  msgid ""
863
  "While viewing order details on the frontend, you can disable or enable email "
864
  "addresses"
866
  "Al ver los detalles de la orden en el frontend se puede habilitar o "
867
  "deshabitar la dirección de email"
868
 
869
+ #: ../classes/admin/settings/sf-options.php:196
870
  msgid "Export a CSV file of orders for a product"
871
  msgstr "Exportar un archivo CSV de las órdenes de productos"
872
 
873
+ #: ../classes/admin/settings/sf-options.php:197
874
  msgid "Vendors could export orders for a product on the frontend"
875
  msgstr "Los vendedores pueden exportar ordenes de un producto en el frontend"
876
 
877
+ #: ../classes/admin/settings/sf-options.php:204
878
  msgid "Reports"
879
  msgstr "Reportes"
880
 
881
+ #: ../classes/admin/settings/sf-options.php:205
882
  msgid "View backend sales reports"
883
  msgstr "Ver reportes de venta en el backend"
884
 
885
+ #: ../classes/admin/settings/sf-options.php:206
886
  msgid ""
887
  "Graphs and tables via the Reports page in backend. The reports will only "
888
  "display sales data that pertain to their products"
890
  "Gráficos y tablas vía la página de Reportes en el backend. Los reportes solo "
891
  "mostrarán datos de ventas que perteneces a sus productos."
892
 
893
+ #: ../classes/admin/settings/sf-options.php:213
894
  msgid "View Frontend sales reports"
895
  msgstr "Ver reportes de venta en el Frontend"
896
 
897
+ #: ../classes/admin/settings/sf-options.php:214
898
  msgid ""
899
  "Sales table on the frontend on the My Account page. The table will only "
900
  "display sales data that pertain to their products"
902
  "Tabla de ventas en el frontend en la página de Mi Cuenta. La tabla va a "
903
  "mostrar sólo datos de sus productos."
904
 
905
+ #: ../classes/admin/settings/sf-options.php:222
906
  msgid "Submit products"
907
  msgstr "Enviar productos"
908
 
909
+ #: ../classes/admin/settings/sf-options.php:223
910
  msgid ""
911
  "Vendors could submit a product through the backend, and an admin would "
912
  "approve or deny it"
914
  "Los vendedores pueden enviar un producto a través del backend, un "
915
  "administrador pueden aprobarlos o rechazarlos."
916
 
917
+ #: ../classes/admin/settings/sf-options.php:230
918
  msgid "Edit live products"
919
  msgstr "Editar productos en publicados"
920
 
921
+ #: ../classes/admin/settings/sf-options.php:231
922
  msgid ""
923
  "Vendors could edit an approved product after it has already gone live. There "
924
  "is no approval or review after editing a live product. This could be "
928
  "publicado. No es necesario la aprobación o revisión. Esto puede ser "
929
  "peligroso con vendedores maliciosos, tomar con cuidado."
930
 
931
+ #: ../classes/admin/settings/sf-options.php:238
932
  msgid "Submit products live without requiring approval"
933
  msgstr "Publicar productos sin necesitar aprobación"
934
 
935
+ #: ../classes/admin/settings/sf-options.php:239
936
  msgid ""
937
  "Vendors can submit products without review or approval from a shop admin. "
938
  "This could be dangerous with malicious vendors, so take caution."
941
  "revisión. Esto puede ser peligroso con vendedores maliciosos, tomar con "
942
  "cuidado."
943
 
944
+ #: ../classes/admin/settings/sf-options.php:245
945
  msgid "Pages"
946
  msgstr "Páginas"
947
 
948
+ #: ../classes/admin/settings/sf-options.php:246
949
  msgid "Page configuration"
950
  msgstr "Configuración de la página"
951
 
952
+ #: ../classes/admin/settings/sf-options.php:249
953
  msgid "Vendor dashboard"
954
  msgstr "Dashboard del vendedor"
955
 
956
+ #: ../classes/admin/settings/sf-options.php:250
957
  msgid ""
958
  "Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</"
959
  "code><br/>By default, My Account > Vendor Dashboard should have the "
962
  "Elegir la página que tiene el shortcode <code>[wcv_vendor_dashboard]</"
963
  "code><br/> Por defecto es Mi Cuenta > Dashboard del Vendedor"
964
 
965
+ #: ../classes/admin/settings/sf-options.php:257
966
  msgid "Shop settings"
967
  msgstr "Ajustes de la Tienda"
968
 
969
+ #: ../classes/admin/settings/sf-options.php:258
970
  msgid ""
971
  "Choose the page that has the shortcode <code>[wcv_shop_settings]</code><br/"
972
  ">These are the shop settings a vendor can configure."
974
  "Elegir la página que tiene el shortcode <code>[wcv_shop_settings]</code><br/"
975
  ">Estos son los ajustes de la tienda que el vendedor puede configurar"
976
 
977
+ #: ../classes/admin/settings/sf-options.php:265
978
  msgid "Orders page"
979
  msgstr "Página de órdenes"
980
 
981
+ #: ../classes/admin/settings/sf-options.php:266
982
  msgid ""
983
  "Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By "
984
  "default, My Account > Orders should have the shortcode."
986
  "Elegir la página que tiene el shorcode <code>[wcv_orders]</code><br/>Por "
987
  "defecto es Mi Cuenta > Órdenes"
988
 
989
+ #: ../classes/admin/settings/sf-options.php:273
990
  msgid "Vendor terms"
991
  msgstr "Condiciones de los vendedores"
992
 
993
+ #: ../classes/admin/settings/sf-options.php:274
994
  msgid ""
995
  "These terms are shown to a user when submitting an application to become a "
996
  "vendor.<br/>If left blank, no terms will be shown to the applicant."
998
  "Estas condiciones se muestran a un usuario cuando envía una postulación a "
999
  "ser vendedor.<br/>Si se deja en blanco no se mostrará ninguna."
1000
 
1001
+ #: ../classes/admin/settings/sf-options.php:292
1002
  msgid "Payments"
1003
  msgstr "Pagos"
1004
 
1005
+ #: ../classes/admin/settings/sf-options.php:294
1006
  msgid "User payments"
1007
  msgstr "Pagos de Usuarios"
1008
 
1009
+ #: ../classes/admin/settings/sf-options.php:295
1010
  #, php-format
1011
  msgid "Total commission currently due: %s. <a href=\"%s\">View details</a>."
1012
  msgstr "Deuda total de comisiones: %s. <a href=\"%s\">Ver detalles</a>."
1013
 
1014
+ #: ../classes/admin/settings/sf-options.php:296
1015
  #, php-format
1016
  msgid ""
1017
  "Make sure you update your PayPal Adaptive Payments settings <a href=\"%s"
1020
  "Asegúrate de actualizar tus ajustes de PayPal Adaptive Payments <a href=\"%s"
1021
  "\">acá</a>."
1022
 
1023
+ #: ../classes/admin/settings/sf-options.php:300
1024
  msgid "Instant pay"
1025
  msgstr "Pago instantáneo"
1026
 
1027
+ #: ../classes/admin/settings/sf-options.php:301
1028
  msgid "Instantly pay vendors their commission when an order is made"
1029
  msgstr ""
1030
  "Pagar instantáneamente la comisión a los vendedores cuando se hace una orden"
1031
 
1032
+ #: ../classes/admin/settings/sf-options.php:302
1033
  msgid ""
1034
  "For this to work, customers must checkout with the PayPal Adaptive Payments "
1035
+ "gateway. Using any other gateways will not pay vendors instantly"
1036
  msgstr ""
1037
+ "Para que funcione, los clientes deben finalizar pagos con PayPal Adaptive "
1038
+ "Payments gateway. Utilizando cualquier otras pasarelas no pagará los "
1039
+ "vendedores al instante."
1040
 
1041
+ #: ../classes/admin/settings/sf-options.php:309
1042
  msgid "Payment schedule"
1043
  msgstr "Calendario de pagos"
1044
 
1045
+ #: ../classes/admin/settings/sf-options.php:310
1046
  msgid "Note: Schedule will only work if instant pay is unchecked"
1047
  msgstr ""
1048
  "Nota: El calendario sólo va a funcionar si el \"Pago instantáneo\" no está "
1049
  "chequeado"
1050
 
1051
+ #: ../classes/admin/settings/sf-options.php:315
1052
  msgid "Weekly"
1053
  msgstr "Semanal"
1054
 
1055
+ #: ../classes/admin/settings/sf-options.php:316
1056
  msgid "Biweekly"
1057
  msgstr "Bisemanal"
1058
 
1059
+ #: ../classes/admin/settings/sf-options.php:317
1060
  msgid "Monthly"
1061
  msgstr "Mensual"
1062
 
1063
+ #: ../classes/admin/settings/sf-options.php:318
1064
  msgid "Manual"
1065
  msgstr "Manual"
1066
 
1067
+ #: ../classes/admin/settings/sf-options.php:319
1068
  msgid "Now"
1069
  msgstr "Ahora"
1070
 
1071
+ #: ../classes/admin/settings/sf-options.php:324
1072
  msgid "Email notification"
1073
  msgstr "Notificaciones por email"
1074
 
1075
+ #: ../classes/admin/settings/sf-options.php:325
1076
  msgid ""
1077
  "Send the WooCommerce admin an email each time a payment has been made via "
1078
  "the payment schedule options above"
1080
  "Mandar un mail al administrador de WooCommerce cada vez que se realice un "
1081
  "pago por medio del Caledario de Pagos"
1082
 
1083
+ #: ../classes/admin/views/html-vendor-settings-page.php:11
1084
+ #: ../templates/dashboard/settings/paypal-email-form.php:2
1085
+ msgid "PayPal Address"
1086
+ msgstr "Dirección de PayPal"
1087
+
1088
+ #: ../classes/admin/views/html-vendor-settings-page.php:15
1089
+ #: ../templates/dashboard/settings/paypal-email-form.php:3
1090
+ msgid "Your PayPal address is used to send you your commission."
1091
+ msgstr "Tu dirección de PayPal es usada para enviarte tu comisión."
1092
+
1093
+ #: ../classes/admin/views/html-vendor-settings-page.php:24
1094
+ #: ../templates/dashboard/settings/shop-name.php:3
1095
+ msgid "Your shop name is public and must be unique."
1096
+ msgstr "El nombre de tu tienda es público y único."
1097
+
1098
+ #: ../classes/admin/views/html-vendor-settings-page.php:43
1099
+ #: ../templates/dashboard/settings/seller-info.php:4
1100
+ msgid "This is displayed on each of your products."
1101
+ msgstr "Esto se muestra en cada uno de tus productos."
1102
+
1103
+ #: ../classes/admin/views/html-vendor-settings-page.php:49
1104
+ #: ../templates/dashboard/settings/shop-description.php:2
1105
+ msgid "Shop Description"
1106
+ msgstr "Descripción de la Tienda"
1107
+
1108
+ #: ../classes/admin/views/html-vendor-settings-page.php:61
1109
+ #: ../templates/dashboard/settings/shop-description.php:3
1110
+ #, php-format
1111
+ msgid "This is displayed on your <a href=\"%s\">shop page</a>."
1112
+ msgstr "Esto será mostrado en la <a href=\"%s\">página de tu tienda</a>."
1113
+
1114
+ #: ../classes/admin/views/html-vendor-settings-page.php:70
1115
+ msgid "Save Shop Settings"
1116
+ msgstr "Guardar la configuración de la tienda"
1117
+
1118
+ #: ../classes/class-cron.php:87
1119
  #, php-format
1120
  msgid "Payment total: %s"
1121
  msgstr "Total de pago: %s"
1122
 
1123
+ #: ../classes/class-cron.php:148
1124
  msgid "Once Weekly"
1125
  msgstr "Semanal"
1126
 
1127
+ #: ../classes/class-cron.php:153
1128
  msgid "Once every two weeks"
1129
  msgstr "Bisemanal"
1130
 
1131
+ #: ../classes/class-cron.php:158
1132
  msgid "Once a month"
1133
  msgstr "Mensual"
1134
 
1135
+ #: ../classes/class-install.php:59 ../classes/class-install.php:213
1136
  msgid "Pending Vendor"
1137
  msgstr "Vendedor Pendiente"
1138
 
1139
+ #: ../classes/class-install.php:164
1140
  msgid "Vendor Dashboard"
1141
  msgstr "Dashboard del Vendedor"
1142
 
1143
+ #: ../classes/front/class-vendor-cart.php:41
1144
+ #: ../classes/front/class-vendor-shop.php:263
 
 
 
 
1145
  msgid "Sold by"
1146
  msgstr "Vendido por"
1147
 
1148
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:46
 
 
 
 
1149
  msgid "Order marked shipped."
1150
  msgstr "Marcar como orden enviada."
1151
 
1152
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:72
1153
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:73
1154
+ #: ../classes/front/orders/class-orders.php:144
1155
+ #: ../classes/front/orders/class-orders.php:145
1156
+ msgid "Tracking number"
1157
+ msgstr "Número de Tracking"
1158
 
1159
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:75
1160
+ #: ../classes/front/orders/class-orders.php:147
1161
+ msgid "Success. Your tracking number has been updated."
1162
+ msgstr "Éxito. Tu número de tracking ha sido actualizado."
1163
 
1164
+ #: ../classes/front/orders/class-export-csv.php:37
1165
  msgid "Extra data"
1166
  msgstr "Data adicional"
1167
 
1168
+ #: ../classes/front/orders/class-export-csv.php:38
1169
+ #: ../templates/dashboard/reports.php:18
1170
+ #: ../templates/emails/admin-new-order.php:23
1171
+ #: ../templates/emails/notify-vendor-shipped.php:23
1172
  msgid "Quantity"
1173
  msgstr "Cantidad"
1174
 
1175
+ #: ../classes/front/orders/class-orders.php:107
1176
  msgid ""
1177
  "You haven't selected a product's orders to view! Please go back to the "
1178
  "Vendor Dashboard and click Show Orders on the product you'd like to view."
1181
  "Dashboard del Vendedor y haz click en Mostrar Órdenes en el producto que "
1182
  "quieres ver."
1183
 
1184
+ #: ../classes/front/orders/class-orders.php:111
1185
  msgid "No orders."
1186
  msgstr "No hay órdenes."
1187
 
1188
+ #: ../classes/front/orders/class-orders.php:209
 
 
 
 
 
 
 
 
 
1189
  msgid "Product Title"
1190
  msgstr "Título del Producto"
1191
 
1192
+ #: ../classes/front/orders/class-orders.php:210
1193
  msgid "Full name"
1194
  msgstr "Nombre completo"
1195
 
1196
+ #: ../classes/front/orders/class-orders.php:211
1197
  msgid "Address"
1198
  msgstr "Dirección"
1199
 
1200
+ #: ../classes/front/orders/class-orders.php:212
1201
  msgid "City"
1202
  msgstr "Ciudad"
1203
 
1204
+ #: ../classes/front/orders/class-orders.php:213
1205
  msgid "State"
1206
  msgstr "Estado"
1207
 
1208
+ #: ../classes/front/orders/class-orders.php:214
1209
  msgid "Zip"
1210
  msgstr "Zip"
1211
 
1212
+ #: ../classes/front/orders/class-orders.php:215
1213
  msgid "Email address"
1214
  msgstr "Dirección de email"
1215
 
1216
+ #: ../classes/front/orders/class-submit-comment.php:41
1217
  msgid "You've left the comment field empty!"
1218
  msgstr "¡Has dejado el campo de comentarios vacío!"
1219
 
1220
+ #: ../classes/front/orders/class-submit-comment.php:63
1221
  msgid "Success. The customer has been notified of your comment."
1222
  msgstr "Éxito. El cliente ha sido notificado de tu comentario."
1223
 
1224
+ #: ../classes/front/signup/class-vendor-signup.php:44
1225
+ #: ../templates/dashboard/denied.php:22
1226
  msgid "Apply to become a vendor? "
1227
+ msgstr "Aplicar para convertirse en un vendedor!"
1228
 
1229
+ #: ../classes/front/signup/class-vendor-signup.php:53
1230
+ #: ../templates/dashboard/denied.php:33
1231
  #, php-format
1232
  msgid "I have read and accepted the <a href=\"%s\">terms and conditions</a>"
1233
  msgstr "Leí y acepto los <a href=\"%s\">términos y condiciones</a>"
1234
 
1235
+ #: ../classes/front/signup/class-vendor-signup.php:87
1236
  msgid "Application denied. You are an administrator."
1237
  msgstr "Aplicación denegada. Eres un administrador."
1238
 
1239
+ #: ../classes/front/signup/class-vendor-signup.php:89
1240
  msgid "Your application has been submitted."
1241
+ msgstr "Su solicitud ha sido enviada."
1242
 
1243
+ #: ../classes/front/signup/class-vendor-signup.php:125
1244
  msgid "You must accept the terms and conditions to become a vendor."
1245
  msgstr "Debes aceptar los términos y condiciones para postular a vendedor."
1246
 
1247
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:43
1248
  msgid "PayPal Adaptive Payments"
1249
  msgstr "PayPal Adaptive Payments"
1250
 
1251
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:119
1252
  #, php-format
1253
  msgid ""
1254
  "Something went wrong. Response from PayPal invalidated this order. Status: "
1256
  msgstr ""
1257
  "Algo salió mal. La respuesta de PayPal invalidó esta orden. Estado: %s."
1258
 
1259
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:124
1260
  msgid "IPN payment completed"
1261
  msgstr "Pago IPN completado"
1262
 
1263
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:146
1264
  msgid "Enable PayPal Adaptive Payments"
1265
  msgstr "Habilitar PayPal Adaptive Payments"
1266
 
1267
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:152
1268
  msgid "Method Title"
1269
  msgstr "Título del Método"
1270
 
1271
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:153
1272
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:70
1273
  msgid "This controls the title which the user sees during checkout."
1274
  msgstr "Esto controla el título que el usuario verá durante el checkout."
1275
 
1276
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:154
1277
  msgid "PayPal"
1278
  msgstr "PayPal"
1279
 
1280
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:159
1281
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:75
1282
  msgid "Description"
1283
  msgstr "Descripción"
1284
 
1285
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:160
1286
  msgid "This controls the description which the user sees during checkout."
1287
  msgstr "Esto controla la descripción que el usuario verá durante el checkout."
1288
 
1289
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:161
1290
  msgid "Pay via PayPal!"
1291
  msgstr "¡Pagar vía PayPal!"
1292
 
1293
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:172
1294
  msgid "Live Credentials"
1295
  msgstr "Credenciales Publicadas"
1296
 
1297
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:174
1298
  #, php-format
1299
  msgid ""
1300
  "You must have an <a href=\"%s\">Application ID</a> to process live "
1303
  "Debes tener un <a href=\"%s\">ID de postulación</a> para procesar "
1304
  "transacciones. No se necesita uno para probar en modo Sandbox."
1305
 
1306
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:179
1307
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:213
1308
  msgid "PayPal Email"
1309
  msgstr "Email de PayPal"
1310
 
1311
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:180
1312
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:214
1313
  msgid "The email address main payments should go to."
1314
  msgstr "El email es la dirección principal a la que deben ir los pagos"
1315
 
1316
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:185
1317
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:219
1318
  msgid "API Username"
1319
  msgstr "API Nombre de Usuario"
1320
 
1321
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:190
1322
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:224
1323
  msgid "API Password"
1324
  msgstr "API Contraseña"
1325
 
1326
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:195
1327
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:229
1328
  msgid "API Signature"
1329
  msgstr "API Firma"
1330
 
1331
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:200
1332
  msgid "Application ID"
1333
  msgstr "ID de Postuación"
1334
 
1335
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:202
1336
  msgid "Only required when doing live transactions."
1337
  msgstr "Solo requerida para hacer transacciones."
1338
 
1339
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:206
1340
  msgid "Sandbox Credentials"
1341
  msgstr "Credenciales de Sandbox"
1342
 
1343
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:208
1344
  #, php-format
1345
  msgid ""
1346
  "You can signup for a sandbox developer account <a href=\"%s\">here</a>. You "
1350
  "\">aquí</a>. Necesitas una cuenta de Developer si quieres habilitar el modo "
1351
  "de Sandbox para hacer pruebas."
1352
 
1353
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:240
1354
  msgid "Misc. Settings"
1355
  msgstr "Otros Ajustes"
1356
 
1357
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:245
1358
  msgid "Enable PayPal Sandbox mode"
1359
  msgstr "Habilitar modo Sandbox para PayPal"
1360
 
1361
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:251
1362
  msgid "Enable logging"
1363
  msgstr "Habilitar logging"
1364
 
1365
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:269
1366
  msgid ""
1367
  "The PayPal Adaptive Payments gateway can instantly pay your vendors their "
1368
  "due commission (if enabled). Also used to mass pay vendors on a schedule / "
1373
  "para pagar en masa a los vendedores en una fecha o método manual (si está "
1374
  "habilitado)."
1375
 
1376
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1377
  msgid "Gateway Disabled"
1378
  msgstr "Gateway Deshabilitado"
1379
 
1380
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1381
  #, php-format
1382
  msgid "%s does not support your store currency."
1383
  msgstr "%s no soporta la moneda de tu cuenta."
1384
 
1385
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:369
1386
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:483
1387
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:150
1388
  #, php-format
1389
  msgid "Error: %s"
1390
  msgstr "Error: %s"
1391
 
1392
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:378
1393
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:379
1394
  #, php-format
1395
  msgid "Error ID: %s. %s"
1396
  msgstr "Error ID: %s. %s"
1397
 
1398
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:115
1399
  msgid "No vendors found to pay. Maybe they haven't set a PayPal address?"
1400
  msgstr ""
1401
  "No se encontraron vendedores que pagar. Puede que no tengan configurada su "
1402
  "dirección de PayPal."
1403
 
1404
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:164
1405
  msgid "All due commission has been paid for."
1406
  msgstr "Se han pagado todas las comisiones adeudadas."
1407
 
1408
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:170
1409
  msgid ""
1410
  "All due commission has been paid for, but I could not clear it from their "
1411
  "profiles due to an internal error. Commission will still be listed as due. "
1415
  "perfil por un error interno. Las comisiones van a seguir como adeudadas. Por "
1416
  "favor marcar manualmente como pagadas desde la Página de Comisiones."
1417
 
1418
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:205
1419
  msgid "WooCommerce: Mass payments for vendors update"
1420
  msgstr "WooCommerce: Actualizar los pagos en masa de vendedores"
1421
 
1422
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:207
1423
  msgid ""
1424
  "Hello! A payment was just triggered to mass pay all vendors their due "
1425
  "commission."
1427
  "Hola! Un pago ha sido desatado para pagar a todos los vendedores su comisión "
1428
  "adeudada."
1429
 
1430
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:208
1431
  #, php-format
1432
  msgid "Payment status: %s."
1433
  msgstr "Estado del Pago: %s."
1434
 
1435
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:209
1436
  #, php-format
1437
  msgid "Payment message: %s."
1438
  msgstr "Mensaje del Pago: %s."
1439
 
1440
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:212
1441
  #, php-format
1442
  msgid "Payment total: %s."
1443
  msgstr "Total del Pago: %s."
1444
 
1445
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:35
1446
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:71
1447
+ msgid "WC Vendors Test Gateway"
1448
+ msgstr "WC Pasarela de prueba para vendedor"
1449
+
1450
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:36
1451
  msgid ""
1452
+ "This gateway will set orders to processing upon receipt allowing you to test "
1453
+ "transactions in your store. Some WooCommerce included gateways have "
1454
+ "problems with this - you should use this gateway for all of your non-PayPal "
1455
+ "testing."
1456
  msgstr ""
1457
+ "Esta pasarela pondrá órdenes en procesamiento tras la recepción que permite "
1458
+ "poner a prueba las transacciones en su tienda. Algunos portales de "
1459
+ "WooCommerce incluido tienen problemas con esto - usted debe utilizar este "
1460
+ "portal para todas las pruebas - pero no para las pruebas de PayPal."
1461
 
1462
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:64
1463
+ msgid "Enable WC Vendors Test Gateway Payment"
1464
+ msgstr "Habilitar WC Vendors pasarela de prueba con pago"
1465
+
1466
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:68
1467
+ msgid "Title"
1468
+ msgstr "Título"
1469
+
1470
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:77
1471
+ msgid "Payment method description that the customer will see on your checkout."
1472
+ msgstr "Forma de pago descripción que el cliente verá en su caja."
1473
+
1474
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:78
1475
  msgid ""
1476
+ "This is a test gateway -- not to be used on live sites for live "
1477
+ "transactions. <a href=\"http://www.wcvendors.com/\" target=\"top\">Click "
1478
+ "here to visit WCVendors.com</a>."
1479
  msgstr ""
1480
+ "Este es un portal de prueba--no debe usarse en sitios en vivo para "
1481
+ "transacciones en vivo. <a href=\"http://www.wcvendors.com/\" target=\"top"
1482
+ "\">Haga clic aquí para visitar WCVendors.com</a>."
1483
 
1484
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:82
1485
+ msgid "Instructions"
1486
+ msgstr "Instrucciones"
1487
 
1488
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:84
1489
+ msgid ""
1490
+ "Success! Your test order is now marked as processing and any vendors will "
1491
+ "be sent an email as long as you have the Notify Vendors email enabled under "
1492
+ "WooCommerce--Settings--Emails."
1493
+ msgstr ""
1494
+ "¡ Completo! La orden de la prueba ya está marcado como procesando se "
1495
+ "enviará un correo electrónico, siempre y cuando usted tiene la notificacion "
1496
+ "de correo a vendedores permitidos bajo la Configuración en WooCommerce - "
1497
+ "Configuración de correos electrónicos."
1498
 
1499
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:124
1500
+ msgid "Test gateway transation complete. Order processing."
1501
+ msgstr "Pasarela de prueba transacción completa. Procesando la orden"
1502
 
1503
+ #: ../templates/dashboard/denied.php:8
1504
+ msgid ""
1505
+ "Your account has not yet been approved to become a vendor. When it is, you "
1506
+ "will receive an email telling you that your account is approved!"
1507
+ msgstr ""
1508
+ "Tu cuenta no ha sido aprobada para convertirte en un vendedor. ¡De ser "
1509
+ "aprobada, se te enviará un email!"
1510
+
1511
+ #: ../templates/dashboard/denied.php:12
1512
+ msgid "Your account is not setup as a vendor."
1513
+ msgstr "No tienes una cuenta configurada como vendedor."
1514
 
1515
+ #: ../templates/dashboard/denied.php:53
1516
+ msgid "Submit"
1517
+ msgstr "Enviar"
1518
 
1519
+ #: ../templates/dashboard/orders.php:7 ../templates/dashboard/orders.php:10
1520
  msgid "Hide items"
1521
  msgstr "Esconder elementos"
1522
 
1523
+ #: ../templates/dashboard/orders.php:8 ../templates/dashboard/orders.php:68
1524
  msgid "View items"
1525
  msgstr "Ver elementos"
1526
 
1527
+ #: ../templates/dashboard/orders.php:37
1528
  msgid "Links"
1529
  msgstr "Links"
1530
 
1531
+ #: ../templates/dashboard/orders.php:68
1532
  msgid "Unmark shipped"
1533
  msgstr "Desmarcar enviado"
1534
 
1535
+ #: ../templates/dashboard/orders.php:68
1536
+ msgid "Tracking"
1537
+ msgstr "Seguimiento"
1538
 
1539
+ #: ../templates/dashboard/orders.php:118
1540
  msgid "You have no orders during this period."
1541
  msgstr "No tienes órdenes durante este periodo."
1542
 
1543
+ #: ../templates/dashboard/reports.php:1
1544
  msgid "Sales Report"
1545
  msgstr "Reporte de Ventas"
1546
 
1547
+ #: ../templates/dashboard/reports.php:20
1548
  msgid "Rate"
1549
  msgstr "Evaluar"
1550
 
1551
+ #: ../templates/dashboard/reports.php:47
1552
  msgid "Show Orders"
1553
  msgstr "Mostrar Órdenes"
1554
 
1555
+ #: ../templates/dashboard/reports.php:56
1556
  msgid "Totals"
1557
  msgstr "Totales"
1558
 
1559
+ #: ../templates/dashboard/reports.php:71
1560
  msgid "You have no sales during this period."
1561
  msgstr "No has tenido ventas durante este periodo."
1562
 
1563
+ #: ../templates/dashboard/reports.php:82
1564
  msgid "You haven't made any sales yet."
1565
  msgstr "No ha hecho ninguna venta por ahora."
1566
 
1567
+ #: ../templates/dashboard/settings/settings.php:47
 
 
 
 
 
 
 
 
 
 
 
 
1568
  msgid "Save"
1569
  msgstr "Guardar"
1570
 
1571
+ #: ../templates/emails/admin-new-order.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1572
  #, php-format
1573
  msgid "You have received an order from %s. Their order is as follows:"
1574
  msgstr "Has recibido una orden de %s. La orden la siguiente:"
1575
 
1576
+ #: ../templates/emails/admin-new-order.php:17
1577
+ #: ../templates/emails/notify-vendor-shipped.php:17
1578
  #, php-format
1579
  msgid "Order: %s"
1580
  msgstr "Orden: %s"
1581
 
1582
+ #: ../templates/emails/admin-new-order.php:24
1583
+ #: ../templates/emails/notify-vendor-shipped.php:24
1584
  msgid "Price"
1585
  msgstr "Precio"
1586
 
1587
+ #: ../templates/emails/admin-new-order.php:50
1588
+ #: ../templates/emails/notify-vendor-shipped.php:50
1589
  msgid "Customer details"
1590
  msgstr "Detalle del cliente"
1591
 
1592
+ #: ../templates/emails/admin-new-order.php:53
1593
+ #: ../templates/emails/notify-vendor-shipped.php:53
1594
  msgid "Email:"
1595
  msgstr "Email:"
1596
 
1597
+ #: ../templates/emails/admin-new-order.php:56
1598
+ #: ../templates/emails/notify-vendor-shipped.php:56
1599
  msgid "Tel:"
1600
  msgstr "Tel:"
1601
 
1602
+ #: ../templates/emails/application-status.php:5
1603
  #, php-format
1604
  msgid "Hi there. This is a notification about a vendor application on %s."
1605
  msgstr "Hola. Esta es una notificación de la postulación de un vendedor en %s."
1606
 
1607
+ #: ../templates/emails/application-status.php:8
1608
  #, php-format
1609
  msgid "Application status: %s"
1610
  msgstr "Estado de la postulación: %s"
1611
 
1612
+ #: ../templates/emails/application-status.php:9
1613
  #, php-format
1614
  msgid "Applicant username: %s"
1615
  msgstr "Username del postulante: %s"
1616
 
1617
+ #: ../templates/emails/new-product.php:5
1618
  #, php-format
1619
  msgid "Hi there. This is a notification about a new product on %s."
1620
  msgstr "Hola. Esta es una notificación sobre un nuevo producto en %s."
1621
 
1622
+ #: ../templates/emails/new-product.php:8
1623
  #, php-format
1624
  msgid "Product title: %s"
1625
  msgstr "Título del producto: %s"
1626
 
1627
+ #: ../templates/emails/new-product.php:9
1628
  #, php-format
1629
  msgid "Submitted by: %s"
1630
  msgstr "Enviado por: %s"
1631
 
1632
+ #: ../templates/emails/new-product.php:10
1633
  #, php-format
1634
  msgid "Edit product: %s"
1635
  msgstr "Editar producto: %s"
1636
 
1637
+ #: ../templates/emails/notify-vendor-shipped.php:13
1638
  msgid ""
1639
  "A vendor has marked part of your order as shipped. The items that are "
1640
  "shipped are as follows:"
1642
  "Un vendedor ha marcado parte de tu orden como enviada. Los elementos serán "
1643
  "enviados de la siguiente forma:"
1644
 
1645
+ #: ../templates/orders/comments/add-new-comment.php:11
1646
  msgid "Add comment"
1647
  msgstr "Agregar comentario"
1648
 
1649
+ #: ../templates/orders/comments/existing-comments.php:9
1650
  #, php-format
1651
  msgid "added %s ago"
1652
  msgstr "Agregado %s atrás"
1653
 
1654
+ #: ../templates/orders/csv-export.php:6
1655
  msgid "Export orders"
1656
  msgstr "Exportar órdenes"
1657
 
1658
+ #: ../templates/orders/customer-note/customer-note.php:4
1659
  msgid "Customer note"
1660
  msgstr "Nota del cliente"
1661
 
1662
+ #: ../templates/orders/customer-note/customer-note.php:8
1663
  msgid "No customer note."
1664
  msgstr "No hay nota del cliente."
1665
 
1666
+ #: ../templates/orders/orders.php:84
1667
  #, php-format
1668
  msgid "Comments (%s)"
1669
  msgstr "Comentarios (%s)"
1670
 
1671
+ #: ../templates/orders/shipping/shipping-form.php:46
1672
  msgid "Provider:"
1673
  msgstr "Proveedor:"
1674
 
1675
+ #: ../templates/orders/shipping/shipping-form.php:48
1676
  msgid "Custom Provider"
1677
  msgstr "Proveedor Personalizado"
1678
 
1679
+ #: ../templates/orders/shipping/shipping-form.php:68
1680
  msgid "Provider Name:"
1681
  msgstr "Nombre del Proveedor:"
1682
 
1683
+ #: ../templates/orders/shipping/shipping-form.php:76
1684
  msgid "Tracking number:"
1685
  msgstr "Número de Tracking:"
1686
 
1687
+ #: ../templates/orders/shipping/shipping-form.php:84
1688
  msgid "Tracking link:"
1689
  msgstr "Enlace de Tracking:"
1690
 
1691
+ #: ../templates/orders/shipping/shipping-form.php:93
1692
  msgid "Date shipped:"
1693
  msgstr "Fecha de envío:"
1694
 
1695
+ #: ../templates/orders/shipping/shipping-form.php:101
1696
  msgid "Preview:"
1697
  msgstr "Previsualizar:"
1698
 
1699
+ #: ../templates/orders/shipping/shipping-form.php:101
1700
  msgid "Click here to track your shipment"
1701
  msgstr "Haz click para trackear tu envío"
1702
 
1703
+ #: ../templates/orders/shipping/shipping-form.php:110
1704
  msgid "Update tracking number"
1705
  msgstr "Actualizar el numero de tracking"
1706
 
1707
+ #: ../templates/orders/shipping/shipping-form.php:112
1708
  msgid "Mark as shipped"
1709
  msgstr "Marcar como enviada"
1710
 
1711
+ #: ../templates/orders/table-body.php:25
1712
  #, php-format
1713
  msgid "Quantity: %d"
1714
  msgstr "Cantidad: %d"
1715
+
1716
+ #~ msgid "Year"
1717
+ #~ msgstr "Año"
1718
+
1719
+ #~ msgid ""
1720
+ #~ "The default rate the vendor receives for each product. If a product has a "
1721
+ #~ "commission rate already set, this value will be ignored for that product."
1722
+ #~ msgstr ""
1723
+ #~ "La tarifa por defecto que cada vendedor recibe por producto. Si un "
1724
+ #~ "producto tiene una tarifa de comisión configurada, el valor será ignorado "
1725
+ #~ "para ese producto."
1726
+
1727
+ #~ msgid ""
1728
+ #~ "This will show a checkbox on the My Account page's registration form "
1729
+ #~ "asking if the user would like to apply to be a vendor. Also, on the "
1730
+ #~ "Vendor Dashboard, users can apply to become a vendor."
1731
+ #~ msgstr ""
1732
+ #~ "Esto va a mostrar un checkbox en el formulario de registro de la página "
1733
+ #~ "de Mi Cuenta, preguntando al usuario si quiere solicitar ser un vendedor. "
1734
+ #~ "También, en el Dashboard del Vendedor, los usuarios pueden postular para "
1735
+ #~ "convertirse en vendedor."
1736
+
1737
+ #~ msgid ""
1738
+ #~ "The tax collected on a vendor's product will be given to him in its "
1739
+ #~ "entirety"
1740
+ #~ msgstr ""
1741
+ #~ "El impuesto recolectado por producto será dado completo al vendedor."
1742
+
1743
+ #~ msgid "Enable HTML for a vendor's shop description by default"
1744
+ #~ msgstr "Habilitar por defecto HTML para la descripción de la tienda"
1745
+
1746
+ #~ msgid ""
1747
+ #~ "This will override the HTML Shop description output on product-archive "
1748
+ #~ "pages."
1749
+ #~ msgstr ""
1750
+ #~ "Esto va a sobrescribir el HTML de la descripción de la Tienda en las "
1751
+ #~ "páginas de producto-archivo."
1752
+
1753
+ #~ msgid "Hide these areas of the add product page for vendors"
1754
+ #~ msgstr "Esconder estas áreas de la Página de Agregar Producto"
1755
+
1756
+ #~ msgid "Hide these product types from the vendor"
1757
+ #~ msgstr "Esconder estos tipos de productos para el vendedor"
1758
+
1759
+ #~ msgid "Hide these product options from the vendor"
1760
+ #~ msgstr "Esconder estas opciones de productos para el vendedor"
1761
+
1762
+ #~ msgid ""
1763
+ #~ "For this to work, customers must checkout with the PayPal Adaptive "
1764
+ #~ "Payments gateway. Using other gateways will not pay vendors instantly"
1765
+ #~ msgstr ""
1766
+ #~ "Para que esto funcione los clientes debe pagar por PayPal Adaptive "
1767
+ #~ "Payments. No se podrá pagar automáticamente a los vendedores si es de "
1768
+ #~ "otra forma."
1769
+
1770
+ #~ msgid "Order unmarked shipped."
1771
+ #~ msgstr "Desmarcar como orden enviada."
1772
+
1773
+ #~ msgid ""
1774
+ #~ "Your account is not setup as a vendor yet. If you would like to "
1775
+ #~ "register, please complete this page!"
1776
+ #~ msgstr ""
1777
+ #~ "Tu cuenta no está configurada como vendedor aún. ¡Si quieres registrarte "
1778
+ #~ "completa esta página!"
1779
+
1780
+ #~ msgid "Control Center"
1781
+ #~ msgstr "Centro de Mando"
1782
+
1783
+ #~ msgid "My shop"
1784
+ #~ msgstr "Mi tienda"
1785
+
1786
+ #~ msgid "My settings"
1787
+ #~ msgstr "Mis ajustes"
1788
+
1789
+ #~ msgid "Submit a product"
1790
+ #~ msgstr "Enviar un producto"
languages/wcvendors-fa_IR.mo ADDED
Binary file
languages/wcvendors-fa_IR.po ADDED
@@ -0,0 +1,1695 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WC Vendors\n"
4
+ "POT-Creation-Date: 2015-04-26 01:43+0330\n"
5
+ "PO-Revision-Date: 2015-04-26 01:46+0330\n"
6
+ "Last-Translator: Alireza Rastegar <alireza.mine@gmail.com>\n"
7
+ "Language-Team: Alireza Rastegar <info@mining-eng.ir>\n"
8
+ "Language: fa_IR\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.1\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Plural-Forms: nplurals=1; plural=0;\n"
15
+ "X-Poedit-KeywordsList: __;_e\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-SearchPath-1: ..\n"
19
+
20
+ #: ../class-wc-vendors.php:71 ../classes/admin/class-admin-reports.php:41
21
+ #: ../classes/admin/class-admin-users.php:371
22
+ msgid "WC Vendors"
23
+ msgstr "فروشندگان ووکامرس"
24
+
25
+ #: ../class-wc-vendors.php:98
26
+ msgid ""
27
+ "<b>WC Vendors is disabled</b>. WC Vendors requires a minimum of WooCommerce "
28
+ "v2.2.0."
29
+ msgstr ""
30
+ "<b> افزونه فروشندگان ووکامرس غیر فعال شده است</b>. این افزونه حداقل نیاز به "
31
+ "WooCommerce v2.2.0 دارد"
32
+
33
+ #: ../class-wc-vendors.php:225 ../classes/admin/settings/sf-options.php:159
34
+ msgid "Capabilities"
35
+ msgstr "دسترسی‌ها"
36
+
37
+ #: ../class-wc-vendors.php:249 ../classes/admin/settings/sf-options.php:4
38
+ msgid "General"
39
+ msgstr "عمومی"
40
+
41
+ #: ../class-wc-vendors.php:284
42
+ msgid "Documentation/KB"
43
+ msgstr "مستندات / KB"
44
+
45
+ #: ../class-wc-vendors.php:285
46
+ msgid "Help Forums"
47
+ msgstr "انجمن راهنما"
48
+
49
+ #: ../class-wc-vendors.php:286
50
+ msgid "Paid Support"
51
+ msgstr "هزینه پشتیبانی"
52
+
53
+ #: ../class-wc-vendors.php:308
54
+ #, php-format
55
+ msgid ""
56
+ "WC Vendors requires the Vendor shop page value be set <a href=\"%s\">click "
57
+ "here to set it.</a> | <a href=\"%s\">Hide Notice</a>"
58
+ msgstr ""
59
+ "افزونه فروشندگان ووکامرس نیاز به تنظیمات صفحه فروشندگان دارد<a href=\"%s"
60
+ "\">جهت انجام تنظیمات اینجا کلیک کنید.</a> | <a href=\"%s\">مخفی کردن "
61
+ "اطلاعیه</a>"
62
+
63
+ #: ../class-wc-vendors.php:316
64
+ #, php-format
65
+ msgid ""
66
+ "You must save your permalinks once you have modified your vendor page. <a "
67
+ "href=\"%s\">click here to save</a>. | <a href=\"%s\">Hide Notice</a>"
68
+ msgstr ""
69
+ "زمانی که پیوند یکتا را تغییر میدهید باید صفحه فروشندگان را در تنظیمات تغییر "
70
+ "دهید. <a href=\"%s\">برای تنظیمات کلیک کنید</a>. | <a href=\"%s\">مخفی کردن "
71
+ "این اطلاعیه</a>"
72
+
73
+ #: ../classes/admin/class-admin-page.php:27
74
+ msgid "Vendors shipped"
75
+ msgstr "حمل و نقل در فروشندگان"
76
+
77
+ #: ../classes/admin/class-admin-page.php:50
78
+ msgid "Vendors Shipped"
79
+ msgstr "عرضه در فروشندگان"
80
+
81
+ #: ../classes/admin/class-admin-page.php:72
82
+ #: ../classes/admin/class-admin-page.php:132
83
+ #: ../classes/admin/class-admin-reports.php:339
84
+ #: ../classes/admin/class-product-meta.php:149
85
+ #: ../classes/admin/class-product-meta.php:165
86
+ #: ../templates/dashboard/reports.php:19
87
+ msgid "Commission"
88
+ msgstr "کمیسیون"
89
+
90
+ #: ../classes/admin/class-admin-page.php:251
91
+ #: ../classes/admin/class-admin-reports.php:168
92
+ #: ../templates/dashboard/reports.php:17
93
+ #: ../templates/emails/admin-new-order.php:22
94
+ #: ../templates/emails/notify-vendor-shipped.php:22
95
+ msgid "Product"
96
+ msgstr "محصول"
97
+
98
+ #: ../classes/admin/class-admin-page.php:252
99
+ #: ../classes/admin/class-vendor-admin-dashboard.php:255
100
+ msgid "Order ID"
101
+ msgstr "شناسه سفارش"
102
+
103
+ #: ../classes/admin/class-admin-page.php:253
104
+ #: ../classes/admin/class-admin-reports.php:169
105
+ #: ../classes/admin/class-product-meta.php:44
106
+ #: ../classes/admin/class-product-meta.php:185
107
+ #: ../classes/admin/class-product-meta.php:221
108
+ msgid "Vendor"
109
+ msgstr "فروشنده"
110
+
111
+ #: ../classes/admin/class-admin-page.php:254
112
+ #: ../classes/admin/class-admin-reports.php:170
113
+ #: ../classes/admin/class-admin-reports.php:344
114
+ #: ../classes/admin/class-admin-reports.php:368
115
+ #: ../classes/admin/class-vendor-admin-dashboard.php:258
116
+ #: ../templates/dashboard/orders.php:35
117
+ msgid "Total"
118
+ msgstr "جمع کل"
119
+
120
+ #: ../classes/admin/class-admin-page.php:255
121
+ #: ../classes/admin/class-admin-reports.php:172
122
+ msgid "Status"
123
+ msgstr "وضعیت"
124
+
125
+ #: ../classes/admin/class-admin-page.php:256
126
+ #: ../classes/admin/class-vendor-admin-dashboard.php:259
127
+ #: ../classes/front/orders/class-orders.php:216
128
+ #: ../templates/dashboard/orders.php:36
129
+ msgid "Date"
130
+ msgstr "تاریخ"
131
+
132
+ #: ../classes/admin/class-admin-page.php:293
133
+ msgid "Mark paid"
134
+ msgstr "پرداخت شده"
135
+
136
+ #: ../classes/admin/class-admin-page.php:294
137
+ msgid "Mark due"
138
+ msgstr "در انتظار پرداخت"
139
+
140
+ #: ../classes/admin/class-admin-page.php:295
141
+ msgid "Mark reversed"
142
+ msgstr "لغو شده"
143
+
144
+ #: ../classes/admin/class-admin-page.php:312
145
+ #: ../classes/admin/class-admin-page.php:316
146
+ msgid "Filter"
147
+ msgstr "فیلتر"
148
+
149
+ #: ../classes/admin/class-admin-page.php:351
150
+ msgid "Show all dates"
151
+ msgstr "نمایش همه تاریخ ها"
152
+
153
+ #. translators: 1: month name, 2: 4-digit year
154
+ #: ../classes/admin/class-admin-page.php:364
155
+ #, php-format
156
+ msgid "%1$s %2$d"
157
+ msgstr ""
158
+
159
+ #: ../classes/admin/class-admin-page.php:386
160
+ msgid "Show all Statuses"
161
+ msgstr "نمایش همه وضعیت ها"
162
+
163
+ #: ../classes/admin/class-admin-page.php:412
164
+ msgid "Commission marked paid."
165
+ msgstr "کمیسیون پرداخت شده."
166
+
167
+ #: ../classes/admin/class-admin-page.php:419
168
+ msgid "Commission marked due."
169
+ msgstr "کمیسیون در انتظار پرداخت."
170
+
171
+ #: ../classes/admin/class-admin-page.php:426
172
+ msgid "Commission marked reversed."
173
+ msgstr "کمیسیون لغو شد"
174
+
175
+ #: ../classes/admin/class-admin-reports.php:44
176
+ msgid "Overview"
177
+ msgstr "نمای کلی"
178
+
179
+ #: ../classes/admin/class-admin-reports.php:50
180
+ msgid "Commission by vendor"
181
+ msgstr "کمیسیون فروشنده"
182
+
183
+ #: ../classes/admin/class-admin-reports.php:56
184
+ msgid "Commission by product"
185
+ msgstr "کمیسیون محصول"
186
+
187
+ #: ../classes/admin/class-admin-reports.php:115
188
+ #: ../templates/dashboard/date-picker.php:3
189
+ msgid "From:"
190
+ msgstr "از:"
191
+
192
+ #: ../classes/admin/class-admin-reports.php:117
193
+ #: ../templates/dashboard/date-picker.php:7
194
+ msgid "To:"
195
+ msgstr "به:"
196
+
197
+ #: ../classes/admin/class-admin-reports.php:119
198
+ #: ../classes/admin/class-admin-reports.php:277
199
+ #: ../templates/dashboard/date-picker.php:12
200
+ msgid "Show"
201
+ msgstr "نمایش"
202
+
203
+ #: ../classes/admin/class-admin-reports.php:125
204
+ msgid "Total paid in range"
205
+ msgstr "جمع کل پرداختی ها"
206
+
207
+ #: ../classes/admin/class-admin-reports.php:128
208
+ #: ../classes/admin/class-admin-reports.php:135
209
+ #: ../classes/admin/class-admin-reports.php:142
210
+ msgid "n/a"
211
+ msgstr "n/a"
212
+
213
+ #: ../classes/admin/class-admin-reports.php:132
214
+ msgid "Total due in range"
215
+ msgstr "جمع کل قابل پرداخت\t"
216
+
217
+ #: ../classes/admin/class-admin-reports.php:139
218
+ msgid "Total reversed in range"
219
+ msgstr "جمع کل لغو شده ها"
220
+
221
+ #: ../classes/admin/class-admin-reports.php:149
222
+ msgid "Recent Commission"
223
+ msgstr "درآمدهای اخیر"
224
+
225
+ #: ../classes/admin/class-admin-reports.php:167
226
+ #: ../classes/front/orders/class-orders.php:208
227
+ #: ../templates/dashboard/orders.php:33
228
+ msgid "Order"
229
+ msgstr "ترتیب"
230
+
231
+ #: ../classes/admin/class-admin-reports.php:171
232
+ msgid "Date &amp; Time"
233
+ msgstr "تاریخ و زمان"
234
+
235
+ #: ../classes/admin/class-admin-reports.php:180
236
+ msgid "N/A"
237
+ msgstr "N/A"
238
+
239
+ #: ../classes/admin/class-admin-reports.php:185
240
+ msgid "D j M Y \\a\\t h:ia"
241
+ msgstr ""
242
+
243
+ #: ../classes/admin/class-admin-reports.php:194
244
+ msgid "No commission yet"
245
+ msgstr "در حال حاضر درآمدی کسب نکرده اید"
246
+
247
+ #: ../classes/admin/class-admin-reports.php:228
248
+ msgid "Show:"
249
+ msgstr "نمایش:"
250
+
251
+ #: ../classes/admin/class-admin-reports.php:237
252
+ msgid "Search for a product&hellip;"
253
+ msgstr "جستجوی یک محصول ؛"
254
+
255
+ #: ../classes/admin/class-admin-reports.php:240
256
+ msgid "Type in a product name to start searching..."
257
+ msgstr "تایپ نام محصول برای شروع جستجو ..."
258
+
259
+ #: ../classes/admin/class-admin-reports.php:272
260
+ msgid "Select a vendor&hellip;"
261
+ msgstr "انتخاب یک فروشنده ;"
262
+
263
+ #: ../classes/admin/class-admin-reports.php:338
264
+ msgid "Month"
265
+ msgstr "ماهانه"
266
+
267
+ #: ../classes/admin/class-admin-reports.php:340
268
+ msgid "Tax"
269
+ msgstr "مالیات"
270
+
271
+ #: ../classes/admin/class-admin-reports.php:341
272
+ #: ../classes/admin/settings/sf-options.php:46
273
+ #: ../templates/dashboard/orders.php:34 ../templates/orders/orders.php:113
274
+ msgid "Shipping"
275
+ msgstr "حمل و نقل"
276
+
277
+ #: ../classes/admin/class-admin-reports.php:342
278
+ msgid "Reversed"
279
+ msgstr "لغو شده"
280
+
281
+ #: ../classes/admin/class-admin-reports.php:343
282
+ msgid "Paid"
283
+ msgstr "پرداخت شده"
284
+
285
+ #: ../classes/admin/class-admin-users.php:381
286
+ msgid "Enable HTML for the shop description"
287
+ msgstr "فعال کردن HTML در توضیحات فروشگاه"
288
+
289
+ #: ../classes/admin/class-admin-users.php:387
290
+ msgid "Shop name"
291
+ msgstr "نام فروشگاه"
292
+
293
+ #: ../classes/admin/class-admin-users.php:394
294
+ msgid "PayPal E-mail"
295
+ msgstr "ایمیل شما در PayPal"
296
+
297
+ #: ../classes/admin/class-admin-users.php:395
298
+ msgid "required"
299
+ msgstr "ضروری"
300
+
301
+ #: ../classes/admin/class-admin-users.php:402
302
+ msgid "Commission rate"
303
+ msgstr "نرخ کمیسیون:"
304
+
305
+ #: ../classes/admin/class-admin-users.php:403
306
+ #: ../classes/admin/class-product-meta.php:172
307
+ msgid "Leave blank for default"
308
+ msgstr "به صورت پیش فرض خالی بگذارید"
309
+
310
+ #: ../classes/admin/class-admin-users.php:409
311
+ #: ../classes/admin/views/html-vendor-settings-page.php:30
312
+ #: ../classes/front/class-vendor-shop.php:103
313
+ #: ../templates/dashboard/settings/seller-info.php:3
314
+ msgid "Seller info"
315
+ msgstr "مشخصات فروشنده"
316
+
317
+ #: ../classes/admin/class-admin-users.php:414
318
+ msgid "Shop description"
319
+ msgstr "توضیحات فروشگاه"
320
+
321
+ #: ../classes/admin/class-vendor-admin-dashboard.php:19
322
+ #: ../classes/class-install.php:166
323
+ msgid "Shop Settings"
324
+ msgstr "تنظیمات فروشگاه"
325
+
326
+ #: ../classes/admin/class-vendor-admin-dashboard.php:20
327
+ #: ../classes/admin/class-vendor-admin-dashboard.php:142
328
+ #: ../classes/admin/settings/sf-options.php:163
329
+ #: ../classes/class-install.php:165 ../templates/dashboard/orders.php:24
330
+ msgid "Orders"
331
+ msgstr "سفارشات"
332
+
333
+ #: ../classes/admin/class-vendor-admin-dashboard.php:53
334
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:101
335
+ msgid "Your PayPal address is not a valid email address."
336
+ msgstr "آدرس PayPal شما یک آدرس ایمیل معتبر نیست."
337
+
338
+ #: ../classes/admin/class-vendor-admin-dashboard.php:63
339
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:110
340
+ msgid "That shop name is already taken. Your shop name must be unique."
341
+ msgstr ""
342
+ "این نام فروشگاه قبلا گرفته شده است. نام فروشگاه شما باید منحصر به فرد باشد."
343
+
344
+ #: ../classes/admin/class-vendor-admin-dashboard.php:83
345
+ #: ../classes/admin/settings/classes/sf-class-settings.php:366
346
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:128
347
+ msgid "Settings saved."
348
+ msgstr "تنظیمات ذخیره شد."
349
+
350
+ #: ../classes/admin/class-vendor-admin-dashboard.php:256
351
+ msgid "Customer"
352
+ msgstr "مشتری"
353
+
354
+ #: ../classes/admin/class-vendor-admin-dashboard.php:257
355
+ #: ../classes/admin/settings/sf-options.php:95
356
+ #: ../classes/admin/settings/sf-options.php:221
357
+ msgid "Products"
358
+ msgstr "محصولات"
359
+
360
+ #: ../classes/admin/class-vendor-admin-dashboard.php:260
361
+ msgid "Shipped"
362
+ msgstr "ارسال پستی"
363
+
364
+ #: ../classes/admin/class-vendor-admin-dashboard.php:293
365
+ #: ../templates/dashboard/orders.php:68
366
+ msgid "Mark shipped"
367
+ msgstr "انتخاب به عنوان محصول ارسال شده"
368
+
369
+ #: ../classes/admin/class-vendor-admin-dashboard.php:317
370
+ msgid "Orders marked shipped."
371
+ msgstr "سفارشات پستی مشخص شده اند."
372
+
373
+ #: ../classes/admin/class-vendor-applicants.php:26
374
+ msgid "Approve"
375
+ msgstr "تایید"
376
+
377
+ #: ../classes/admin/class-vendor-applicants.php:27
378
+ msgid "Deny"
379
+ msgstr "رد کردن"
380
+
381
+ #: ../classes/admin/class-vendor-applicants.php:71
382
+ msgid "Vendor has been <b>denied</b>."
383
+ msgstr "فروشنده <b>محروم</b>بوده است."
384
+
385
+ #: ../classes/admin/class-vendor-applicants.php:82
386
+ msgid "Vendor has been <b>approved</b>."
387
+ msgstr "فروشنده <b>تایید</b>شده است."
388
+
389
+ #: ../classes/admin/class-vendor-applicants.php:96
390
+ msgid "Pending Vendors"
391
+ msgstr "فروشندگان در انتظار تایید"
392
+
393
+ #: ../classes/admin/emails/class-emails.php:55
394
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:70
395
+ msgid "pending"
396
+ msgstr "در انتظار"
397
+
398
+ #: ../classes/admin/emails/class-emails.php:57
399
+ msgid "approved"
400
+ msgstr "تایید شده"
401
+
402
+ #: ../classes/admin/emails/class-emails.php:59
403
+ msgid "denied"
404
+ msgstr "رد شده"
405
+
406
+ #: ../classes/admin/emails/class-emails.php:86
407
+ #: ../classes/front/class-vendor-cart.php:59
408
+ #: ../classes/front/class-vendor-shop.php:178
409
+ msgid "Sold by: "
410
+ msgstr "فروخته شده توسط:"
411
+
412
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:28
413
+ msgid "Vendor Application"
414
+ msgstr "درخواست فروشنده"
415
+
416
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:29
417
+ msgid "Vendor application will either be approved, denied, or pending."
418
+ msgstr "درخواست فروشنده یا مورد تایید باشند، لغو شدد و یا در انتظار خواهد بود"
419
+
420
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:31
421
+ msgid "Application {status}"
422
+ msgstr "وضعیت درخواست: {status}"
423
+
424
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:32
425
+ msgid "[{blogname}] Your vendor application has been {status}"
426
+ msgstr "[{blogname}] درخواست فروشندگی شما: {status}"
427
+
428
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:123
429
+ #: ../classes/admin/emails/class-wc-notify-admin.php:131
430
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:163
431
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:232
432
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:62
433
+ msgid "Enable/Disable"
434
+ msgstr "فعال/غیر فعال"
435
+
436
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:125
437
+ #: ../classes/admin/emails/class-wc-notify-admin.php:133
438
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:165
439
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:234
440
+ msgid "Enable this email notification"
441
+ msgstr "فعال کردن دریافت اطلاعیه ها از طریق ایمیل"
442
+
443
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:129
444
+ #: ../classes/admin/emails/class-wc-notify-admin.php:137
445
+ msgid "Recipient(s)"
446
+ msgstr "دریافت کننده"
447
+
448
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:131
449
+ #: ../classes/admin/emails/class-wc-notify-admin.php:139
450
+ #, php-format
451
+ msgid ""
452
+ "Enter recipients (comma separated) for this email. Defaults to <code>%s</"
453
+ "code>."
454
+ msgstr ""
455
+ "ایمیل گیرندگان را وارد نمایید (جدا شده با کاما). پیش‌فرض <code>%s</code> است."
456
+
457
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:136
458
+ #: ../classes/admin/emails/class-wc-notify-admin.php:144
459
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:169
460
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:238
461
+ msgid "Subject"
462
+ msgstr "موضوع"
463
+
464
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:138
465
+ #: ../classes/admin/emails/class-wc-notify-admin.php:146
466
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:171
467
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:240
468
+ #, php-format
469
+ msgid ""
470
+ "This controls the email subject line. Leave blank to use the default "
471
+ "subject: <code>%s</code>."
472
+ msgstr ""
473
+ "اینجا موضوع ایمیل انتخاب می‌شود. خالی رها کنید تا از موضوع پیش‌فرض استفاده "
474
+ "شود: <code>%s</code>."
475
+
476
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:143
477
+ #: ../classes/admin/emails/class-wc-notify-admin.php:151
478
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:176
479
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:245
480
+ msgid "Email Heading"
481
+ msgstr "عنوان ایمیل"
482
+
483
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:145
484
+ #: ../classes/admin/emails/class-wc-notify-admin.php:153
485
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:178
486
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:247
487
+ #, php-format
488
+ msgid ""
489
+ "This controls the main heading contained within the email notification. "
490
+ "Leave blank to use the default heading: <code>%s</code>."
491
+ msgstr ""
492
+ "اینجا عنوان اصلی موجود در ایمیل انتخاب می‌شود. خالی رها کنید تا از عنوان "
493
+ "پیش‌فرض استفاده شود: <code>%s</code>."
494
+
495
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:150
496
+ #: ../classes/admin/emails/class-wc-notify-admin.php:158
497
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:183
498
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:252
499
+ msgid "Email type"
500
+ msgstr "نوع ایمیل"
501
+
502
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:152
503
+ #: ../classes/admin/emails/class-wc-notify-admin.php:160
504
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:185
505
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:254
506
+ msgid "Choose which format of email to send."
507
+ msgstr "ساختار ایمیل برای فرستادن را انتخاب کنید."
508
+
509
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:156
510
+ #: ../classes/admin/emails/class-wc-notify-admin.php:164
511
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:189
512
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:258
513
+ msgid "Plain text"
514
+ msgstr "متن ساده"
515
+
516
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:157
517
+ #: ../classes/admin/emails/class-wc-notify-admin.php:165
518
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:190
519
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:259
520
+ msgid "HTML"
521
+ msgstr "HTML"
522
+
523
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:158
524
+ #: ../classes/admin/emails/class-wc-notify-admin.php:166
525
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:191
526
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:260
527
+ msgid "Multipart"
528
+ msgstr "چند بخشی"
529
+
530
+ #: ../classes/admin/emails/class-wc-notify-admin.php:28
531
+ msgid "New Vendor Product"
532
+ msgstr "اضافه کردن محصول جدید"
533
+
534
+ #: ../classes/admin/emails/class-wc-notify-admin.php:29
535
+ msgid "New order emails are sent when a new product is submitted by a vendor"
536
+ msgstr ""
537
+ "هنگامی که محصول جدید توسط یک فروشنده ارسال می شود یک ایمیل اطلاع رسانی "
538
+ "فرستاده خواهد شد"
539
+
540
+ #: ../classes/admin/emails/class-wc-notify-admin.php:31
541
+ msgid "New product submitted: {product_name}"
542
+ msgstr "محصول جدید ارسال شده: {product_name}"
543
+
544
+ #: ../classes/admin/emails/class-wc-notify-admin.php:32
545
+ msgid "[{blogname}] New product submitted by {vendor_name} - {product_name}"
546
+ msgstr "[{blogname}] محصول جدید ارسال شده توسط {vendor_name}- {product_name}"
547
+
548
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:28
549
+ msgid "Vendor has shipped"
550
+ msgstr "فروشنده فرستاده است"
551
+
552
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:29
553
+ msgid ""
554
+ "An email is sent when a vendor has marked one of their orders as shipped."
555
+ msgstr ""
556
+ "هنگامی که فروشنده یکی از سفارشات خود را به عنوان محصول پستی مشخص کرده یک "
557
+ "ایمیل برای او ارسال می شود."
558
+
559
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:31
560
+ msgid "Your order has been shipped"
561
+ msgstr "سفارش شما ارسال شده است"
562
+
563
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:32
564
+ msgid ""
565
+ "[{blogname}] Your order has been shipped ({order_number}) - {order_date}"
566
+ msgstr "[{blogname}] سفارش شما ارسال شده است ({order_number}) - {order_date}"
567
+
568
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:112
569
+ msgid "Subtotal:"
570
+ msgstr "جمع کل:"
571
+
572
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:27
573
+ msgid "Notify vendors"
574
+ msgstr "اطلاعیه فروشندگان"
575
+
576
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:28
577
+ msgid "New order emails are sent when an order is received/paid by a customer."
578
+ msgstr ""
579
+ "ایمیل های، سفارش جدید / پرداخت شده توسط مشتری در هنگام سفارش فرستاده می شود."
580
+
581
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:30
582
+ msgid "New customer order"
583
+ msgstr "سفارش جدید مشتری"
584
+
585
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:31
586
+ msgid "[{blogname}] New customer order ({order_number}) - {order_date}"
587
+ msgstr "[{blogname}] سفارش جدید مشتری ({order_number}) - {order_date}"
588
+
589
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:103
590
+ msgid "Commission Subtotal:"
591
+ msgstr "میزان درآمد"
592
+
593
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:112
594
+ msgid "Shipping Subtotal:"
595
+ msgstr "هزینه حمل و نقل:"
596
+
597
+ #: ../classes/admin/settings/classes/sf-class-format-options.php:211
598
+ #: ../classes/admin/settings/classes/sf-class-settings.php:776
599
+ msgid "Select a page..."
600
+ msgstr "انتخاب یک برگه..."
601
+
602
+ #: ../classes/admin/settings/classes/sf-class-settings.php:153
603
+ #: ../templates/dashboard/settings/settings.php:1
604
+ msgid "Settings"
605
+ msgstr "تنظیمات"
606
+
607
+ #: ../classes/admin/settings/classes/sf-class-settings.php:300
608
+ msgid "Could not load settings at: "
609
+ msgstr "تنظیمات بارگیری نشد:"
610
+
611
+ #: ../classes/admin/settings/classes/sf-class-settings.php:300
612
+ msgid "Error - WP Settings Framework"
613
+ msgstr "خطا در تنظیمات کلی وردپرس"
614
+
615
+ #: ../classes/admin/settings/classes/sf-class-settings.php:482
616
+ #, php-format
617
+ msgid "Save %s changes"
618
+ msgstr "%s تغییرات ذخیره شد"
619
+
620
+ #: ../classes/admin/settings/sf-options.php:5
621
+ msgid "General options"
622
+ msgstr "تنظیمات عمومی"
623
+
624
+ #: ../classes/admin/settings/sf-options.php:5
625
+ #: ../classes/admin/settings/sf-options.php:54
626
+ #: ../classes/admin/settings/sf-options.php:246
627
+ msgid " "
628
+ msgstr ""
629
+
630
+ #: ../classes/admin/settings/sf-options.php:8
631
+ msgid "Default commission (%)"
632
+ msgstr "پیش فرض کمیسیون (٪)"
633
+
634
+ #: ../classes/admin/settings/sf-options.php:9
635
+ msgid ""
636
+ "The default rate you pay each vendor for a product sale. If a product has a "
637
+ "commission rate already set, this value will be ignored for that product."
638
+ msgstr "این میزان کمیسون دریافتی هر فروشنده از محصولاتش می باشد."
639
+
640
+ #: ../classes/admin/settings/sf-options.php:20
641
+ msgid "Registration"
642
+ msgstr "ثبت نام"
643
+
644
+ #: ../classes/admin/settings/sf-options.php:21
645
+ msgid "Allow users or guests to apply to become a vendor"
646
+ msgstr "به کاربران و مهمان ها اجازه می دهد برای درخواست فروشندگی"
647
+
648
+ #: ../classes/admin/settings/sf-options.php:22
649
+ msgid ""
650
+ "This will show a checkbox on the My Account page's registration form asking "
651
+ "if the user would like to apply to be a vendor. Also, on the Vendor "
652
+ "Dashboard, users can still apply to become a vendor even if this is disabled."
653
+ msgstr ""
654
+ "اگر این گزینه را فعال کنید هنگام ثبت نام یک کاربر یک گزینه جهت درخواست "
655
+ "فروشنده شدن در سایت اضافه می گردد. البته در صورت انتخاب نکردن کاربر بعدا "
656
+ "دوباره می تواند درخواست دهد"
657
+
658
+ #: ../classes/admin/settings/sf-options.php:29
659
+ msgid "Approve vendor applications manually"
660
+ msgstr "تایید دستی درخواست فروشنده شدن"
661
+
662
+ #: ../classes/admin/settings/sf-options.php:30
663
+ msgid ""
664
+ "With this unchecked, all vendor applications are automatically accepted. "
665
+ "Otherwise, you must approve each manually."
666
+ msgstr ""
667
+ "اگر این گزینه را فعال نکنید درخواست های فروشنده شدن ها به صورت خودکار تایید "
668
+ "می شود. در غیر این صورت باید به صورت دستی تایید کنید"
669
+
670
+ #: ../classes/admin/settings/sf-options.php:37
671
+ msgid "Taxes"
672
+ msgstr "ماليات ها"
673
+
674
+ #: ../classes/admin/settings/sf-options.php:38
675
+ msgid "Give vendors any tax collected per-product"
676
+ msgstr "قرار دادن مالیات به ازای هر محصول برای فروشندگان"
677
+
678
+ #: ../classes/admin/settings/sf-options.php:39
679
+ msgid "The tax collected on a vendor's product will be given in its entirety"
680
+ msgstr "مالیات هریک از محصولات فروشنده بر روی جمع کل اضافه خواهد شد"
681
+
682
+ #: ../classes/admin/settings/sf-options.php:47
683
+ msgid "Give vendors any shipping collected per-product"
684
+ msgstr "دادن هزینه حمل و نقل (هزینه پستی) هر محصول به فروشنده"
685
+
686
+ #: ../classes/admin/settings/sf-options.php:48
687
+ msgid ""
688
+ "The shipping collected on a vendor's product will be given in its entirety"
689
+ msgstr "هزینه حمل نقل هر محصول بر روی جمع هزینه ها اضافه خواهد شد"
690
+
691
+ #: ../classes/admin/settings/sf-options.php:54
692
+ msgid "Shop options"
693
+ msgstr "گزینه های فروشگاه"
694
+
695
+ #: ../classes/admin/settings/sf-options.php:57
696
+ msgid "Shop HTML"
697
+ msgstr "HTML فروشگاه"
698
+
699
+ #: ../classes/admin/settings/sf-options.php:58
700
+ msgid ""
701
+ "Enable HTML for a vendor's shop description by default. You can enable or "
702
+ "disable this per vendor by editing the vendors username."
703
+ msgstr ""
704
+ "فعال کردن HTML برای توضیحات محصول فروشنده در فروشگاه به صورت پیش فرض. شما "
705
+ "می توانید فعال یا غیر فعال کنید آن را در فروشگاه با ویرایش نام کاربری "
706
+ "فروشندگان."
707
+
708
+ #: ../classes/admin/settings/sf-options.php:65
709
+ msgid "Vendor shop page"
710
+ msgstr "صفحه فروشنده فروشگاه"
711
+
712
+ #: ../classes/admin/settings/sf-options.php:66
713
+ msgid "Eg: <code>yoursite.com/[your_setting_here]/[vendor_name_here]</code>"
714
+ msgstr ""
715
+ "به عنوان مثال: <code>yoursite.com/[your_setting_here]/[vendor_name_here]</"
716
+ "code>"
717
+
718
+ #: ../classes/admin/settings/sf-options.php:73
719
+ msgid "Shop Headers"
720
+ msgstr "عنوان فروشگاه"
721
+
722
+ #: ../classes/admin/settings/sf-options.php:74
723
+ msgid "Enable vendor shop headers"
724
+ msgstr "فعال کردن عنوان فروشنده فروشگاه"
725
+
726
+ #: ../classes/admin/settings/sf-options.php:75
727
+ msgid ""
728
+ "This will override the HTML Shop description output on product-archive "
729
+ "pages. In order to customize the shop headers visit wcvendors.com and read "
730
+ "the article in the Knowledgebase titled Changing the Vendor Templates."
731
+ msgstr ""
732
+ "این HTML توضیحاتی در صفحات محصول فروشگاه در قسمت آجزئیاتاضافه می کند. به "
733
+ "منظور سفارشی کردن عنوان فروشنده فروشگاه به سایت wcvendors.com مراجعه کرده و "
734
+ "مقاله در مرکز آموزش تحت عنوان titled Changing the Vendor Template را مطالعه "
735
+ "نمایید."
736
+
737
+ #: ../classes/admin/settings/sf-options.php:82
738
+ msgid "Vendor Display Name"
739
+ msgstr "نام نمایش فروشنده"
740
+
741
+ #: ../classes/admin/settings/sf-options.php:83
742
+ msgid ""
743
+ "Select what will be displayed for the sold by text throughout the store."
744
+ msgstr ""
745
+ "متنی که که میخواهید به جای 'به tروش می رسد توسط' که در فروشگاه به نمایش "
746
+ "گذاشته میشود را وارد نمایید"
747
+
748
+ #: ../classes/admin/settings/sf-options.php:87
749
+ msgid "Display Name"
750
+ msgstr "نمایش نام"
751
+
752
+ #: ../classes/admin/settings/sf-options.php:88
753
+ #: ../classes/admin/views/html-vendor-settings-page.php:22
754
+ #: ../templates/dashboard/settings/shop-name.php:2
755
+ msgid "Shop Name"
756
+ msgstr "نام فروشگاه"
757
+
758
+ #: ../classes/admin/settings/sf-options.php:89
759
+ msgid "User Login"
760
+ msgstr "ورود کاربر"
761
+
762
+ #: ../classes/admin/settings/sf-options.php:96
763
+ msgid "Product Add Page"
764
+ msgstr "صفحه اضافه کردن محصولات"
765
+
766
+ #: ../classes/admin/settings/sf-options.php:96
767
+ msgid "Configure what to hide from all vendors when adding a product"
768
+ msgstr ""
769
+ "تنظیمات مخفی کردن قسمت هایی که میخواهید فروشندگان عنگام اضافه کردن محصول "
770
+ "نبینند"
771
+
772
+ #: ../classes/admin/settings/sf-options.php:99
773
+ msgid "Left side panel"
774
+ msgstr "محل پنل سمت چپ"
775
+
776
+ #: ../classes/admin/settings/sf-options.php:100
777
+ msgid ""
778
+ "CHECKING these boxes will HIDE these areas of the add product page for "
779
+ "vendors"
780
+ msgstr ""
781
+ "بررسی این جعبه برای مخفی کردن قسمت های که میخواهید فروشندگان در صفحه اضافه "
782
+ "کردن محصول نبینند"
783
+
784
+ #: ../classes/admin/settings/sf-options.php:114
785
+ msgid "Types"
786
+ msgstr "انواع"
787
+
788
+ #: ../classes/admin/settings/sf-options.php:115
789
+ msgid "CHECKING these boxes will HIDE these product types from the vendor"
790
+ msgstr "بررسی این جعبه جهت مخفی کردن برای فروشنده بر اساس نوع محصول"
791
+
792
+ #: ../classes/admin/settings/sf-options.php:128
793
+ msgid "Type options"
794
+ msgstr "نوع گزینه های"
795
+
796
+ #: ../classes/admin/settings/sf-options.php:129
797
+ msgid "CHECKING these boxes will HIDE these product options from the vendor"
798
+ msgstr "بررسی این جعبه جهت مخفی کردن گزینه های محصول برای فروشنده"
799
+
800
+ #: ../classes/admin/settings/sf-options.php:140
801
+ msgid "Miscellaneous"
802
+ msgstr "گوناگون"
803
+
804
+ #: ../classes/admin/settings/sf-options.php:152
805
+ msgid "Stylesheet"
806
+ msgstr "سبک صفحه"
807
+
808
+ #: ../classes/admin/settings/sf-options.php:153
809
+ msgid ""
810
+ "You can add CSS in this textarea, which will be loaded on the product add/"
811
+ "edit page for vendors."
812
+ msgstr ""
813
+
814
+ #: ../classes/admin/settings/sf-options.php:160
815
+ msgid "Permissions"
816
+ msgstr "مجوز های کاربری"
817
+
818
+ #: ../classes/admin/settings/sf-options.php:160
819
+ msgid "General permissions used around the shop"
820
+ msgstr "مجوز ها به صورت عمومی در سراسر فروشگاه استفاده می شود"
821
+
822
+ #: ../classes/admin/settings/sf-options.php:164
823
+ msgid "View orders"
824
+ msgstr "مشاهده سفارشات"
825
+
826
+ #: ../classes/admin/settings/sf-options.php:165
827
+ msgid "Show customer details such as email, address, name, etc, for each order"
828
+ msgstr "نمایش جزئیات مشتری مانند ایمیل، آدرس، نام، و غیره، برای هر سفارش"
829
+
830
+ #: ../classes/admin/settings/sf-options.php:172
831
+ msgid "View comments"
832
+ msgstr "مشاهده نظرات"
833
+
834
+ #: ../classes/admin/settings/sf-options.php:173
835
+ msgid "View all vendor comments for an order on the frontend"
836
+ msgstr "مشاهده همه نظر فروشنده برای یک سفارش در بخش کاربری"
837
+
838
+ #: ../classes/admin/settings/sf-options.php:180
839
+ msgid "Submit comments"
840
+ msgstr "ثبت کردن نظرات"
841
+
842
+ #: ../classes/admin/settings/sf-options.php:181
843
+ msgid ""
844
+ "Submit comments for an order on the frontend. Eg, tracking ID for a product"
845
+ msgstr "ارسال جواب نظرات در پایان سفارش.به عنوان مثال، ردیابی ID برای یک محصول"
846
+
847
+ #: ../classes/admin/settings/sf-options.php:188
848
+ msgid "View email addresses"
849
+ msgstr "مشاهده آدرس ایمیل"
850
+
851
+ #: ../classes/admin/settings/sf-options.php:189
852
+ msgid ""
853
+ "While viewing order details on the frontend, you can disable or enable email "
854
+ "addresses"
855
+ msgstr ""
856
+ "زمانی که در حال مشاهده جزئیات سفارش در بخش کاربری هستید،آدرس ایمیل را می "
857
+ "توانید فعال یا غیرفعال نمایید."
858
+
859
+ #: ../classes/admin/settings/sf-options.php:196
860
+ msgid "Export a CSV file of orders for a product"
861
+ msgstr "ایجاد خروجی یک فایل CSV از سفارشات برای یک محصول"
862
+
863
+ #: ../classes/admin/settings/sf-options.php:197
864
+ msgid "Vendors could export orders for a product on the frontend"
865
+ msgstr ""
866
+ "فروشندگان می توانند از سفارشات خود در بخش کاربری از هر محصول یک فایل خروجی "
867
+ "بگیرند"
868
+
869
+ #: ../classes/admin/settings/sf-options.php:204
870
+ msgid "Reports"
871
+ msgstr "گزارشات"
872
+
873
+ #: ../classes/admin/settings/sf-options.php:205
874
+ msgid "View backend sales reports"
875
+ msgstr "مشاهده گزارش فروش در بخش مدیریت"
876
+
877
+ #: ../classes/admin/settings/sf-options.php:206
878
+ msgid ""
879
+ "Graphs and tables via the Reports page in backend. The reports will only "
880
+ "display sales data that pertain to their products"
881
+ msgstr ""
882
+ "نمودار و جداول از طریق صفحه گزارش فروش در بخش مدیریت در دسترس است. فروشندگان "
883
+ "تنها می توانند گزارسات محصولات مربوط به خود را تماشا کنند."
884
+
885
+ #: ../classes/admin/settings/sf-options.php:213
886
+ msgid "View Frontend sales reports"
887
+ msgstr "مشاهده مشخصات گزارش فروش"
888
+
889
+ #: ../classes/admin/settings/sf-options.php:214
890
+ msgid ""
891
+ "Sales table on the frontend on the My Account page. The table will only "
892
+ "display sales data that pertain to their products"
893
+ msgstr ""
894
+ "جدول فروش در بخش کاربری در صفحه حساب من. در این قسمت فقط جدول فروش مربوط به "
895
+ "محصولات هر فروشنده نمایش داده خواهد شد"
896
+
897
+ #: ../classes/admin/settings/sf-options.php:222
898
+ msgid "Submit products"
899
+ msgstr "ارسال محصولات"
900
+
901
+ #: ../classes/admin/settings/sf-options.php:223
902
+ msgid ""
903
+ "Vendors could submit a product through the backend, and an admin would "
904
+ "approve or deny it"
905
+ msgstr ""
906
+ "فروشندگان می تواند یک محصول از طریق بخش مدیریت ارسال نمایند، و همچنین مدیر "
907
+ "توانایی تایید یا رد آن را دارد"
908
+
909
+ #: ../classes/admin/settings/sf-options.php:230
910
+ msgid "Edit live products"
911
+ msgstr "ویرایش محصولات فعال"
912
+
913
+ #: ../classes/admin/settings/sf-options.php:231
914
+ msgid ""
915
+ "Vendors could edit an approved product after it has already gone live. There "
916
+ "is no approval or review after editing a live product. This could be "
917
+ "dangerous with malicious vendors, so take caution."
918
+ msgstr ""
919
+ "فروشندگان می توانند بعد از تایید شدن یک محصول آن را ویرایش نمایند، پس از "
920
+ "ویرایش نیز در حالت فعال باقی خواهد ماند. این گزینه می تواند برای شما خطرناک "
921
+ "باشد بنابرین احتیاط کنید."
922
+
923
+ #: ../classes/admin/settings/sf-options.php:238
924
+ msgid "Submit products live without requiring approval"
925
+ msgstr "ارسال محصولات فعال بدون نیاز به تایید"
926
+
927
+ #: ../classes/admin/settings/sf-options.php:239
928
+ msgid ""
929
+ "Vendors can submit products without review or approval from a shop admin. "
930
+ "This could be dangerous with malicious vendors, so take caution."
931
+ msgstr ""
932
+ "فروشندگان می توانند محصولات را بدون بررسی و یا تایید یک مدیر فروشگاه ارسال "
933
+ "کند. این می تواند برای فروشندگان مخرب خطرناک است، بنابراین احتیاط. کنید"
934
+
935
+ #: ../classes/admin/settings/sf-options.php:245
936
+ msgid "Pages"
937
+ msgstr "صفحات"
938
+
939
+ #: ../classes/admin/settings/sf-options.php:246
940
+ msgid "Page configuration"
941
+ msgstr "صفحه پیکربندی"
942
+
943
+ #: ../classes/admin/settings/sf-options.php:249
944
+ msgid "Vendor dashboard"
945
+ msgstr "بخش کاربری فروشنده"
946
+
947
+ #: ../classes/admin/settings/sf-options.php:250
948
+ msgid ""
949
+ "Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</"
950
+ "code><br/>By default, My Account > Vendor Dashboard should have the "
951
+ "shortcode."
952
+ msgstr ""
953
+ "صفحه ای که کد کوتاه در آن قرار دارد را انتخاب کنید "
954
+ "<code>[wcv_vendor_dashboard]</code><br/>By default, My Account > بخش کاربری "
955
+ "فروشنده باید دارای این کد کوتاه باشد.."
956
+
957
+ #: ../classes/admin/settings/sf-options.php:257
958
+ msgid "Shop settings"
959
+ msgstr "تنظیمات فروشگاه"
960
+
961
+ #: ../classes/admin/settings/sf-options.php:258
962
+ msgid ""
963
+ "Choose the page that has the shortcode <code>[wcv_shop_settings]</code><br/"
964
+ ">These are the shop settings a vendor can configure."
965
+ msgstr ""
966
+ "صفحه ای که کد کوتاه در آن قرار دارد را انتخاب کنید "
967
+ "<code>[wcv_shop_settings]</code><br/>تنظیمات فروشگاه فروشنده قابل پیکربندی "
968
+ "است."
969
+
970
+ #: ../classes/admin/settings/sf-options.php:265
971
+ msgid "Orders page"
972
+ msgstr "صفحه سفارشات"
973
+
974
+ #: ../classes/admin/settings/sf-options.php:266
975
+ msgid ""
976
+ "Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By "
977
+ "default, My Account > Orders should have the shortcode."
978
+ msgstr ""
979
+ "صفحه ای که کد کوتاه در آن قرار دارد را انتخاب کنید <code>[wcv_orders]</"
980
+ "code><br/>به طور پیش فرض، حساب من> سفارشات باید دارای کد کوتاه بالا باشد."
981
+
982
+ #: ../classes/admin/settings/sf-options.php:273
983
+ msgid "Vendor terms"
984
+ msgstr "قوانین فروشنده شدن"
985
+
986
+ #: ../classes/admin/settings/sf-options.php:274
987
+ msgid ""
988
+ "These terms are shown to a user when submitting an application to become a "
989
+ "vendor.<br/>If left blank, no terms will be shown to the applicant."
990
+ msgstr ""
991
+ "این شرایط هنگام ارسال درخواست برای تبدیل شدن به یک فروشنده به یک کاربر نشان "
992
+ "داده خواهد شد <br/> اگر خالی بگذاریذ، هیچ چیزی به درخواست کننده نشان داده "
993
+ "نخواهد شد."
994
+
995
+ #: ../classes/admin/settings/sf-options.php:292
996
+ msgid "Payments"
997
+ msgstr "پرداخت ها"
998
+
999
+ #: ../classes/admin/settings/sf-options.php:294
1000
+ msgid "User payments"
1001
+ msgstr "پرداختی های کاربران"
1002
+
1003
+ #: ../classes/admin/settings/sf-options.php:295
1004
+ #, php-format
1005
+ msgid "Total commission currently due: %s. <a href=\"%s\">View details</a>."
1006
+ msgstr "درآمدهای کسب شده تا این لحظه: %s. <a href=\"%s\">مشاهده جزئیات</a>."
1007
+
1008
+ #: ../classes/admin/settings/sf-options.php:296
1009
+ #, php-format
1010
+ msgid ""
1011
+ "Make sure you update your PayPal Adaptive Payments settings <a href=\"%s"
1012
+ "\">here</a>."
1013
+ msgstr ""
1014
+ "از تنظیمات حساب خود در PayPal اطمینان حاصل کنید و آن را به روز رسانی نمایید "
1015
+ "<a href=\"%s\">اینجا</a>."
1016
+
1017
+ #: ../classes/admin/settings/sf-options.php:300
1018
+ msgid "Instant pay"
1019
+ msgstr "هم اکنون پرداخت کنید"
1020
+
1021
+ #: ../classes/admin/settings/sf-options.php:301
1022
+ msgid "Instantly pay vendors their commission when an order is made"
1023
+ msgstr ""
1024
+ "در همان لحظه کمیسون های فروشندگان را پرداخت کنید زمانی که این حساب را ایجاد "
1025
+ "کرده اند."
1026
+
1027
+ #: ../classes/admin/settings/sf-options.php:302
1028
+ msgid ""
1029
+ "For this to work, customers must checkout with the PayPal Adaptive Payments "
1030
+ "gateway. Using any other gateways will not pay vendors instantly"
1031
+ msgstr ""
1032
+
1033
+ #: ../classes/admin/settings/sf-options.php:309
1034
+ msgid "Payment schedule"
1035
+ msgstr "برنامه پرداخت"
1036
+
1037
+ #: ../classes/admin/settings/sf-options.php:310
1038
+ msgid "Note: Schedule will only work if instant pay is unchecked"
1039
+ msgstr ""
1040
+ "توجه: در صورتی که برنامه پرداخت فعال باشد کمیسون فروشندگان در همان لحظه "
1041
+ "واریز می گردد."
1042
+
1043
+ #: ../classes/admin/settings/sf-options.php:315
1044
+ msgid "Weekly"
1045
+ msgstr "هفتگی"
1046
+
1047
+ #: ../classes/admin/settings/sf-options.php:316
1048
+ msgid "Biweekly"
1049
+ msgstr "دو هفته یکبار"
1050
+
1051
+ #: ../classes/admin/settings/sf-options.php:317
1052
+ msgid "Monthly"
1053
+ msgstr "ماهانه"
1054
+
1055
+ #: ../classes/admin/settings/sf-options.php:318
1056
+ msgid "Manual"
1057
+ msgstr "دستی"
1058
+
1059
+ #: ../classes/admin/settings/sf-options.php:319
1060
+ msgid "Now"
1061
+ msgstr "هم اکنون"
1062
+
1063
+ #: ../classes/admin/settings/sf-options.php:324
1064
+ msgid "Email notification"
1065
+ msgstr "اطلاع رسانی از طریق ایمیل"
1066
+
1067
+ #: ../classes/admin/settings/sf-options.php:325
1068
+ msgid ""
1069
+ "Send the WooCommerce admin an email each time a payment has been made via "
1070
+ "the payment schedule options above"
1071
+ msgstr ""
1072
+ "ارسال ایمیل به مدیر ووکامرس بعد از هر پرداخت طبق برنامه پرداخت که در بالا "
1073
+ "تنظیم کردید"
1074
+
1075
+ #: ../classes/admin/views/html-vendor-settings-page.php:11
1076
+ #: ../templates/dashboard/settings/paypal-email-form.php:2
1077
+ msgid "PayPal Address"
1078
+ msgstr "آدرس PayPal"
1079
+
1080
+ #: ../classes/admin/views/html-vendor-settings-page.php:15
1081
+ #: ../templates/dashboard/settings/paypal-email-form.php:3
1082
+ msgid "Your PayPal address is used to send you your commission."
1083
+ msgstr "آدرس PayPal شما جهت واریز درآمد استفاده می شود."
1084
+
1085
+ #: ../classes/admin/views/html-vendor-settings-page.php:24
1086
+ #: ../templates/dashboard/settings/shop-name.php:3
1087
+ msgid "Your shop name is public and must be unique."
1088
+ msgstr "نام فروشگاه تکراری است. نام دیگری وارد نمایید."
1089
+
1090
+ #: ../classes/admin/views/html-vendor-settings-page.php:43
1091
+ #: ../templates/dashboard/settings/seller-info.php:4
1092
+ msgid "This is displayed on each of your products."
1093
+ msgstr "پیش نمایشی از محصولات شما"
1094
+
1095
+ #: ../classes/admin/views/html-vendor-settings-page.php:49
1096
+ #: ../templates/dashboard/settings/shop-description.php:2
1097
+ msgid "Shop Description"
1098
+ msgstr "توضیحات فروشگاه"
1099
+
1100
+ #: ../classes/admin/views/html-vendor-settings-page.php:61
1101
+ #: ../templates/dashboard/settings/shop-description.php:3
1102
+ #, php-format
1103
+ msgid "This is displayed on your <a href=\"%s\">shop page</a>."
1104
+ msgstr "صفحه نمایشی شما<a href=\"%s\">صفحه فروشگاه</a>."
1105
+
1106
+ #: ../classes/admin/views/html-vendor-settings-page.php:70
1107
+ msgid "Save Shop Settings"
1108
+ msgstr "ذخیره تنظیمات فروشگاه"
1109
+
1110
+ #: ../classes/class-cron.php:87
1111
+ #, php-format
1112
+ msgid "Payment total: %s"
1113
+ msgstr "جمع کل پرداختی ها: %s"
1114
+
1115
+ #: ../classes/class-cron.php:148
1116
+ msgid "Once Weekly"
1117
+ msgstr "یک بار در هفته"
1118
+
1119
+ #: ../classes/class-cron.php:153
1120
+ msgid "Once every two weeks"
1121
+ msgstr "یک بار در هر دو هفته"
1122
+
1123
+ #: ../classes/class-cron.php:158
1124
+ msgid "Once a month"
1125
+ msgstr "یک بار در ماه"
1126
+
1127
+ #: ../classes/class-install.php:59 ../classes/class-install.php:213
1128
+ msgid "Pending Vendor"
1129
+ msgstr "فروشنده در حال انتظار"
1130
+
1131
+ #: ../classes/class-install.php:164
1132
+ msgid "Vendor Dashboard"
1133
+ msgstr "بخش کاربری فروشنده"
1134
+
1135
+ #: ../classes/front/class-vendor-cart.php:41
1136
+ #: ../classes/front/class-vendor-shop.php:263
1137
+ msgid "Sold by"
1138
+ msgstr "فروخته شده توسط:"
1139
+
1140
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:46
1141
+ msgid "Order marked shipped."
1142
+ msgstr "سفارش انتخابی ارسال شده است."
1143
+
1144
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:72
1145
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:73
1146
+ #: ../classes/front/orders/class-orders.php:144
1147
+ #: ../classes/front/orders/class-orders.php:145
1148
+ msgid "Tracking number"
1149
+ msgstr "شماره پیگیری"
1150
+
1151
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:75
1152
+ #: ../classes/front/orders/class-orders.php:147
1153
+ msgid "Success. Your tracking number has been updated."
1154
+ msgstr "با موفقیت. شماره پیگیری شما به روز شد."
1155
+
1156
+ #: ../classes/front/orders/class-export-csv.php:37
1157
+ msgid "Extra data"
1158
+ msgstr "اطلاعات اضافی"
1159
+
1160
+ #: ../classes/front/orders/class-export-csv.php:38
1161
+ #: ../templates/dashboard/reports.php:18
1162
+ #: ../templates/emails/admin-new-order.php:23
1163
+ #: ../templates/emails/notify-vendor-shipped.php:23
1164
+ msgid "Quantity"
1165
+ msgstr "تعداد"
1166
+
1167
+ #: ../classes/front/orders/class-orders.php:107
1168
+ msgid ""
1169
+ "You haven't selected a product's orders to view! Please go back to the "
1170
+ "Vendor Dashboard and click Show Orders on the product you'd like to view."
1171
+ msgstr ""
1172
+ "شما سفارشات محصول را برای مشاهده انتخاب کرده اید! به بخش کاربری فروشنده "
1173
+ "برگردید و جهت نمایش سفارشات بر روی محصول شما را می خواهم ببینیم کلیک کنید"
1174
+
1175
+ #: ../classes/front/orders/class-orders.php:111
1176
+ msgid "No orders."
1177
+ msgstr "بدون سفارشات."
1178
+
1179
+ #: ../classes/front/orders/class-orders.php:209
1180
+ msgid "Product Title"
1181
+ msgstr "عنوان محصولات"
1182
+
1183
+ #: ../classes/front/orders/class-orders.php:210
1184
+ msgid "Full name"
1185
+ msgstr "نام کامل"
1186
+
1187
+ #: ../classes/front/orders/class-orders.php:211
1188
+ msgid "Address"
1189
+ msgstr "آدرس"
1190
+
1191
+ #: ../classes/front/orders/class-orders.php:212
1192
+ msgid "City"
1193
+ msgstr "شهر"
1194
+
1195
+ #: ../classes/front/orders/class-orders.php:213
1196
+ msgid "State"
1197
+ msgstr "خیابان"
1198
+
1199
+ #: ../classes/front/orders/class-orders.php:214
1200
+ msgid "Zip"
1201
+ msgstr "کدپستی"
1202
+
1203
+ #: ../classes/front/orders/class-orders.php:215
1204
+ msgid "Email address"
1205
+ msgstr "آدرس ایمیل"
1206
+
1207
+ #: ../classes/front/orders/class-submit-comment.php:41
1208
+ msgid "You've left the comment field empty!"
1209
+ msgstr "ما را فراموش کرده اید. هیچ نظری ارسال نکرده اید."
1210
+
1211
+ #: ../classes/front/orders/class-submit-comment.php:63
1212
+ msgid "Success. The customer has been notified of your comment."
1213
+ msgstr "با موفقیت. مشتری از نظر شما آگاه شد"
1214
+
1215
+ #: ../classes/front/signup/class-vendor-signup.php:44
1216
+ #: ../templates/dashboard/denied.php:22
1217
+ msgid "Apply to become a vendor? "
1218
+ msgstr "درخواست برای تبدیل شدن به یک فروشنده؟"
1219
+
1220
+ #: ../classes/front/signup/class-vendor-signup.php:53
1221
+ #: ../templates/dashboard/denied.php:33
1222
+ #, php-format
1223
+ msgid "I have read and accepted the <a href=\"%s\">terms and conditions</a>"
1224
+ msgstr ""
1225
+ "من قوانین را خوانده ام و آنها را قبول می کنم<a href=\"%s\">شرایط و ضوابط</a>"
1226
+
1227
+ #: ../classes/front/signup/class-vendor-signup.php:87
1228
+ msgid "Application denied. You are an administrator."
1229
+ msgstr "مدیر درخواست شما را تایید نکرد"
1230
+
1231
+ #: ../classes/front/signup/class-vendor-signup.php:89
1232
+ msgid "Your application has been submitted."
1233
+ msgstr "درخواست شما ارائه شده است."
1234
+
1235
+ #: ../classes/front/signup/class-vendor-signup.php:125
1236
+ msgid "You must accept the terms and conditions to become a vendor."
1237
+ msgstr "شما باید قوانین را برای ثبت نام در بخش فروشنده بپذیرید."
1238
+
1239
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:43
1240
+ msgid "PayPal Adaptive Payments"
1241
+ msgstr "انجام پرداخت با PayPal"
1242
+
1243
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:119
1244
+ #, php-format
1245
+ msgid ""
1246
+ "Something went wrong. Response from PayPal invalidated this order. Status: "
1247
+ "%s."
1248
+ msgstr ""
1249
+ "موردی را اشتباه وارد کرده اید. به همین منظور پاسخ اعتبار از PayPal دریافت "
1250
+ "نشد. وضعیت %s است."
1251
+
1252
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:124
1253
+ msgid "IPN payment completed"
1254
+ msgstr "IPN تکمیل پرداخت"
1255
+
1256
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:146
1257
+ msgid "Enable PayPal Adaptive Payments"
1258
+ msgstr "فعال کردن تطبیق پرداخت با PayPal"
1259
+
1260
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:152
1261
+ msgid "Method Title"
1262
+ msgstr "عنوان روش"
1263
+
1264
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:153
1265
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:70
1266
+ msgid "This controls the title which the user sees during checkout."
1267
+ msgstr "این عنوانی را کنترل می کند که کاربر در طول پرداخت می بیند."
1268
+
1269
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:154
1270
+ msgid "PayPal"
1271
+ msgstr "PayPal"
1272
+
1273
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:159
1274
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:75
1275
+ msgid "Description"
1276
+ msgstr "توضیحات"
1277
+
1278
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:160
1279
+ msgid "This controls the description which the user sees during checkout."
1280
+ msgstr "این توضیحاتی را کنترل می کند که کاربر در طول پرداخت می بیند."
1281
+
1282
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:161
1283
+ msgid "Pay via PayPal!"
1284
+ msgstr "پرداخت از طریق PayPal!"
1285
+
1286
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:172
1287
+ msgid "Live Credentials"
1288
+ msgstr "تاییده زنده"
1289
+
1290
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:174
1291
+ #, php-format
1292
+ msgid ""
1293
+ "You must have an <a href=\"%s\">Application ID</a> to process live "
1294
+ "transactions. You do not need one for testing in Sandbox mode."
1295
+ msgstr ""
1296
+ "شما باید دارای <a href=\"%s\">شناسه سفارش</a>to process live transactions. "
1297
+ "You do not need one for testing in Sandbox mode."
1298
+
1299
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:179
1300
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:213
1301
+ msgid "PayPal Email"
1302
+ msgstr "ایمیل پي پال"
1303
+
1304
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:180
1305
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:214
1306
+ msgid "The email address main payments should go to."
1307
+ msgstr "آدرس ایمیل پرداخت های اصلی باید برای رفتن."
1308
+
1309
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:185
1310
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:219
1311
+ msgid "API Username"
1312
+ msgstr "شناسه نام کاربری"
1313
+
1314
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:190
1315
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:224
1316
+ msgid "API Password"
1317
+ msgstr "شناسه کلمه عبور"
1318
+
1319
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:195
1320
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:229
1321
+ msgid "API Signature"
1322
+ msgstr "شناسه امضا"
1323
+
1324
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:200
1325
+ msgid "Application ID"
1326
+ msgstr "شناسه برنامه"
1327
+
1328
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:202
1329
+ msgid "Only required when doing live transactions."
1330
+ msgstr "تنها جهت انجام تراکنش های زنده مورد نیاز است."
1331
+
1332
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:206
1333
+ msgid "Sandbox Credentials"
1334
+ msgstr "مجوز Sandbox"
1335
+
1336
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:208
1337
+ #, php-format
1338
+ msgid ""
1339
+ "You can signup for a sandbox developer account <a href=\"%s\">here</a>. You "
1340
+ "need a developer account if you want to enable Sandbox mode for testing."
1341
+ msgstr ""
1342
+
1343
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:240
1344
+ msgid "Misc. Settings"
1345
+ msgstr "تنظیمات متفرقه"
1346
+
1347
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:245
1348
+ msgid "Enable PayPal Sandbox mode"
1349
+ msgstr "فعال کردن حالت Sandbox PayPal"
1350
+
1351
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:251
1352
+ msgid "Enable logging"
1353
+ msgstr "فعال کردن ورود به سیستم"
1354
+
1355
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:269
1356
+ msgid ""
1357
+ "The PayPal Adaptive Payments gateway can instantly pay your vendors their "
1358
+ "due commission (if enabled). Also used to mass pay vendors on a schedule / "
1359
+ "manual method (if enabled)."
1360
+ msgstr ""
1361
+ "پرداخت سریع کمیسون فروشندگان از طریق PayPal در صورتی که این گزینه فعال باشد"
1362
+
1363
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1364
+ msgid "Gateway Disabled"
1365
+ msgstr "غیر فعال کردن درگاه پرداخت"
1366
+
1367
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1368
+ #, php-format
1369
+ msgid "%s does not support your store currency."
1370
+ msgstr "%s واحد پول تعیین شده در فروشگاه شما را پشتیبانی نمی کند."
1371
+
1372
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:369
1373
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:483
1374
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:150
1375
+ #, php-format
1376
+ msgid "Error: %s"
1377
+ msgstr "خطای %s"
1378
+
1379
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:378
1380
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:379
1381
+ #, php-format
1382
+ msgid "Error ID: %s. %s"
1383
+ msgstr "شناسه خطا: %s. %s"
1384
+
1385
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:115
1386
+ msgid "No vendors found to pay. Maybe they haven't set a PayPal address?"
1387
+ msgstr ""
1388
+ "این فروشندگان جهت واریز شدن کمیسیون خود تنظیمات PayPal انجام نداده اند؟"
1389
+
1390
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:164
1391
+ msgid "All due commission has been paid for."
1392
+ msgstr "همه کمیسیون ها پرداخت شده است."
1393
+
1394
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:170
1395
+ msgid ""
1396
+ "All due commission has been paid for, but I could not clear it from their "
1397
+ "profiles due to an internal error. Commission will still be listed as due. "
1398
+ "Please manually mark the commission as paid from the Commissions page."
1399
+ msgstr ""
1400
+
1401
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:205
1402
+ msgid "WooCommerce: Mass payments for vendors update"
1403
+ msgstr "به روز رسانی پرداخت انبوه فروشندگان ووکامرس"
1404
+
1405
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:207
1406
+ msgid ""
1407
+ "Hello! A payment was just triggered to mass pay all vendors their due "
1408
+ "commission."
1409
+ msgstr ""
1410
+ "این پرداخت انبوه به درخواست شما جهت واریز تمامی کمیسیون های فروشندگان بود."
1411
+
1412
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:208
1413
+ #, php-format
1414
+ msgid "Payment status: %s."
1415
+ msgstr "وضعيت پرداخت: %s"
1416
+
1417
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:209
1418
+ #, php-format
1419
+ msgid "Payment message: %s."
1420
+ msgstr "جمع کل پرداختی ها: %s"
1421
+
1422
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:212
1423
+ #, php-format
1424
+ msgid "Payment total: %s."
1425
+ msgstr "جمع کل پرداخت ها: %s"
1426
+
1427
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:35
1428
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:71
1429
+ msgid "WC Vendors Test Gateway"
1430
+ msgstr "تست دروازه فروشندگان ووکامرس"
1431
+
1432
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:36
1433
+ msgid ""
1434
+ "This gateway will set orders to processing upon receipt allowing you to test "
1435
+ "transactions in your store. Some WooCommerce included gateways have "
1436
+ "problems with this - you should use this gateway for all of your non-PayPal "
1437
+ "testing."
1438
+ msgstr ""
1439
+ "این درگاهی است جهت تست مراحل سفارش در معاملات فروشندگان که امکانات زیادی جهت "
1440
+ "پیدا کردن مشکلات ووکامرس به شما می دهد. شما می توانید این درگاه را برای همه "
1441
+ "ی تست ها به غیر از PayPal استفاده نمایید."
1442
+
1443
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:64
1444
+ msgid "Enable WC Vendors Test Gateway Payment"
1445
+ msgstr "فعال کردن تست درگاه پرداخت فروشندگان ووکامرس"
1446
+
1447
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:68
1448
+ msgid "Title"
1449
+ msgstr "عنوان"
1450
+
1451
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:77
1452
+ msgid "Payment method description that the customer will see on your checkout."
1453
+ msgstr "توضیح روش پرداخت هنگامی که مشتری میخواهد پرداخت را انجام دهد."
1454
+
1455
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:78
1456
+ msgid ""
1457
+ "This is a test gateway -- not to be used on live sites for live "
1458
+ "transactions. <a href=\"http://www.wcvendors.com/\" target=\"top\">Click "
1459
+ "here to visit WCVendors.com</a>."
1460
+ msgstr ""
1461
+ "این یک درگاه تست است - نمی توان در سایت های های فعال برای انجام معاملات "
1462
+ "واقعی استفاده کرد. <a href=\"http://www.wcvendors.com/\" target=\"top\">برای "
1463
+ "بازدید از WCVendors.com اینجا را کلیک کنید</a>."
1464
+
1465
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:82
1466
+ msgid "Instructions"
1467
+ msgstr "دستورالعمل"
1468
+
1469
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:84
1470
+ msgid ""
1471
+ "Success! Your test order is now marked as processing and any vendors will "
1472
+ "be sent an email as long as you have the Notify Vendors email enabled under "
1473
+ "WooCommerce--Settings--Emails."
1474
+ msgstr ""
1475
+ "ارسال ایمیل آگاه سازی فروشندگان تحت عنوان محصول شما با موفقیت جهت تست ازسال "
1476
+ "شد و در حال پردازش است. برای فعال سازی این ایمیل به مسیر: ووکامرس-> تنظیمات-"
1477
+ "> ایمیل ،بروید"
1478
+
1479
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:124
1480
+ msgid "Test gateway transation complete. Order processing."
1481
+ msgstr "تست کامل محصول اضافه شده، پردازش سفارش"
1482
+
1483
+ #: ../templates/dashboard/denied.php:8
1484
+ msgid ""
1485
+ "Your account has not yet been approved to become a vendor. When it is, you "
1486
+ "will receive an email telling you that your account is approved!"
1487
+ msgstr ""
1488
+ "حساب شما تایید نشده است. حساب شما زمانی فعال می گردد که ایمیل تحت عنوان "
1489
+ "\"حساب شما تایید شد\" دریافت نمایید."
1490
+
1491
+ #: ../templates/dashboard/denied.php:12
1492
+ msgid "Your account is not setup as a vendor."
1493
+ msgstr "حساب کاربری شما به عنوان فروشنده راه اندازی نشده است."
1494
+
1495
+ #: ../templates/dashboard/denied.php:53
1496
+ msgid "Submit"
1497
+ msgstr "ارسال"
1498
+
1499
+ #: ../templates/dashboard/orders.php:7 ../templates/dashboard/orders.php:10
1500
+ msgid "Hide items"
1501
+ msgstr "پنهان کردن گزینه ها"
1502
+
1503
+ #: ../templates/dashboard/orders.php:8 ../templates/dashboard/orders.php:68
1504
+ msgid "View items"
1505
+ msgstr "نمایش گزینه ها"
1506
+
1507
+ #: ../templates/dashboard/orders.php:37
1508
+ msgid "Links"
1509
+ msgstr "لینک ها"
1510
+
1511
+ #: ../templates/dashboard/orders.php:68
1512
+ msgid "Unmark shipped"
1513
+ msgstr "انتخاب به عنوان محصول ارسال نشده"
1514
+
1515
+ #: ../templates/dashboard/orders.php:68
1516
+ msgid "Tracking"
1517
+ msgstr "پیگیری"
1518
+
1519
+ #: ../templates/dashboard/orders.php:118
1520
+ msgid "You have no orders during this period."
1521
+ msgstr "شما در این مدت زمان سفارشی نداشته اید."
1522
+
1523
+ #: ../templates/dashboard/reports.php:1
1524
+ msgid "Sales Report"
1525
+ msgstr "گزارش فروش"
1526
+
1527
+ #: ../templates/dashboard/reports.php:20
1528
+ msgid "Rate"
1529
+ msgstr "امتیاز"
1530
+
1531
+ #: ../templates/dashboard/reports.php:47
1532
+ msgid "Show Orders"
1533
+ msgstr "نمایش سفارشات"
1534
+
1535
+ #: ../templates/dashboard/reports.php:56
1536
+ msgid "Totals"
1537
+ msgstr "مجموع"
1538
+
1539
+ #: ../templates/dashboard/reports.php:71
1540
+ msgid "You have no sales during this period."
1541
+ msgstr "هیچ فروشی در این مدت زمان نداشته اید."
1542
+
1543
+ #: ../templates/dashboard/reports.php:82
1544
+ msgid "You haven't made any sales yet."
1545
+ msgstr "شما فروشی از محصولات ارائه شده نداشته اید"
1546
+
1547
+ #: ../templates/dashboard/settings/settings.php:47
1548
+ msgid "Save"
1549
+ msgstr "ذخیره"
1550
+
1551
+ #: ../templates/emails/admin-new-order.php:13
1552
+ #, php-format
1553
+ msgid "You have received an order from %s. Their order is as follows:"
1554
+ msgstr "شما یک سفارش از %s را دریافت کرده اید. سفارش به شرح زیر است:"
1555
+
1556
+ #: ../templates/emails/admin-new-order.php:17
1557
+ #: ../templates/emails/notify-vendor-shipped.php:17
1558
+ #, php-format
1559
+ msgid "Order: %s"
1560
+ msgstr "سفارش: %s"
1561
+
1562
+ #: ../templates/emails/admin-new-order.php:24
1563
+ #: ../templates/emails/notify-vendor-shipped.php:24
1564
+ msgid "Price"
1565
+ msgstr "قیمت"
1566
+
1567
+ #: ../templates/emails/admin-new-order.php:50
1568
+ #: ../templates/emails/notify-vendor-shipped.php:50
1569
+ msgid "Customer details"
1570
+ msgstr "مشخصات مشتری"
1571
+
1572
+ #: ../templates/emails/admin-new-order.php:53
1573
+ #: ../templates/emails/notify-vendor-shipped.php:53
1574
+ msgid "Email:"
1575
+ msgstr "ایمیل:"
1576
+
1577
+ #: ../templates/emails/admin-new-order.php:56
1578
+ #: ../templates/emails/notify-vendor-shipped.php:56
1579
+ msgid "Tel:"
1580
+ msgstr "تلفن:"
1581
+
1582
+ #: ../templates/emails/application-status.php:5
1583
+ #, php-format
1584
+ msgid "Hi there. This is a notification about a vendor application on %s."
1585
+ msgstr "سلام. این یک اطلاعیه در مورد درخواست فروشنده در %s است"
1586
+
1587
+ #: ../templates/emails/application-status.php:8
1588
+ #, php-format
1589
+ msgid "Application status: %s"
1590
+ msgstr "وضعیت درخواست: %s"
1591
+
1592
+ #: ../templates/emails/application-status.php:9
1593
+ #, php-format
1594
+ msgid "Applicant username: %s"
1595
+ msgstr "نام کاربری متقاضی: %s"
1596
+
1597
+ #: ../templates/emails/new-product.php:5
1598
+ #, php-format
1599
+ msgid "Hi there. This is a notification about a new product on %s."
1600
+ msgstr ""
1601
+ "سلام. این یک اطلاعیه جهت اعلام ارائه محصول جدید در فروشگاه توسط %s است."
1602
+
1603
+ #: ../templates/emails/new-product.php:8
1604
+ #, php-format
1605
+ msgid "Product title: %s"
1606
+ msgstr "عنوان محصول: %s"
1607
+
1608
+ #: ../templates/emails/new-product.php:9
1609
+ #, php-format
1610
+ msgid "Submitted by: %s"
1611
+ msgstr "ارائه شده توسط: %s"
1612
+
1613
+ #: ../templates/emails/new-product.php:10
1614
+ #, php-format
1615
+ msgid "Edit product: %s"
1616
+ msgstr "ویرایش محصول: %s"
1617
+
1618
+ #: ../templates/emails/notify-vendor-shipped.php:13
1619
+ msgid ""
1620
+ "A vendor has marked part of your order as shipped. The items that are "
1621
+ "shipped are as follows:"
1622
+ msgstr ""
1623
+ "فروشنده بخشی از سفارش خود را به عنوان محصول پستی مشخص کرده است. مواردی که "
1624
+ "پست می شوند به شرح زیر است:"
1625
+
1626
+ #: ../templates/orders/comments/add-new-comment.php:11
1627
+ msgid "Add comment"
1628
+ msgstr "ارسال دیدگاه"
1629
+
1630
+ #: ../templates/orders/comments/existing-comments.php:9
1631
+ #, php-format
1632
+ msgid "added %s ago"
1633
+ msgstr "اضافه شده در %s پیش"
1634
+
1635
+ #: ../templates/orders/csv-export.php:6
1636
+ msgid "Export orders"
1637
+ msgstr "برون ریزی سفارشات"
1638
+
1639
+ #: ../templates/orders/customer-note/customer-note.php:4
1640
+ msgid "Customer note"
1641
+ msgstr "دیدگاه مشتری"
1642
+
1643
+ #: ../templates/orders/customer-note/customer-note.php:8
1644
+ msgid "No customer note."
1645
+ msgstr "بدون دیدگاه مشتری"
1646
+
1647
+ #: ../templates/orders/orders.php:84
1648
+ #, php-format
1649
+ msgid "Comments (%s)"
1650
+ msgstr "نظرات (%s)"
1651
+
1652
+ #: ../templates/orders/shipping/shipping-form.php:46
1653
+ msgid "Provider:"
1654
+ msgstr "ارائه دهنده:"
1655
+
1656
+ #: ../templates/orders/shipping/shipping-form.php:48
1657
+ msgid "Custom Provider"
1658
+ msgstr "ارائه دهنده سفارشی"
1659
+
1660
+ #: ../templates/orders/shipping/shipping-form.php:68
1661
+ msgid "Provider Name:"
1662
+ msgstr "نام ارائه دهنده:"
1663
+
1664
+ #: ../templates/orders/shipping/shipping-form.php:76
1665
+ msgid "Tracking number:"
1666
+ msgstr "شماره پیگیری:"
1667
+
1668
+ #: ../templates/orders/shipping/shipping-form.php:84
1669
+ msgid "Tracking link:"
1670
+ msgstr "لینک پیگیری:"
1671
+
1672
+ #: ../templates/orders/shipping/shipping-form.php:93
1673
+ msgid "Date shipped:"
1674
+ msgstr "تاریخ ارسال محصول پستی:"
1675
+
1676
+ #: ../templates/orders/shipping/shipping-form.php:101
1677
+ msgid "Preview:"
1678
+ msgstr "پیش‌ نمایش:"
1679
+
1680
+ #: ../templates/orders/shipping/shipping-form.php:101
1681
+ msgid "Click here to track your shipment"
1682
+ msgstr "برای پیگیری محصول پستی خود اینجا را کلیک کنید"
1683
+
1684
+ #: ../templates/orders/shipping/shipping-form.php:110
1685
+ msgid "Update tracking number"
1686
+ msgstr "به روز رسانی شماره پیگیری"
1687
+
1688
+ #: ../templates/orders/shipping/shipping-form.php:112
1689
+ msgid "Mark as shipped"
1690
+ msgstr "انتخاب به عنوان مجصول پستی"
1691
+
1692
+ #: ../templates/orders/table-body.php:25
1693
+ #, php-format
1694
+ msgid "Quantity: %d"
1695
+ msgstr "تعداد: %d"
readme.txt CHANGED
@@ -5,8 +5,8 @@ Donate link: http://www.wcvendors.com/
5
  Author URI: http://www.wcvendors.com/
6
  Plugin URI: http://www.wcvendors.com/
7
  Requires at least: 4.0
8
- Tested up to: 4.2.0
9
- Stable tag: 1.7.1
10
  License: GPLv2 or later
11
 
12
  The free multi-vendor plugin for WooCommerce. Now you can allow anyone to open a store on your site!
@@ -58,6 +58,14 @@ No Upgrade required at this time.
58
 
59
  == Changelog ==
60
 
 
 
 
 
 
 
 
 
61
  = Version 1.7.1 - April 24th 2015 =
62
 
63
  * Fixed: Invalid argument on new orders dashboard page #138
5
  Author URI: http://www.wcvendors.com/
6
  Plugin URI: http://www.wcvendors.com/
7
  Requires at least: 4.0
8
+ Tested up to: 4.2.2
9
+ Stable tag: 1.7.2
10
  License: GPLv2 or later
11
 
12
  The free multi-vendor plugin for WooCommerce. Now you can allow anyone to open a store on your site!
58
 
59
  == Changelog ==
60
 
61
+ = Version 1.7.2 - May 8th 2015 =
62
+
63
+ * Added: Filters for seller tab #141
64
+ * Fixed: URI Too Large Error #143
65
+ * Fixed: Give tax to vendors #142
66
+ * Updated: Spanish Translations #140
67
+ * Added: Persian Translation #139
68
+
69
  = Version 1.7.1 - April 24th 2015 =
70
 
71
  * Fixed: Invalid argument on new orders dashboard page #138