Skip to content

Commit

Permalink
Translation and proper function name
Browse files Browse the repository at this point in the history
  • Loading branch information
Delawen committed Oct 11, 2020
1 parent 25b681c commit 3bc923d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pretix_mercadopago/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
__version__ = '1.0.0'


class PluginMeli(PluginConfig):
class PluginMercadoPago(PluginConfig):
name = 'pretix_mercadopago'
verbose_name = 'MercadoPago Pretix plugin'

class PretixPluginMeta:
name = gettext_lazy('MercadoPago Pretix plugin')
author = 'FOSS4G team'
description = gettext_lazy('Plugin para MercadoPago como medio de pago para las entradas.')
description = gettext_lazy('Payment Provider for MercadoPago.')
visible = True
version = __version__
category = 'PAYMENT'
Expand All @@ -38,4 +38,4 @@ def compatibility_errors(self):
return errs


default_app_config = 'pretix_mercadopago.PluginMeli'
default_app_config = 'pretix_mercadopago.PluginMercadoPago'

0 comments on commit 3bc923d

Please sign in to comment.