Skip to content

Commit

Permalink
feat(translation): add es_AR translation (#1)
Browse files Browse the repository at this point in the history
Co-authored-by: Ariel Torti <arieltorti14@gmail.com>
Co-authored-by: David Sanders <davesque@gmail.com>
  • Loading branch information
3 people authored Jul 1, 2020
1 parent 80c6e7e commit e73d4cd
Show file tree
Hide file tree
Showing 2 changed files with 109 additions and 0 deletions.
Binary file not shown.
109 changes: 109 additions & 0 deletions rest_framework_simplejwt/locale/es_AR/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Ariel Torti <arieltorti14@gmail.com>, 2020.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: djangorestframework_simplejwt\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-04-18 20:47-0300\n"
"Last-Translator: Ariel Torti <arieltort14@gmail.com>\n"
"Language: es_AR\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"

#: rest_framework_simplejwt/authentication.py:75
msgid "Authorization header must contain two space-delimited values"
msgstr "El header de autorización debe contener dos valores delimitados por espacio"

#: rest_framework_simplejwt/authentication.py:96
msgid "Given token not valid for any token type"
msgstr "El token dado no es válido para ningún tipo de token"

#: rest_framework_simplejwt/authentication.py:107
#: rest_framework_simplejwt/authentication.py:129
msgid "Token contained no recognizable user identification"
msgstr "El token no contiene ninguna identificación de usuario"

#: rest_framework_simplejwt/authentication.py:112
msgid "User not found"
msgstr "Usuario no encontrado"

#: rest_framework_simplejwt/authentication.py:115
msgid "User is inactive"
msgstr "El usuario está inactivo"

#: rest_framework_simplejwt/backends.py:21
msgid "Unrecognized algorithm type '{}'"
msgstr "Tipo de algoritmo no reconocido '{}'"

#: rest_framework_simplejwt/backends.py:58
#: rest_framework_simplejwt/exceptions.py:38
#: rest_framework_simplejwt/tokens.py:44
msgid "Token is invalid or expired"
msgstr "El token es inválido o ha expirado"

#: rest_framework_simplejwt/serializers.py:24
msgid "No active account found with the given credentials"
msgstr "No se encontró una cuenta de usuario activa para las credenciales dadas"

#: rest_framework_simplejwt/settings.py:59
msgid ""
"The '{}' setting has been removed. Please refer to '{}' for available "
"settings."
msgstr ""
"La configuración '{}' fue removida. Por favor, refiérase a '{}' para consultar las "
"configuraciones disponibles."

#: rest_framework_simplejwt/token_blacklist/admin.py:72
msgid "jti"
msgstr "jti"

#: rest_framework_simplejwt/token_blacklist/admin.py:77
msgid "user"
msgstr "usuario"

#: rest_framework_simplejwt/token_blacklist/admin.py:82
msgid "created at"
msgstr "creado en"

#: rest_framework_simplejwt/token_blacklist/admin.py:87
msgid "expires at"
msgstr "expira en"

#: rest_framework_simplejwt/token_blacklist/apps.py:7
msgid "Token Blacklist"
msgstr "Lista negra de Tokens"

#: rest_framework_simplejwt/tokens.py:30
msgid "Cannot create token with no type or lifetime"
msgstr "No es posible crear un token sin tipo o tiempo de vida"

#: rest_framework_simplejwt/tokens.py:98
msgid "Token has no id"
msgstr "El token no tiene id"

#: rest_framework_simplejwt/tokens.py:109
msgid "Token has no type"
msgstr "El token no tiene tipo"

#: rest_framework_simplejwt/tokens.py:112
msgid "Token has wrong type"
msgstr "El token tiene un tipo incorrecto"

#: rest_framework_simplejwt/tokens.py:149
msgid "Token has no '{}' claim"
msgstr "El token no tiene el privilegio '{}'"

#: rest_framewok_simplejwt/tokens.py:153
msgid "Token '{}' claim has expired"
msgstr "El privilegio '{}' del token ha expirado"

#: rest_framework_simplejwt/tokens.py:192
msgid "Token is blacklisted"
msgstr "El token está en la lista negra"

0 comments on commit e73d4cd

Please sign in to comment.