lingo: don't mark untranslatable payment system names for translation (#39049)

This commit is contained in:
Frédéric Péters 2020-01-17 11:20:52 +01:00
parent 495a311efd
commit dea9a0484a
1 changed files with 6 additions and 6 deletions

View File

@ -61,14 +61,14 @@ EXPIRED = 9999
SERVICES = [
(eopayment.DUMMY, _('Dummy (for tests)')),
(eopayment.SYSTEMPAY, 'systempay (Banque Populaire)'),
(eopayment.SIPS, _('SIPS (Atos, France)')),
(eopayment.SIPS, 'SIPS (Atos, France)'),
(eopayment.SIPS2, _('SIPS (Atos, other countries)')),
(eopayment.SPPLUS, _('SP+ (Caisse d\'epargne)')),
(eopayment.SPPLUS, 'SP+ (Caisse d\'epargne)'),
(eopayment.OGONE, _('Ingenico (formerly Ogone)')),
(eopayment.PAYBOX, _('Paybox')),
(eopayment.PAYZEN, _('PayZen')),
(eopayment.TIPI, _('PayFiP/TIPI Régie')),
(eopayment.PAYFIP_WS, _('PayFiP Régie Web-Service')),
(eopayment.PAYBOX, 'Paybox'),
(eopayment.PAYZEN, 'PayZen'),
(eopayment.TIPI, 'PayFiP/TIPI Régie'),
(eopayment.PAYFIP_WS, 'PayFiP Régie Web-Service'),
]
def build_remote_item(data, regie):