-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e332217
commit 310dddc
Showing
6 changed files
with
79 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: PACKAGE VERSION\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2024-11-05 11:14+0400\n" | ||
"POT-Creation-Date: 2024-11-05 12:33+0400\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -48,6 +48,12 @@ msgstr "" | |
"თქვენ არ გაქვთ ამ მოქმედების შესრულების უფლება, მომხმარებელი უნდა იყოს " | ||
"მყიდველი." | ||
|
||
#: apis/permissions.py:77 | ||
#, fuzzy | ||
#| msgid "You do not have permission to perform this action." | ||
msgid "You do not have permission to access this payment." | ||
msgstr "თქვენ არ გაქვთ ამ მოქმედების შესრულების უფლება." | ||
|
||
#: apis/serializers.py:75 apis/serializers.py:310 apis/serializers.py:902 | ||
#: apis/serializers.py:921 apis/serializers.py:1085 | ||
msgid "" | ||
|
26 changes: 26 additions & 0 deletions
26
payments/migrations/0005_alter_payment_options_alter_balance_currency.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Generated by Django 5.0.4 on 2024-11-05 08:32 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("payments", "0004_alter_balance_currency"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name="payment", | ||
options={"ordering": ["-created_at"]}, | ||
), | ||
migrations.AlterField( | ||
model_name="balance", | ||
name="currency", | ||
field=models.CharField( | ||
choices=[("GEL", "GEL"), ("USD", "USD"), ("EUR", "EUR")], | ||
default="GEL", | ||
max_length=3, | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters