-
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.
chore: change cancelled to cancelled in bid status choices
- Loading branch information
1 parent
0708c76
commit b916f40
Showing
4 changed files
with
39 additions
and
9 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
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,30 @@ | ||
# Generated by Django 5.0.7 on 2024-11-04 05:13 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("bid", "0006_bid_idx_bid_auction_created"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="bid", | ||
name="status", | ||
field=models.CharField( | ||
choices=[ | ||
("Pending", "Pending"), | ||
("Approved", "Approved"), | ||
("Rejected", "Rejected"), | ||
("Deleted", "Deleted"), | ||
("Revoked", "Revoked"), | ||
("Canceled", "Canceled"), | ||
], | ||
default="Pending", | ||
help_text="Status of the bid", | ||
max_length=20, | ||
), | ||
), | ||
] |
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
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-04 03:05+0000\n" | ||
"POT-Creation-Date: 2024-11-04 05:05+0000\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -128,20 +128,20 @@ msgstr "თქვენ არ შეგიძლიათ გააუქომ | |
msgid "Auction was successfully canceled." | ||
msgstr "აუქციონის გაუქმება წარმატებით განხორციელდა." | ||
|
||
#: auction/views.py:1364 | ||
#: auction/views.py:1363 | ||
msgid "You can not leave an auction that has already been completed." | ||
msgstr "თქვენ არ შეგიძლიათ დატოვოთ აუქციონი რომელიც უკვე დასრულდა." | ||
|
||
#: auction/views.py:1370 | ||
#: auction/views.py:1367 | ||
msgid "You can not leave an auction that has not started yet." | ||
msgstr "თქვენ არ შეგიძლიათ დატოვოთ აუქციონი, რომელიც ჯერ არ დაწყებულა." | ||
|
||
#: auction/views.py:1376 | ||
|
||
#: auction/views.py:1371 | ||
msgid "You can not leave an auction that has been cancelled, drafted." | ||
msgstr "თქვენ არ შეგიძლიათ გაუქმებული ან drafter სტატუსის მქონე აუქციონის დატოვება." | ||
msgstr "" | ||
"თქვენ არ შეგიძლიათ გაუქმებული ან drafter სტატუსის მქონე აუქციონის დატოვება." | ||
|
||
#: auction/views.py:1381 | ||
#: auction/views.py:1376 | ||
msgid "As a winner of an auction, you can not leave it." | ||
msgstr "როგორც გამარჯვებული, თქვენ ვერ დატოვებთ აუქციონს." | ||
|
||
|