Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pt-br translation package #2

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include creditcards/locale *
Binary file added creditcards/locale/pt_BR/LC_MESSAGES/django.mo
Binary file not shown.
51 changes: 51 additions & 0 deletions creditcards/locale/pt_BR/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: creditcards 0.4.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-26 16:52-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Alex <[email protected]>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: creditcards/models.py:18
msgid "Card number"
msgstr "Número do cartão"

#: creditcards/models.py:37
#, python-format
msgid ""
"'%(value)s' value has an invalid date format. Expiry date must be in the "
"format MM/YY or MM/YYYY."
msgstr ""
"'O valor '%(value)s' tem um formato de data inválido. A data de expiração precisa estar no "
"format MM/YY or MM/YYYY."

#: creditcards/models.py:40
msgid "Card expiration date"
msgstr "Data de validade do cartão"

#: creditcards/models.py:72
msgid "Card security code"
msgstr "Código de segurança do cartão"

#: creditcards/validators.py:11
msgid "Enter a valid credit card number."
msgstr "Entre com um número de cartão válido."

#: creditcards/validators.py:35
msgid "Enter a valid security code."
msgstr "Entre com um código de segurança válido."

#: creditcards/validators.py:41
msgid "This date has passed."
msgstr "Esta data já passou."
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
EMAIL = '[email protected]'
AUTHOR = 'Mihail Mishakin'
REQUIRES_PYTHON = '>=3'
VERSION = '0.4.1'
VERSION = '0.5.0'

# What packages are required for this module to be executed?
REQUIRED = [
Expand Down