schon/engine/payments/locale/fa_IR/LC_MESSAGES/django.po
Egor fureunoir Gorbunov 150e4bcf24 Features: 1) No new features added.
Fixes: 1) Fixed Hebrew translation line breaks and spacing inconsistencies; 2) Corrected punctuation and formatting in user reset password email template; 3) Fixed line breaks in model docstring for proper formatting.

Extra: 1) Updated POT-Creation-Date to reflect latest commit; 2) Minor whitespace and punctuation fixes across multiple translation strings.
2025-11-17 16:19:29 +03:00

234 lines
5.7 KiB
Text

# 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.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-11-17 16:16+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: engine/payments/admin.py:17 engine/payments/models.py:56
msgid "transaction"
msgstr ""
#: engine/payments/admin.py:18 engine/payments/models.py:57
msgid "transactions"
msgstr ""
#: engine/payments/admin.py:64
msgid "can be used"
msgstr ""
#: engine/payments/apps.py:8
msgid "payments"
msgstr ""
#: engine/payments/choices.py:3
msgid "deposit"
msgstr ""
#: engine/payments/choices.py:3
msgid "withdraw"
msgstr ""
#: engine/payments/docs/drf/views.py:13
msgid "deposit to balance"
msgstr ""
#: engine/payments/docs/drf/views.py:14
msgid "deposit some money to balance"
msgstr ""
#: engine/payments/docs/drf/viewsets.py:14
msgid "list all transactions (read-only)"
msgstr ""
#: engine/payments/docs/drf/viewsets.py:21
msgid "retrieve a single transaction (read-only)"
msgstr ""
#: engine/payments/docs/drf/viewsets.py:26
msgid "Transaction UUID"
msgstr ""
#: engine/payments/models.py:36
msgid "order to process after paid"
msgstr ""
#: engine/payments/models.py:39
msgid "processing details"
msgstr ""
#: engine/payments/models.py:75
msgid "balance"
msgstr ""
#: engine/payments/models.py:76
msgid "balances"
msgstr ""
#: engine/payments/models.py:86
msgid "name"
msgstr ""
#: engine/payments/models.py:91
msgid "default currency"
msgstr ""
#: engine/payments/models.py:98
msgid "currencies"
msgstr ""
#: engine/payments/models.py:100
msgid "comma separated list of currencies supported by this gateway, "
msgstr ""
#: engine/payments/models.py:106
msgid "minimum transaction amount"
msgstr ""
#: engine/payments/models.py:109
msgid "maximum transaction amount"
msgstr ""
#: engine/payments/models.py:115
msgid "daily limit"
msgstr ""
#: engine/payments/models.py:116
msgid "daily sum limit of transactions' amounts. 0 means no limit"
msgstr ""
#: engine/payments/models.py:122
msgid "monthly limit"
msgstr ""
#: engine/payments/models.py:123
msgid "monthly sum limit of transactions' amounts. 0 means no limit"
msgstr ""
#: engine/payments/models.py:125
msgid "priority"
msgstr ""
#: engine/payments/models.py:126
msgid "integration variables"
msgstr ""
#: engine/payments/models.py:132
msgid "payment gateway"
msgstr ""
#: engine/payments/models.py:133
msgid "payment gateways"
msgstr ""
#: engine/payments/models.py:169
msgid "gateway integration path is not set"
msgstr ""
#: engine/payments/models.py:174
#, python-format
msgid "invalid integration path: %(path)s"
msgstr ""
#: engine/payments/signals.py:41
msgid "the transaction amount didn't fit into allowed limits: "
msgstr ""
#: engine/payments/templates/balance_deposit_email.html:6
#: engine/payments/templates/balance_deposit_email.html:93
msgid "balance deposit"
msgstr ""
#: engine/payments/templates/balance_deposit_email.html:88
msgid "logo"
msgstr ""
#: engine/payments/templates/balance_deposit_email.html:94
#, python-format
msgid "hello %(user_first_name)s,"
msgstr ""
#: engine/payments/templates/balance_deposit_email.html:95
#, python-format
msgid ""
"we have successfully credited your account with %(amount)s. your current\n"
" balance is %(balance)s."
msgstr ""
#: engine/payments/templates/balance_deposit_email.html:98
#, python-format
msgid ""
"if you have any questions, feel free to contact our support at\n"
" %(contact_email)s."
msgstr ""
#: engine/payments/templates/balance_deposit_email.html:100
#, python-format
msgid "best regards,<br>the %(project_name)s team"
msgstr ""
#: engine/payments/templates/balance_deposit_email.html:106
msgid "all rights reserved"
msgstr ""
#: engine/payments/utils/__init__.py:8
msgid "a provider to get rates from is required"
msgstr ""
#: engine/payments/utils/__init__.py:15
#, python-brace-format
msgid "couldn't find provider {provider}"
msgstr ""
#: engine/payments/utils/emailing.py:28
#, python-brace-format
msgid "{settings.PROJECT_NAME} | balance deposit"
msgstr ""
#: engine/payments/views.py:23
msgid ""
"This class provides an API endpoint to handle deposit transactions.\n"
"It supports the creation of a deposit transaction after validating the "
"provided data. If the user is not authenticated, an appropriate response is "
"returned. On successful validation and execution, a response with the "
"transaction details is provided."
msgstr ""
#: engine/payments/views.py:49
msgid ""
"Handles incoming callback requests to the API.\n"
"This class processes and routes incoming HTTP POST requests to the "
"appropriate pgateway handler based on the provided gateway parameter. It is "
"designed to handle callback events coming from external systems and provide "
"an appropriate HTTP response indicating success or failure."
msgstr ""
#: engine/payments/views.py:60
#, python-brace-format
msgid "Transaction {transaction.uuid} has no gateway"
msgstr ""
#: engine/payments/views.py:63
#, python-brace-format
msgid "Gateway {transaction.gateway} has no integration"
msgstr ""
#: engine/payments/viewsets.py:14
msgid ""
"ViewSet for handling read-only operations on the Transaction model. This "
"class provides a read-only interface for interacting with transaction data. "
"It uses the TransactionSerializer for serializing and deserializing the "
"data. The class ensures that only authorized users, who meet specific "
"permissions, can access the transactions."
msgstr ""