-
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.
Merge branch 'dev' of github.com:/sweeftdigital/accounts_G2 into dev
- Loading branch information
Showing
7 changed files
with
148 additions
and
5 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 13:31+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" | ||
|
@@ -433,6 +433,15 @@ msgstr "" | |
"თქვენ ხელთავიდან გამოგეგზავნათ ორ ფაქტორიანი ავთენტიფიკაციისთვის განკუთვნილი " | ||
"ერთჯერადი კოდი." | ||
|
||
#: payments/views.py:586 payments/views.py:601 | ||
msgid "No payments found for this user." | ||
msgstr "" | ||
|
||
#: templates/password_reset_with_email.html:28 | ||
msgid "Thanks for using our site!" | ||
msgstr "მადლობას გიხდით ჩვენი ვებ-გვერდის გამოყენებისთვის!" | ||
|
||
#, fuzzy | ||
#~| msgid "You do not have permission to perform this action." | ||
#~ msgid "You do not have permission to access this payment." | ||
#~ msgstr "თქვენ არ გაქვთ ამ მოქმედების შესრულების უფლება." |
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,22 @@ | ||
# Generated by Django 5.0.4 on 2024-11-05 07:54 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("payments", "0003_balance_currency"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="balance", | ||
name="currency", | ||
field=models.CharField( | ||
choices=[("GEL", "GEL"), ("USD", "USD"), ("EUR", "EUR")], | ||
default="USD", | ||
max_length=3, | ||
), | ||
), | ||
] |
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