You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

146 lines
4.7 KiB

  1. # Translation of Odoo Server.
  2. # This file contains the translation of the following modules:
  3. # * oauth_provider_jwt
  4. #
  5. # Translators:
  6. # OCA Transbot <transbot@odoo-community.org>, 2017
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: Odoo Server 9.0c\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2017-06-24 08:50+0000\n"
  12. "PO-Revision-Date: 2017-06-24 08:50+0000\n"
  13. "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
  14. "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: \n"
  18. "Language: es\n"
  19. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  20. #. module: oauth_provider_jwt
  21. #: model:ir.model.fields,field_description:oauth_provider_jwt.field_oauth_provider_client_jwt_algorithm
  22. msgid "Algorithm"
  23. msgstr ""
  24. #. module: oauth_provider_jwt
  25. #: model:ir.model.fields,help:oauth_provider_jwt.field_oauth_provider_client_jwt_algorithm
  26. msgid "Algorithm used to sign the JSON Web Token."
  27. msgstr ""
  28. #. module: oauth_provider_jwt
  29. #: model:ir.model.fields,field_description:oauth_provider_jwt.field_oauth_provider_client_jwt_scope_id
  30. msgid "Data Scope"
  31. msgstr ""
  32. #. module: oauth_provider_jwt
  33. #: selection:oauth.provider.client,jwt_algorithm:0
  34. msgid "ECDSA signature algorithm using SHA-256 hash algorithm"
  35. msgstr ""
  36. #. module: oauth_provider_jwt
  37. #: selection:oauth.provider.client,jwt_algorithm:0
  38. msgid "ECDSA signature algorithm using SHA-384 hash algorithm"
  39. msgstr ""
  40. #. module: oauth_provider_jwt
  41. #: selection:oauth.provider.client,jwt_algorithm:0
  42. msgid "ECDSA signature algorithm using SHA-512 hash algorithm"
  43. msgstr ""
  44. #. module: oauth_provider_jwt
  45. #: model:ir.ui.view,arch_db:oauth_provider_jwt.view_oauth_provider_client_form
  46. msgid "Generate a new random private key"
  47. msgstr ""
  48. #. module: oauth_provider_jwt
  49. #: selection:oauth.provider.client,jwt_algorithm:0
  50. msgid "HMAC using SHA-256 hash algorithm"
  51. msgstr ""
  52. #. module: oauth_provider_jwt
  53. #: selection:oauth.provider.client,jwt_algorithm:0
  54. msgid "HMAC using SHA-384 hash algorithm"
  55. msgstr ""
  56. #. module: oauth_provider_jwt
  57. #: selection:oauth.provider.client,jwt_algorithm:0
  58. msgid "HMAC using SHA-512 hash algorithm"
  59. msgstr ""
  60. #. module: oauth_provider_jwt
  61. #: model:ir.ui.view,arch_db:oauth_provider_jwt.view_oauth_provider_client_form
  62. msgid "JSON Web Token"
  63. msgstr ""
  64. #. module: oauth_provider_jwt
  65. #: model:ir.model,name:oauth_provider_jwt.model_oauth_provider_client
  66. msgid "OAuth Provider Client"
  67. msgstr ""
  68. #. module: oauth_provider_jwt
  69. #: model:ir.model.fields,field_description:oauth_provider_jwt.field_oauth_provider_client_jwt_private_key
  70. msgid "Private Key"
  71. msgstr "Clave privada"
  72. #. module: oauth_provider_jwt
  73. #: model:ir.model.fields,help:oauth_provider_jwt.field_oauth_provider_client_jwt_private_key
  74. msgid "Private key used for the JSON Web Token generation."
  75. msgstr ""
  76. #. module: oauth_provider_jwt
  77. #: model:ir.model.fields,field_description:oauth_provider_jwt.field_oauth_provider_client_jwt_public_key
  78. msgid "Public Key"
  79. msgstr "Clave pública"
  80. #. module: oauth_provider_jwt
  81. #: model:ir.model.fields,help:oauth_provider_jwt.field_oauth_provider_client_jwt_public_key
  82. msgid "Public key used for the JSON Web Token generation."
  83. msgstr ""
  84. #. module: oauth_provider_jwt
  85. #: selection:oauth.provider.client,jwt_algorithm:0
  86. msgid "RSASSA-PKCS1-v1_5 signature algorithm using SHA-256 hash algorithm"
  87. msgstr ""
  88. #. module: oauth_provider_jwt
  89. #: selection:oauth.provider.client,jwt_algorithm:0
  90. msgid "RSASSA-PKCS1-v1_5 signature algorithm using SHA-384 hash algorithm"
  91. msgstr ""
  92. #. module: oauth_provider_jwt
  93. #: selection:oauth.provider.client,jwt_algorithm:0
  94. msgid "RSASSA-PKCS1-v1_5 signature algorithm using SHA-512 hash algorithm"
  95. msgstr ""
  96. #. module: oauth_provider_jwt
  97. #: selection:oauth.provider.client,jwt_algorithm:0
  98. msgid "RSASSA-PSS signature using SHA-256 and MGF1 padding with SHA-256"
  99. msgstr ""
  100. #. module: oauth_provider_jwt
  101. #: selection:oauth.provider.client,jwt_algorithm:0
  102. msgid "RSASSA-PSS signature using SHA-384 and MGF1 padding with SHA-384"
  103. msgstr ""
  104. #. module: oauth_provider_jwt
  105. #: selection:oauth.provider.client,jwt_algorithm:0
  106. msgid "RSASSA-PSS signature using SHA-512 and MGF1 padding with SHA-512"
  107. msgstr ""
  108. #. module: oauth_provider_jwt
  109. #: model:ir.model.fields,help:oauth_provider_jwt.field_oauth_provider_client_jwt_scope_id
  110. msgid "Scope executed to add some user's data in the token."
  111. msgstr ""
  112. #. module: oauth_provider_jwt
  113. #: code:addons/oauth_provider_jwt/models/oauth_provider_client.py:101
  114. #, python-format
  115. msgid "The private key doesn't fit the selected algorithm!"
  116. msgstr ""
  117. #. module: oauth_provider_jwt
  118. #: code:addons/oauth_provider_jwt/models/oauth_provider_client.py:122
  119. #, python-format
  120. msgid "You can only generate private keys for asymetric algorithms!"
  121. msgstr ""