From 4c2dcc50705bc48c0365e74064a76e6320557d62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Tue, 4 Apr 2023 18:17:44 +0800 Subject: [PATCH] Renamed the project from "Mia! Accounting Flask" to "Mia! Accounting". --- .gitignore | 2 +- MANIFEST.in | 2 +- README.rst | 14 +++++++------- docs/source/conf.py | 2 +- docs/source/index.rst | 6 +++--- pyproject.toml | 2 +- setup.cfg | 10 +++++----- src/accounting/__init__.py | 2 +- src/accounting/account/__init__.py | 2 +- src/accounting/account/commands.py | 2 +- src/accounting/account/converters.py | 2 +- src/accounting/account/forms.py | 2 +- src/accounting/account/queries.py | 2 +- src/accounting/account/views.py | 2 +- src/accounting/base_account/__init__.py | 2 +- src/accounting/base_account/commands.py | 2 +- src/accounting/base_account/converters.py | 2 +- src/accounting/base_account/queries.py | 2 +- src/accounting/base_account/views.py | 2 +- src/accounting/currency/__init__.py | 2 +- src/accounting/currency/commands.py | 2 +- src/accounting/currency/converters.py | 2 +- src/accounting/currency/forms.py | 2 +- src/accounting/currency/queries.py | 2 +- src/accounting/currency/views.py | 2 +- src/accounting/forms.py | 2 +- src/accounting/journal_entry/__init__.py | 2 +- src/accounting/journal_entry/converters.py | 2 +- src/accounting/journal_entry/forms/__init__.py | 2 +- src/accounting/journal_entry/forms/currency.py | 2 +- .../journal_entry/forms/journal_entry.py | 2 +- src/accounting/journal_entry/forms/line_item.py | 2 +- src/accounting/journal_entry/forms/reorder.py | 2 +- src/accounting/journal_entry/template_filters.py | 2 +- src/accounting/journal_entry/utils/__init__.py | 2 +- .../journal_entry/utils/account_option.py | 2 +- .../journal_entry/utils/description_editor.py | 2 +- src/accounting/journal_entry/utils/offset_alias.py | 2 +- src/accounting/journal_entry/utils/operators.py | 2 +- .../journal_entry/utils/original_line_items.py | 2 +- src/accounting/journal_entry/views.py | 2 +- src/accounting/locale.py | 2 +- src/accounting/models.py | 2 +- src/accounting/option/__init__.py | 2 +- src/accounting/option/forms.py | 2 +- src/accounting/option/views.py | 2 +- src/accounting/report/__init__.py | 2 +- src/accounting/report/converters.py | 2 +- src/accounting/report/period/__init__.py | 2 +- src/accounting/report/period/chooser.py | 2 +- src/accounting/report/period/description.py | 2 +- src/accounting/report/period/month_end.py | 2 +- src/accounting/report/period/parser.py | 2 +- src/accounting/report/period/period.py | 2 +- src/accounting/report/period/shortcuts.py | 2 +- src/accounting/report/period/specification.py | 2 +- src/accounting/report/reports/__init__.py | 2 +- src/accounting/report/reports/balance_sheet.py | 2 +- src/accounting/report/reports/income_expenses.py | 2 +- src/accounting/report/reports/income_statement.py | 2 +- src/accounting/report/reports/journal.py | 2 +- src/accounting/report/reports/ledger.py | 2 +- src/accounting/report/reports/search.py | 2 +- src/accounting/report/reports/trial_balance.py | 2 +- src/accounting/report/template_filters.py | 2 +- src/accounting/report/utils/__init__.py | 2 +- src/accounting/report/utils/base_page_params.py | 2 +- src/accounting/report/utils/base_report.py | 2 +- src/accounting/report/utils/csv_export.py | 2 +- src/accounting/report/utils/option_link.py | 2 +- src/accounting/report/utils/report_chooser.py | 2 +- src/accounting/report/utils/report_type.py | 2 +- src/accounting/report/utils/urls.py | 2 +- src/accounting/report/views.py | 2 +- src/accounting/static/css/style.css | 2 +- src/accounting/static/js/account-form.js | 2 +- src/accounting/static/js/account-order.js | 2 +- src/accounting/static/js/currency-form.js | 2 +- src/accounting/static/js/description-editor.js | 2 +- src/accounting/static/js/drag-and-drop-reorder.js | 2 +- .../static/js/journal-entry-account-selector.js | 2 +- src/accounting/static/js/journal-entry-form.js | 2 +- .../static/js/journal-entry-line-item-editor.js | 2 +- src/accounting/static/js/journal-entry-order.js | 2 +- .../static/js/material-fab-speed-dial.js | 2 +- src/accounting/static/js/option-form.js | 2 +- .../static/js/original-line-item-selector.js | 2 +- src/accounting/static/js/period-chooser.js | 2 +- src/accounting/template_filters.py | 2 +- src/accounting/template_globals.py | 2 +- .../templates/accounting/account/create.html | 2 +- .../templates/accounting/account/detail.html | 2 +- .../templates/accounting/account/edit.html | 2 +- .../templates/accounting/account/include/form.html | 2 +- .../templates/accounting/account/list.html | 2 +- .../templates/accounting/account/order.html | 2 +- .../templates/accounting/base-account/detail.html | 2 +- .../templates/accounting/base-account/list.html | 2 +- src/accounting/templates/accounting/base.html | 2 +- .../templates/accounting/currency/create.html | 2 +- .../templates/accounting/currency/detail.html | 2 +- .../templates/accounting/currency/edit.html | 2 +- .../accounting/currency/include/form.html | 2 +- .../templates/accounting/currency/list.html | 2 +- .../templates/accounting/include/nav.html | 2 +- .../templates/accounting/include/pagination.html | 2 +- .../journal-entry/disbursement/create.html | 2 +- .../journal-entry/disbursement/detail.html | 2 +- .../journal-entry/disbursement/edit.html | 2 +- .../disbursement/include/form-currency.html | 2 +- .../journal-entry/disbursement/include/form.html | 2 +- .../include/account-selector-modal.html | 2 +- .../include/description-editor-modal.html | 2 +- .../journal-entry/include/detail-line-items.html | 2 +- .../accounting/journal-entry/include/detail.html | 2 +- .../journal-entry/include/form-currency.html | 2 +- .../journal-entry/include/form-debit-credit.html | 2 +- .../journal-entry/include/form-line-item.html | 2 +- .../accounting/journal-entry/include/form.html | 2 +- .../journal-entry-line-item-editor-modal.html | 2 +- .../journal-entry/include/order-journal-entry.html | 2 +- .../include/original-line-item-selector-modal.html | 2 +- .../templates/accounting/journal-entry/order.html | 2 +- .../accounting/journal-entry/receipt/create.html | 2 +- .../accounting/journal-entry/receipt/detail.html | 2 +- .../accounting/journal-entry/receipt/edit.html | 2 +- .../receipt/include/form-currency.html | 2 +- .../journal-entry/receipt/include/form.html | 2 +- .../accounting/journal-entry/transfer/create.html | 2 +- .../accounting/journal-entry/transfer/detail.html | 2 +- .../accounting/journal-entry/transfer/edit.html | 2 +- .../transfer/include/form-currency.html | 2 +- .../journal-entry/transfer/include/form.html | 2 +- .../templates/accounting/option/detail.html | 2 +- .../templates/accounting/option/form.html | 2 +- .../include/form-recurring-expense-income.html | 2 +- .../option/include/form-recurring-item.html | 2 +- .../include/recurring-account-selector-modal.html | 2 +- .../include/recurring-item-editor-modal.html | 2 +- .../templates/accounting/report/balance-sheet.html | 2 +- .../include/add-journal-entry-material-fab.html | 2 +- .../report/include/balance-sheet-section.html | 2 +- .../include/income-expenses-row-desktop.html | 2 +- .../report/include/income-expenses-row-mobile.html | 2 +- .../report/include/ledger-row-desktop.html | 2 +- .../report/include/ledger-row-mobile.html | 2 +- .../accounting/report/include/period-chooser.html | 2 +- .../accounting/report/include/search-modal.html | 2 +- .../accounting/report/include/toolbar-buttons.html | 2 +- .../accounting/report/income-expenses.html | 2 +- .../accounting/report/income-statement.html | 2 +- .../templates/accounting/report/journal.html | 2 +- .../templates/accounting/report/ledger.html | 2 +- .../templates/accounting/report/search.html | 2 +- .../templates/accounting/report/trial-balance.html | 2 +- .../translations/zh_Hant/LC_MESSAGES/accounting.po | 4 ++-- src/accounting/utils/__init__.py | 2 +- src/accounting/utils/cast.py | 2 +- src/accounting/utils/current_account.py | 2 +- src/accounting/utils/flash_errors.py | 2 +- src/accounting/utils/journal_entry_types.py | 2 +- src/accounting/utils/next_uri.py | 2 +- src/accounting/utils/options.py | 2 +- src/accounting/utils/pagination.py | 2 +- src/accounting/utils/permission.py | 2 +- src/accounting/utils/query.py | 2 +- src/accounting/utils/random_id.py | 2 +- src/accounting/utils/strip_text.py | 2 +- src/accounting/utils/user.py | 2 +- tests/babel-utils-test-site.py | 2 +- tests/babel-utils.py | 2 +- tests/test_account.py | 2 +- tests/test_base_account.py | 2 +- tests/test_currency.py | 2 +- tests/test_description_editor.py | 2 +- tests/test_journal_entry.py | 2 +- tests/test_offset.py | 2 +- tests/test_option.py | 2 +- tests/test_site/__init__.py | 4 ++-- tests/test_site/auth.py | 4 ++-- tests/test_site/locale.py | 4 ++-- tests/test_site/templates/base.html | 2 +- tests/test_site/templates/home.html | 2 +- tests/test_site/templates/login.html | 2 +- .../translations/zh_Hant/LC_MESSAGES/messages.po | 4 ++-- tests/test_utils.py | 2 +- tests/testlib.py | 2 +- tests/testlib_journal_entry.py | 2 +- tests/testlib_offset.py | 2 +- 189 files changed, 206 insertions(+), 206 deletions(-) diff --git a/.gitignore b/.gitignore index 3b99c9e..2d1c634 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/27 # Copyright (c) 2022 imacat. diff --git a/MANIFEST.in b/MANIFEST.in index 051c635..1fbcfc4 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -# The Mia! Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2022/8/21 # Copyright (c) 2022-2023 imacat. diff --git a/README.rst b/README.rst index 8eaf9bd..df044ae 100644 --- a/README.rst +++ b/README.rst @@ -1,12 +1,12 @@ -===================== -Mia! Accounting Flask -===================== +=============== +Mia! Accounting +=============== Description =========== -This is the Mia! Accounting Flask project. It is an accounting +This is the Mia! Accounting project. It is an accounting module for the Flask_ applications. @@ -14,11 +14,11 @@ Install ======= Install the latest source from the -`Mia! Accounting Flask repository`_. +`Mia! Accounting repository`_. :: - pip install git+https://gitea.imacat.idv.tw/imacat/mia-accounting-flask.git + pip install git+https://github.com/imacat/mia-accounting.git Copyright @@ -47,4 +47,4 @@ Authors | 2023/1/27 .. _Flask: https://flask.palletsprojects.com -.. _Mia! Accounting Flask repository: https://gitea.imacat.idv.tw/imacat/mia-accounting-flask +.. _Mia! Accounting repository: https://github.com/imacat/mia-accounting diff --git a/docs/source/conf.py b/docs/source/conf.py index 4ded00d..cf3f9ff 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -10,7 +10,7 @@ sys.path.insert(0, os.path.abspath('../../src/')) # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information -project = 'Mia! Accounting Flask' +project = 'Mia! Accounting' copyright = '2023, imacat' author = 'imacat' release = '0.10.0' diff --git a/docs/source/index.rst b/docs/source/index.rst index 3cf6286..a951ac3 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -1,10 +1,10 @@ -.. Mia! Accounting Flask documentation master file, created by +.. Mia! Accounting documentation master file, created by sphinx-quickstart on Fri Jan 27 12:20:04 2023. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. -Welcome to Mia! Accounting Flask's documentation! -================================================= +Welcome to Mia! Accounting's documentation! +=========================================== .. toctree:: :maxdepth: 2 diff --git a/pyproject.toml b/pyproject.toml index 3ca8701..dc6f629 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,4 +1,4 @@ -# The Mia! Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2022/8/21 # Copyright (c) 2022 imacat. diff --git a/setup.cfg b/setup.cfg index a8af605..d4eadef 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,4 @@ -# The Mia! Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2022/8/21 # Copyright (c) 2022-2023 imacat. @@ -16,16 +16,16 @@ # limitations under the License. [metadata] -name = mia-accounting-flask +name = mia-accounting version = 0.10.0 author = imacat author_email = imacat@mail.imacat.idv.tw -description = The Mia! Accounting Flask project. +description = The Mia! Accounting project. long_description = file: README.rst long_description_content_type = text/x-rst -url = https://github.com/imacat/mia-accounting-flask +url = https://github.com/imacat/mia-accounting project_urls = - Bug Tracker = https://github.com/imacat/mia-accounting-flask/issues + Bug Tracker = https://github.com/imacat/mia-accounting/issues classifiers = Programming Language :: Python :: 3 License :: OSI Approved :: Apache Software License diff --git a/src/accounting/__init__.py b/src/accounting/__init__.py index cc3c4f8..f2d624b 100644 --- a/src/accounting/__init__.py +++ b/src/accounting/__init__.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/25 # Copyright (c) 2023 imacat. diff --git a/src/accounting/account/__init__.py b/src/accounting/account/__init__.py index fda5dfc..190acdf 100644 --- a/src/accounting/account/__init__.py +++ b/src/accounting/account/__init__.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/30 # Copyright (c) 2023 imacat. diff --git a/src/accounting/account/commands.py b/src/accounting/account/commands.py index ad85c44..6f772fb 100644 --- a/src/accounting/account/commands.py +++ b/src/accounting/account/commands.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/30 # Copyright (c) 2023 imacat. diff --git a/src/accounting/account/converters.py b/src/accounting/account/converters.py index 467eef2..faa3c3c 100644 --- a/src/accounting/account/converters.py +++ b/src/accounting/account/converters.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/31 # Copyright (c) 2023 imacat. diff --git a/src/accounting/account/forms.py b/src/accounting/account/forms.py index a87883d..c15940f 100644 --- a/src/accounting/account/forms.py +++ b/src/accounting/account/forms.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/1 # Copyright (c) 2023 imacat. diff --git a/src/accounting/account/queries.py b/src/accounting/account/queries.py index 53499db..d8ac09c 100644 --- a/src/accounting/account/queries.py +++ b/src/accounting/account/queries.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/30 # Copyright (c) 2023 imacat. diff --git a/src/accounting/account/views.py b/src/accounting/account/views.py index e7d2463..96e9e2f 100644 --- a/src/accounting/account/views.py +++ b/src/accounting/account/views.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/30 # Copyright (c) 2023 imacat. diff --git a/src/accounting/base_account/__init__.py b/src/accounting/base_account/__init__.py index b1b415f..64e0b58 100644 --- a/src/accounting/base_account/__init__.py +++ b/src/accounting/base_account/__init__.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/25 # Copyright (c) 2023 imacat. diff --git a/src/accounting/base_account/commands.py b/src/accounting/base_account/commands.py index bc8cb5e..b91e6be 100644 --- a/src/accounting/base_account/commands.py +++ b/src/accounting/base_account/commands.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/25 # Copyright (c) 2023 imacat. diff --git a/src/accounting/base_account/converters.py b/src/accounting/base_account/converters.py index 7180ac7..d5955ae 100644 --- a/src/accounting/base_account/converters.py +++ b/src/accounting/base_account/converters.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/1 # Copyright (c) 2023 imacat. diff --git a/src/accounting/base_account/queries.py b/src/accounting/base_account/queries.py index cbe9bb1..4aae228 100644 --- a/src/accounting/base_account/queries.py +++ b/src/accounting/base_account/queries.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/26 # Copyright (c) 2023 imacat. diff --git a/src/accounting/base_account/views.py b/src/accounting/base_account/views.py index af2e981..8715188 100644 --- a/src/accounting/base_account/views.py +++ b/src/accounting/base_account/views.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/26 # Copyright (c) 2023 imacat. diff --git a/src/accounting/currency/__init__.py b/src/accounting/currency/__init__.py index 4b38323..757c4f4 100644 --- a/src/accounting/currency/__init__.py +++ b/src/accounting/currency/__init__.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/6 # Copyright (c) 2023 imacat. diff --git a/src/accounting/currency/commands.py b/src/accounting/currency/commands.py index 8e7e7ad..e633334 100644 --- a/src/accounting/currency/commands.py +++ b/src/accounting/currency/commands.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/6 # Copyright (c) 2023 imacat. diff --git a/src/accounting/currency/converters.py b/src/accounting/currency/converters.py index 55c6a70..0610b96 100644 --- a/src/accounting/currency/converters.py +++ b/src/accounting/currency/converters.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/6 # Copyright (c) 2023 imacat. diff --git a/src/accounting/currency/forms.py b/src/accounting/currency/forms.py index ae59cb9..febae7b 100644 --- a/src/accounting/currency/forms.py +++ b/src/accounting/currency/forms.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/6 # Copyright (c) 2023 imacat. diff --git a/src/accounting/currency/queries.py b/src/accounting/currency/queries.py index 1dfe055..98acc70 100644 --- a/src/accounting/currency/queries.py +++ b/src/accounting/currency/queries.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/6 # Copyright (c) 2023 imacat. diff --git a/src/accounting/currency/views.py b/src/accounting/currency/views.py index 56e3a3c..768a4e9 100644 --- a/src/accounting/currency/views.py +++ b/src/accounting/currency/views.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/6 # Copyright (c) 2023 imacat. diff --git a/src/accounting/forms.py b/src/accounting/forms.py index e70a8e7..5c83bf6 100644 --- a/src/accounting/forms.py +++ b/src/accounting/forms.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/22 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/__init__.py b/src/accounting/journal_entry/__init__.py index cdfc7d7..5189586 100644 --- a/src/accounting/journal_entry/__init__.py +++ b/src/accounting/journal_entry/__init__.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/18 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/converters.py b/src/accounting/journal_entry/converters.py index 33c6620..856cae9 100644 --- a/src/accounting/journal_entry/converters.py +++ b/src/accounting/journal_entry/converters.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/19 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/forms/__init__.py b/src/accounting/journal_entry/forms/__init__.py index 40a7f47..341be76 100644 --- a/src/accounting/journal_entry/forms/__init__.py +++ b/src/accounting/journal_entry/forms/__init__.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/10 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/forms/currency.py b/src/accounting/journal_entry/forms/currency.py index 482a9dc..6b58454 100644 --- a/src/accounting/journal_entry/forms/currency.py +++ b/src/accounting/journal_entry/forms/currency.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/10 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/forms/journal_entry.py b/src/accounting/journal_entry/forms/journal_entry.py index e9ebe19..67df10f 100644 --- a/src/accounting/journal_entry/forms/journal_entry.py +++ b/src/accounting/journal_entry/forms/journal_entry.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/18 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/forms/line_item.py b/src/accounting/journal_entry/forms/line_item.py index c72c58a..21b0386 100644 --- a/src/accounting/journal_entry/forms/line_item.py +++ b/src/accounting/journal_entry/forms/line_item.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/10 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/forms/reorder.py b/src/accounting/journal_entry/forms/reorder.py index 51a2538..dd8858e 100644 --- a/src/accounting/journal_entry/forms/reorder.py +++ b/src/accounting/journal_entry/forms/reorder.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/10 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/template_filters.py b/src/accounting/journal_entry/template_filters.py index c24db75..7f86bb0 100644 --- a/src/accounting/journal_entry/template_filters.py +++ b/src/accounting/journal_entry/template_filters.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/25 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/utils/__init__.py b/src/accounting/journal_entry/utils/__init__.py index 024ca08..ce6b0d2 100644 --- a/src/accounting/journal_entry/utils/__init__.py +++ b/src/accounting/journal_entry/utils/__init__.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/10 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/utils/account_option.py b/src/accounting/journal_entry/utils/account_option.py index 18068cb..6c35442 100644 --- a/src/accounting/journal_entry/utils/account_option.py +++ b/src/accounting/journal_entry/utils/account_option.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/10 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/utils/description_editor.py b/src/accounting/journal_entry/utils/description_editor.py index 45bc5bd..fb6869c 100644 --- a/src/accounting/journal_entry/utils/description_editor.py +++ b/src/accounting/journal_entry/utils/description_editor.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/27 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/utils/offset_alias.py b/src/accounting/journal_entry/utils/offset_alias.py index e294819..958cce0 100644 --- a/src/accounting/journal_entry/utils/offset_alias.py +++ b/src/accounting/journal_entry/utils/offset_alias.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/15 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/utils/operators.py b/src/accounting/journal_entry/utils/operators.py index b43bcbd..e4e8c35 100644 --- a/src/accounting/journal_entry/utils/operators.py +++ b/src/accounting/journal_entry/utils/operators.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/19 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/utils/original_line_items.py b/src/accounting/journal_entry/utils/original_line_items.py index 54de205..6328bd6 100644 --- a/src/accounting/journal_entry/utils/original_line_items.py +++ b/src/accounting/journal_entry/utils/original_line_items.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/10 # Copyright (c) 2023 imacat. diff --git a/src/accounting/journal_entry/views.py b/src/accounting/journal_entry/views.py index 0e58d9b..fdbbfd5 100644 --- a/src/accounting/journal_entry/views.py +++ b/src/accounting/journal_entry/views.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/18 # Copyright (c) 2023 imacat. diff --git a/src/accounting/locale.py b/src/accounting/locale.py index ba766e6..1b16580 100644 --- a/src/accounting/locale.py +++ b/src/accounting/locale.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/25 # Copyright (c) 2023 imacat. diff --git a/src/accounting/models.py b/src/accounting/models.py index 10f7098..1ec1a17 100644 --- a/src/accounting/models.py +++ b/src/accounting/models.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/25 # Copyright (c) 2023 imacat. diff --git a/src/accounting/option/__init__.py b/src/accounting/option/__init__.py index aa8ec07..aeec424 100644 --- a/src/accounting/option/__init__.py +++ b/src/accounting/option/__init__.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/22 # Copyright (c) 2023 imacat. diff --git a/src/accounting/option/forms.py b/src/accounting/option/forms.py index 4285daf..e588ba1 100644 --- a/src/accounting/option/forms.py +++ b/src/accounting/option/forms.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/22 # Copyright (c) 2023 imacat. diff --git a/src/accounting/option/views.py b/src/accounting/option/views.py index f0c4637..6dd604f 100644 --- a/src/accounting/option/views.py +++ b/src/accounting/option/views.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/22 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/__init__.py b/src/accounting/report/__init__.py index 85b9cf1..7cf3f66 100644 --- a/src/accounting/report/__init__.py +++ b/src/accounting/report/__init__.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/3 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/converters.py b/src/accounting/report/converters.py index a92af0b..0a14928 100644 --- a/src/accounting/report/converters.py +++ b/src/accounting/report/converters.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/3 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/period/__init__.py b/src/accounting/report/period/__init__.py index f8a4708..fc8e02a 100644 --- a/src/accounting/report/period/__init__.py +++ b/src/accounting/report/period/__init__.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/9 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/period/chooser.py b/src/accounting/report/period/chooser.py index 9bf8c24..33d7189 100644 --- a/src/accounting/report/period/chooser.py +++ b/src/accounting/report/period/chooser.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/4 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/period/description.py b/src/accounting/report/period/description.py index 21d98f8..95caa4d 100644 --- a/src/accounting/report/period/description.py +++ b/src/accounting/report/period/description.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/4 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/period/month_end.py b/src/accounting/report/period/month_end.py index 3efdcc2..8d6de25 100644 --- a/src/accounting/report/period/month_end.py +++ b/src/accounting/report/period/month_end.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/4 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/period/parser.py b/src/accounting/report/period/parser.py index 23a34c1..53fbe26 100644 --- a/src/accounting/report/period/parser.py +++ b/src/accounting/report/period/parser.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/4 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/period/period.py b/src/accounting/report/period/period.py index b86b6da..22eef49 100644 --- a/src/accounting/report/period/period.py +++ b/src/accounting/report/period/period.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/4 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/period/shortcuts.py b/src/accounting/report/period/shortcuts.py index 1a3f04c..74ed9d1 100644 --- a/src/accounting/report/period/shortcuts.py +++ b/src/accounting/report/period/shortcuts.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/4 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/period/specification.py b/src/accounting/report/period/specification.py index acfe0c6..ddb7229 100644 --- a/src/accounting/report/period/specification.py +++ b/src/accounting/report/period/specification.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/4 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/reports/__init__.py b/src/accounting/report/reports/__init__.py index bc20def..7457550 100644 --- a/src/accounting/report/reports/__init__.py +++ b/src/accounting/report/reports/__init__.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/7 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/reports/balance_sheet.py b/src/accounting/report/reports/balance_sheet.py index d51b094..20e378f 100644 --- a/src/accounting/report/reports/balance_sheet.py +++ b/src/accounting/report/reports/balance_sheet.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/7 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/reports/income_expenses.py b/src/accounting/report/reports/income_expenses.py index a875c68..c960cfb 100644 --- a/src/accounting/report/reports/income_expenses.py +++ b/src/accounting/report/reports/income_expenses.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/7 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/reports/income_statement.py b/src/accounting/report/reports/income_statement.py index 18b93dc..8d34105 100644 --- a/src/accounting/report/reports/income_statement.py +++ b/src/accounting/report/reports/income_statement.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/7 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/reports/journal.py b/src/accounting/report/reports/journal.py index a062c96..705058d 100644 --- a/src/accounting/report/reports/journal.py +++ b/src/accounting/report/reports/journal.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/7 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/reports/ledger.py b/src/accounting/report/reports/ledger.py index 65534de..9ab2448 100644 --- a/src/accounting/report/reports/ledger.py +++ b/src/accounting/report/reports/ledger.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/7 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/reports/search.py b/src/accounting/report/reports/search.py index fd5c981..372fe27 100644 --- a/src/accounting/report/reports/search.py +++ b/src/accounting/report/reports/search.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/8 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/reports/trial_balance.py b/src/accounting/report/reports/trial_balance.py index 1c99c0f..c7d6239 100644 --- a/src/accounting/report/reports/trial_balance.py +++ b/src/accounting/report/reports/trial_balance.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/7 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/template_filters.py b/src/accounting/report/template_filters.py index 53346ec..f607bb6 100644 --- a/src/accounting/report/template_filters.py +++ b/src/accounting/report/template_filters.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/7 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/utils/__init__.py b/src/accounting/report/utils/__init__.py index 27a7dc0..f99b9d2 100644 --- a/src/accounting/report/utils/__init__.py +++ b/src/accounting/report/utils/__init__.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/7 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/utils/base_page_params.py b/src/accounting/report/utils/base_page_params.py index e322134..6b608c4 100644 --- a/src/accounting/report/utils/base_page_params.py +++ b/src/accounting/report/utils/base_page_params.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/6 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/utils/base_report.py b/src/accounting/report/utils/base_report.py index 9438c87..64b29e8 100644 --- a/src/accounting/report/utils/base_report.py +++ b/src/accounting/report/utils/base_report.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/8 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/utils/csv_export.py b/src/accounting/report/utils/csv_export.py index ecf3b35..ff77576 100644 --- a/src/accounting/report/utils/csv_export.py +++ b/src/accounting/report/utils/csv_export.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/7 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/utils/option_link.py b/src/accounting/report/utils/option_link.py index 4652407..49c2ac0 100644 --- a/src/accounting/report/utils/option_link.py +++ b/src/accounting/report/utils/option_link.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/5 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/utils/report_chooser.py b/src/accounting/report/utils/report_chooser.py index 2eb0c08..1ee61d6 100644 --- a/src/accounting/report/utils/report_chooser.py +++ b/src/accounting/report/utils/report_chooser.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/4 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/utils/report_type.py b/src/accounting/report/utils/report_type.py index bfe33ae..ea0053b 100644 --- a/src/accounting/report/utils/report_type.py +++ b/src/accounting/report/utils/report_type.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/4 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/utils/urls.py b/src/accounting/report/utils/urls.py index 73bfdf0..8e5b5f1 100644 --- a/src/accounting/report/utils/urls.py +++ b/src/accounting/report/utils/urls.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/9 # Copyright (c) 2023 imacat. diff --git a/src/accounting/report/views.py b/src/accounting/report/views.py index 55f19aa..54cec9e 100644 --- a/src/accounting/report/views.py +++ b/src/accounting/report/views.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/3 # Copyright (c) 2023 imacat. diff --git a/src/accounting/static/css/style.css b/src/accounting/static/css/style.css index 5255f03..e74a011 100644 --- a/src/accounting/static/css/style.css +++ b/src/accounting/static/css/style.css @@ -1,4 +1,4 @@ -/* The Mia! Accounting Flask Project +/* The Mia! Accounting Project * style.css: The style sheet for the accounting application. */ diff --git a/src/accounting/static/js/account-form.js b/src/accounting/static/js/account-form.js index 11cd6a9..2377631 100644 --- a/src/accounting/static/js/account-form.js +++ b/src/accounting/static/js/account-form.js @@ -1,4 +1,4 @@ -/* The Mia! Accounting Flask Project +/* The Mia! Accounting Project * account-form.js: The JavaScript for the account form */ diff --git a/src/accounting/static/js/account-order.js b/src/accounting/static/js/account-order.js index 8a31a49..71d8d61 100644 --- a/src/accounting/static/js/account-order.js +++ b/src/accounting/static/js/account-order.js @@ -1,4 +1,4 @@ -/* The Mia! Accounting Flask Project +/* The Mia! Accounting Project * account-order.js: The JavaScript for the account order */ diff --git a/src/accounting/static/js/currency-form.js b/src/accounting/static/js/currency-form.js index f59c435..11359e2 100644 --- a/src/accounting/static/js/currency-form.js +++ b/src/accounting/static/js/currency-form.js @@ -1,4 +1,4 @@ -/* The Mia! Accounting Flask Project +/* The Mia! Accounting Project * currency-form.js: The JavaScript for the currency form */ diff --git a/src/accounting/static/js/description-editor.js b/src/accounting/static/js/description-editor.js index a82c13a..18adc2f 100644 --- a/src/accounting/static/js/description-editor.js +++ b/src/accounting/static/js/description-editor.js @@ -1,4 +1,4 @@ -/* The Mia! Accounting Flask Project +/* The Mia! Accounting Project * description-editor.js: The JavaScript for the description editor */ diff --git a/src/accounting/static/js/drag-and-drop-reorder.js b/src/accounting/static/js/drag-and-drop-reorder.js index c766c04..0e406b5 100644 --- a/src/accounting/static/js/drag-and-drop-reorder.js +++ b/src/accounting/static/js/drag-and-drop-reorder.js @@ -1,4 +1,4 @@ -/* The Mia! Accounting Flask Project +/* The Mia! Accounting Project * drag-and-drop-reorder.js: The JavaScript for the reorder a list with drag-and-drop */ diff --git a/src/accounting/static/js/journal-entry-account-selector.js b/src/accounting/static/js/journal-entry-account-selector.js index 8c59281..a5aa97e 100644 --- a/src/accounting/static/js/journal-entry-account-selector.js +++ b/src/accounting/static/js/journal-entry-account-selector.js @@ -1,4 +1,4 @@ -/* The Mia! Accounting Flask Project +/* The Mia! Accounting Project * journal-entry-account-selector.js: The JavaScript for the account selector of the journal entry form */ diff --git a/src/accounting/static/js/journal-entry-form.js b/src/accounting/static/js/journal-entry-form.js index 83adcfd..e49df09 100644 --- a/src/accounting/static/js/journal-entry-form.js +++ b/src/accounting/static/js/journal-entry-form.js @@ -1,4 +1,4 @@ -/* The Mia! Accounting Flask Project +/* The Mia! Accounting Project * journal-entry-form.js: The JavaScript for the journal entry form */ diff --git a/src/accounting/static/js/journal-entry-line-item-editor.js b/src/accounting/static/js/journal-entry-line-item-editor.js index c154522..6fffe09 100644 --- a/src/accounting/static/js/journal-entry-line-item-editor.js +++ b/src/accounting/static/js/journal-entry-line-item-editor.js @@ -1,4 +1,4 @@ -/* The Mia! Accounting Flask Project +/* The Mia! Accounting Project * journal-entry-line-item-editor.js: The JavaScript for the journal entry line item editor */ diff --git a/src/accounting/static/js/journal-entry-order.js b/src/accounting/static/js/journal-entry-order.js index e514167..36630dc 100644 --- a/src/accounting/static/js/journal-entry-order.js +++ b/src/accounting/static/js/journal-entry-order.js @@ -1,4 +1,4 @@ -/* The Mia! Accounting Flask Project +/* The Mia! Accounting Project * journal-entry-order.js: The JavaScript for the journal entry order */ diff --git a/src/accounting/static/js/material-fab-speed-dial.js b/src/accounting/static/js/material-fab-speed-dial.js index 43bca85..4d3c11a 100644 --- a/src/accounting/static/js/material-fab-speed-dial.js +++ b/src/accounting/static/js/material-fab-speed-dial.js @@ -1,4 +1,4 @@ -/* The Mia! Accounting Flask Project +/* The Mia! Accounting Project * material-fab-speed-dial.js: The JavaScript for the speed dial for the material floating buttons */ diff --git a/src/accounting/static/js/option-form.js b/src/accounting/static/js/option-form.js index 4df693d..f9285e6 100644 --- a/src/accounting/static/js/option-form.js +++ b/src/accounting/static/js/option-form.js @@ -1,4 +1,4 @@ -/* The Mia! Accounting Flask Project +/* The Mia! Accounting Project * account-form.js: The JavaScript for the account form */ diff --git a/src/accounting/static/js/original-line-item-selector.js b/src/accounting/static/js/original-line-item-selector.js index c7a6095..3f085bf 100644 --- a/src/accounting/static/js/original-line-item-selector.js +++ b/src/accounting/static/js/original-line-item-selector.js @@ -1,4 +1,4 @@ -/* The Mia! Accounting Flask Project +/* The Mia! Accounting Project * original-line-item-selector.js: The JavaScript for the original line item selector */ diff --git a/src/accounting/static/js/period-chooser.js b/src/accounting/static/js/period-chooser.js index 4224819..2625be6 100644 --- a/src/accounting/static/js/period-chooser.js +++ b/src/accounting/static/js/period-chooser.js @@ -1,4 +1,4 @@ -/* The Mia! Accounting Flask Project +/* The Mia! Accounting Project * period-chooser.js: The JavaScript for the period chooser */ diff --git a/src/accounting/template_filters.py b/src/accounting/template_filters.py index 1d4729e..b3af320 100644 --- a/src/accounting/template_filters.py +++ b/src/accounting/template_filters.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/25 # Copyright (c) 2023 imacat. diff --git a/src/accounting/template_globals.py b/src/accounting/template_globals.py index c2c5e05..fb5db36 100644 --- a/src/accounting/template_globals.py +++ b/src/accounting/template_globals.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/3 # Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/account/create.html b/src/accounting/templates/accounting/account/create.html index 98315a9..7824f5e 100644 --- a/src/accounting/templates/accounting/account/create.html +++ b/src/accounting/templates/accounting/account/create.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project create.html: The account creation form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/account/detail.html b/src/accounting/templates/accounting/account/detail.html index 25a63a6..702855c 100644 --- a/src/accounting/templates/accounting/account/detail.html +++ b/src/accounting/templates/accounting/account/detail.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project detail.html: The account detail Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/account/edit.html b/src/accounting/templates/accounting/account/edit.html index 1abf9a4..52d3bc7 100644 --- a/src/accounting/templates/accounting/account/edit.html +++ b/src/accounting/templates/accounting/account/edit.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project edit.html: The account edit form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/account/include/form.html b/src/accounting/templates/accounting/account/include/form.html index 00fb48a..c444913 100644 --- a/src/accounting/templates/accounting/account/include/form.html +++ b/src/accounting/templates/accounting/account/include/form.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form.html: The account form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/account/list.html b/src/accounting/templates/accounting/account/list.html index 2b4efd4..9ebef47 100644 --- a/src/accounting/templates/accounting/account/list.html +++ b/src/accounting/templates/accounting/account/list.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project list.html: The account list Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/account/order.html b/src/accounting/templates/accounting/account/order.html index 3c623a2..5f88c6a 100644 --- a/src/accounting/templates/accounting/account/order.html +++ b/src/accounting/templates/accounting/account/order.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project order.html: The order of the accounts under a same base account Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/base-account/detail.html b/src/accounting/templates/accounting/base-account/detail.html index 54f72b7..c9a1be1 100644 --- a/src/accounting/templates/accounting/base-account/detail.html +++ b/src/accounting/templates/accounting/base-account/detail.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project detail.html: The base account detail Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/base-account/list.html b/src/accounting/templates/accounting/base-account/list.html index 42506e2..240c5a7 100644 --- a/src/accounting/templates/accounting/base-account/list.html +++ b/src/accounting/templates/accounting/base-account/list.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project list.html: The base account list Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/base.html b/src/accounting/templates/accounting/base.html index a3cb338..6aff78a 100644 --- a/src/accounting/templates/accounting/base.html +++ b/src/accounting/templates/accounting/base.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project base.html: The application-wide base template. Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/currency/create.html b/src/accounting/templates/accounting/currency/create.html index 7664bff..8f99c33 100644 --- a/src/accounting/templates/accounting/currency/create.html +++ b/src/accounting/templates/accounting/currency/create.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project create.html: The currency creation form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/currency/detail.html b/src/accounting/templates/accounting/currency/detail.html index 9ea2c9b..538a979 100644 --- a/src/accounting/templates/accounting/currency/detail.html +++ b/src/accounting/templates/accounting/currency/detail.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project detail.html: The currency detail Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/currency/edit.html b/src/accounting/templates/accounting/currency/edit.html index 7b31b5f..9aef7ea 100644 --- a/src/accounting/templates/accounting/currency/edit.html +++ b/src/accounting/templates/accounting/currency/edit.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project edit.html: The currency edit form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/currency/include/form.html b/src/accounting/templates/accounting/currency/include/form.html index ee168ec..729dbcb 100644 --- a/src/accounting/templates/accounting/currency/include/form.html +++ b/src/accounting/templates/accounting/currency/include/form.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form.html: The currency form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/currency/list.html b/src/accounting/templates/accounting/currency/list.html index 362694a..8a679c7 100644 --- a/src/accounting/templates/accounting/currency/list.html +++ b/src/accounting/templates/accounting/currency/list.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project list.html: The currency list Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/include/nav.html b/src/accounting/templates/accounting/include/nav.html index ff47f1a..76c25f0 100644 --- a/src/accounting/templates/accounting/include/nav.html +++ b/src/accounting/templates/accounting/include/nav.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project nav.html: The navigation menu for the accounting application. Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/include/pagination.html b/src/accounting/templates/accounting/include/pagination.html index 0569326..e19192c 100644 --- a/src/accounting/templates/accounting/include/pagination.html +++ b/src/accounting/templates/accounting/include/pagination.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project pagination.html: The pagination navigation bar. Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/disbursement/create.html b/src/accounting/templates/accounting/journal-entry/disbursement/create.html index a9b272a..2129b34 100644 --- a/src/accounting/templates/accounting/journal-entry/disbursement/create.html +++ b/src/accounting/templates/accounting/journal-entry/disbursement/create.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project create.html: The cash disbursement journal entry creation form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/disbursement/detail.html b/src/accounting/templates/accounting/journal-entry/disbursement/detail.html index 805d961..6c54747 100644 --- a/src/accounting/templates/accounting/journal-entry/disbursement/detail.html +++ b/src/accounting/templates/accounting/journal-entry/disbursement/detail.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project detail.html: The cash disbursement journal entry detail Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/disbursement/edit.html b/src/accounting/templates/accounting/journal-entry/disbursement/edit.html index abbdefd..1c3bf5e 100644 --- a/src/accounting/templates/accounting/journal-entry/disbursement/edit.html +++ b/src/accounting/templates/accounting/journal-entry/disbursement/edit.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project edit.html: The cash disbursement journal entry edit form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/disbursement/include/form-currency.html b/src/accounting/templates/accounting/journal-entry/disbursement/include/form-currency.html index 823eaaf..448f940 100644 --- a/src/accounting/templates/accounting/journal-entry/disbursement/include/form-currency.html +++ b/src/accounting/templates/accounting/journal-entry/disbursement/include/form-currency.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form-currency.html: The currency sub-form in the cash disbursement journal entry form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/disbursement/include/form.html b/src/accounting/templates/accounting/journal-entry/disbursement/include/form.html index 9c2c98c..38e7c1e 100644 --- a/src/accounting/templates/accounting/journal-entry/disbursement/include/form.html +++ b/src/accounting/templates/accounting/journal-entry/disbursement/include/form.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form.html: The cash disbursement journal entry form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/include/account-selector-modal.html b/src/accounting/templates/accounting/journal-entry/include/account-selector-modal.html index e72f917..559cca7 100644 --- a/src/accounting/templates/accounting/journal-entry/include/account-selector-modal.html +++ b/src/accounting/templates/accounting/journal-entry/include/account-selector-modal.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project account-selector-modal.html: The modal for the account selector Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/include/description-editor-modal.html b/src/accounting/templates/accounting/journal-entry/include/description-editor-modal.html index e59efa6..236108c 100644 --- a/src/accounting/templates/accounting/journal-entry/include/description-editor-modal.html +++ b/src/accounting/templates/accounting/journal-entry/include/description-editor-modal.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project description-editor-modal.html: The modal of the description editor Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/include/detail-line-items.html b/src/accounting/templates/accounting/journal-entry/include/detail-line-items.html index 3b74da7..ac093ec 100644 --- a/src/accounting/templates/accounting/journal-entry/include/detail-line-items.html +++ b/src/accounting/templates/accounting/journal-entry/include/detail-line-items.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project detail-line-items-item: The line items in the journal entry detail Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/include/detail.html b/src/accounting/templates/accounting/journal-entry/include/detail.html index c240ce1..0777327 100644 --- a/src/accounting/templates/accounting/journal-entry/include/detail.html +++ b/src/accounting/templates/accounting/journal-entry/include/detail.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project detail.html: The account detail Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/include/form-currency.html b/src/accounting/templates/accounting/journal-entry/include/form-currency.html index 79b80f5..2b39cd2 100644 --- a/src/accounting/templates/accounting/journal-entry/include/form-currency.html +++ b/src/accounting/templates/accounting/journal-entry/include/form-currency.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form-currency.html: The currency sub-form in the journal entry form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/include/form-debit-credit.html b/src/accounting/templates/accounting/journal-entry/include/form-debit-credit.html index def4926..d4834c0 100644 --- a/src/accounting/templates/accounting/journal-entry/include/form-debit-credit.html +++ b/src/accounting/templates/accounting/journal-entry/include/form-debit-credit.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form-debit-credit.html: The debit or credit line items in the journal entry form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/include/form-line-item.html b/src/accounting/templates/accounting/journal-entry/include/form-line-item.html index 8eea2b2..d2941aa 100644 --- a/src/accounting/templates/accounting/journal-entry/include/form-line-item.html +++ b/src/accounting/templates/accounting/journal-entry/include/form-line-item.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form-line-item.html: The line item sub-form in the journal entry form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/include/form.html b/src/accounting/templates/accounting/journal-entry/include/form.html index 23ddf36..0482668 100644 --- a/src/accounting/templates/accounting/journal-entry/include/form.html +++ b/src/accounting/templates/accounting/journal-entry/include/form.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form.html: The base journal entry form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/include/journal-entry-line-item-editor-modal.html b/src/accounting/templates/accounting/journal-entry/include/journal-entry-line-item-editor-modal.html index e99d362..994f49a 100644 --- a/src/accounting/templates/accounting/journal-entry/include/journal-entry-line-item-editor-modal.html +++ b/src/accounting/templates/accounting/journal-entry/include/journal-entry-line-item-editor-modal.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project journal-entry-line-item-editor-modal: The modal of the journal entry line item editor Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/include/order-journal-entry.html b/src/accounting/templates/accounting/journal-entry/include/order-journal-entry.html index 118caab..85f7ea5 100644 --- a/src/accounting/templates/accounting/journal-entry/include/order-journal-entry.html +++ b/src/accounting/templates/accounting/journal-entry/include/order-journal-entry.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project order-journal-entry.html: The journal entry in the journal entry order page Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/include/original-line-item-selector-modal.html b/src/accounting/templates/accounting/journal-entry/include/original-line-item-selector-modal.html index afcd2f7..2479402 100644 --- a/src/accounting/templates/accounting/journal-entry/include/original-line-item-selector-modal.html +++ b/src/accounting/templates/accounting/journal-entry/include/original-line-item-selector-modal.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project original-line-item-selector-modal.html: The modal of the original line item selector Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/order.html b/src/accounting/templates/accounting/journal-entry/order.html index 2ba4455..1f330c2 100644 --- a/src/accounting/templates/accounting/journal-entry/order.html +++ b/src/accounting/templates/accounting/journal-entry/order.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project order.html: The order of the journal entries in a same day Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/receipt/create.html b/src/accounting/templates/accounting/journal-entry/receipt/create.html index 69740a0..886b74e 100644 --- a/src/accounting/templates/accounting/journal-entry/receipt/create.html +++ b/src/accounting/templates/accounting/journal-entry/receipt/create.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project create.html: The cash receipt journal entry creation form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/receipt/detail.html b/src/accounting/templates/accounting/journal-entry/receipt/detail.html index fb84f9b..84b5610 100644 --- a/src/accounting/templates/accounting/journal-entry/receipt/detail.html +++ b/src/accounting/templates/accounting/journal-entry/receipt/detail.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project detail.html: The cash receipt journal entry detail Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/receipt/edit.html b/src/accounting/templates/accounting/journal-entry/receipt/edit.html index cd83ad1..cc2e267 100644 --- a/src/accounting/templates/accounting/journal-entry/receipt/edit.html +++ b/src/accounting/templates/accounting/journal-entry/receipt/edit.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project edit.html: The cash receipt journal entry edit form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/receipt/include/form-currency.html b/src/accounting/templates/accounting/journal-entry/receipt/include/form-currency.html index 2aaff0d..11ca54d 100644 --- a/src/accounting/templates/accounting/journal-entry/receipt/include/form-currency.html +++ b/src/accounting/templates/accounting/journal-entry/receipt/include/form-currency.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form-currency.html: The currency sub-form in the cash receipt journal entry form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/receipt/include/form.html b/src/accounting/templates/accounting/journal-entry/receipt/include/form.html index b62f9e2..bf629ca 100644 --- a/src/accounting/templates/accounting/journal-entry/receipt/include/form.html +++ b/src/accounting/templates/accounting/journal-entry/receipt/include/form.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form.html: The cash receipt journal entry form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/transfer/create.html b/src/accounting/templates/accounting/journal-entry/transfer/create.html index 3406092..faf569e 100644 --- a/src/accounting/templates/accounting/journal-entry/transfer/create.html +++ b/src/accounting/templates/accounting/journal-entry/transfer/create.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project create.html: The transfer journal entry creation form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/transfer/detail.html b/src/accounting/templates/accounting/journal-entry/transfer/detail.html index 6994d76..c6502a4 100644 --- a/src/accounting/templates/accounting/journal-entry/transfer/detail.html +++ b/src/accounting/templates/accounting/journal-entry/transfer/detail.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project detail.html: The transfer journal entry detail Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/transfer/edit.html b/src/accounting/templates/accounting/journal-entry/transfer/edit.html index 593c211..67c0b2e 100644 --- a/src/accounting/templates/accounting/journal-entry/transfer/edit.html +++ b/src/accounting/templates/accounting/journal-entry/transfer/edit.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project edit.html: The transfer journal entry edit form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/transfer/include/form-currency.html b/src/accounting/templates/accounting/journal-entry/transfer/include/form-currency.html index d8d24a7..708cc0f 100644 --- a/src/accounting/templates/accounting/journal-entry/transfer/include/form-currency.html +++ b/src/accounting/templates/accounting/journal-entry/transfer/include/form-currency.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form-currency.html: The currency sub-form in the transfer journal entry form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/journal-entry/transfer/include/form.html b/src/accounting/templates/accounting/journal-entry/transfer/include/form.html index efcc7b9..d744df8 100644 --- a/src/accounting/templates/accounting/journal-entry/transfer/include/form.html +++ b/src/accounting/templates/accounting/journal-entry/transfer/include/form.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form.html: The transfer journal entry form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/option/detail.html b/src/accounting/templates/accounting/option/detail.html index 1781206..c307ad7 100644 --- a/src/accounting/templates/accounting/option/detail.html +++ b/src/accounting/templates/accounting/option/detail.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project detail.html: The option detail Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/option/form.html b/src/accounting/templates/accounting/option/form.html index 66eb232..8238816 100644 --- a/src/accounting/templates/accounting/option/form.html +++ b/src/accounting/templates/accounting/option/form.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form.html: The option form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/option/include/form-recurring-expense-income.html b/src/accounting/templates/accounting/option/include/form-recurring-expense-income.html index 8c1cbce..cd126e1 100644 --- a/src/accounting/templates/accounting/option/include/form-recurring-expense-income.html +++ b/src/accounting/templates/accounting/option/include/form-recurring-expense-income.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form-recurring-expense-income.html: The recurring expense or income sub-form in the option form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/option/include/form-recurring-item.html b/src/accounting/templates/accounting/option/include/form-recurring-item.html index b7e2408..f808a86 100644 --- a/src/accounting/templates/accounting/option/include/form-recurring-item.html +++ b/src/accounting/templates/accounting/option/include/form-recurring-item.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project form-recurring-item.html: The recurring item sub-form in the option form Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/option/include/recurring-account-selector-modal.html b/src/accounting/templates/accounting/option/include/recurring-account-selector-modal.html index e5ca01d..6532bb2 100644 --- a/src/accounting/templates/accounting/option/include/recurring-account-selector-modal.html +++ b/src/accounting/templates/accounting/option/include/recurring-account-selector-modal.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project recurring-account-selector-modal.html: The modal of the account selector for the recurring item editor Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/option/include/recurring-item-editor-modal.html b/src/accounting/templates/accounting/option/include/recurring-item-editor-modal.html index 34eb9bf..81fc114 100644 --- a/src/accounting/templates/accounting/option/include/recurring-item-editor-modal.html +++ b/src/accounting/templates/accounting/option/include/recurring-item-editor-modal.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project recurring-item-editor-modal.html: The modal of the recurring item editor Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/balance-sheet.html b/src/accounting/templates/accounting/report/balance-sheet.html index 47e1c41..fcf5910 100644 --- a/src/accounting/templates/accounting/report/balance-sheet.html +++ b/src/accounting/templates/accounting/report/balance-sheet.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project income-statement.html: The income statement Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/include/add-journal-entry-material-fab.html b/src/accounting/templates/accounting/report/include/add-journal-entry-material-fab.html index dc5fbc2..dd04b9c 100644 --- a/src/accounting/templates/accounting/report/include/add-journal-entry-material-fab.html +++ b/src/accounting/templates/accounting/report/include/add-journal-entry-material-fab.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project add-journal-entry-material-fab.html: The material floating action buttons to add a new journal entry Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/include/balance-sheet-section.html b/src/accounting/templates/accounting/report/include/balance-sheet-section.html index 0ca887b..3ae0dc1 100644 --- a/src/accounting/templates/accounting/report/include/balance-sheet-section.html +++ b/src/accounting/templates/accounting/report/include/balance-sheet-section.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project balance-sheet-section.html: A section in the balance sheet. Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/include/income-expenses-row-desktop.html b/src/accounting/templates/accounting/report/include/income-expenses-row-desktop.html index f3da34e..55191ce 100644 --- a/src/accounting/templates/accounting/report/include/income-expenses-row-desktop.html +++ b/src/accounting/templates/accounting/report/include/income-expenses-row-desktop.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project income-expenses-row-desktop.html: The row in the income and expenses log for the desktop computers Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/include/income-expenses-row-mobile.html b/src/accounting/templates/accounting/report/include/income-expenses-row-mobile.html index eac5eec..797d761 100644 --- a/src/accounting/templates/accounting/report/include/income-expenses-row-mobile.html +++ b/src/accounting/templates/accounting/report/include/income-expenses-row-mobile.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project income-expenses-row-mobile.html: The row in the income and expenses log for the mobile devices Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/include/ledger-row-desktop.html b/src/accounting/templates/accounting/report/include/ledger-row-desktop.html index 760d7fb..428b289 100644 --- a/src/accounting/templates/accounting/report/include/ledger-row-desktop.html +++ b/src/accounting/templates/accounting/report/include/ledger-row-desktop.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project ledger-row-desktop.html: The row in the ledger for the desktop computers Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/include/ledger-row-mobile.html b/src/accounting/templates/accounting/report/include/ledger-row-mobile.html index 54e0d25..e1eade3 100644 --- a/src/accounting/templates/accounting/report/include/ledger-row-mobile.html +++ b/src/accounting/templates/accounting/report/include/ledger-row-mobile.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project ledger-row-mobile.html: The row in the ledger for the mobile devices Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/include/period-chooser.html b/src/accounting/templates/accounting/report/include/period-chooser.html index 5c90cb5..5ad6cee 100644 --- a/src/accounting/templates/accounting/report/include/period-chooser.html +++ b/src/accounting/templates/accounting/report/include/period-chooser.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project period-chooser.html: The period chooser Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/include/search-modal.html b/src/accounting/templates/accounting/report/include/search-modal.html index 95834b8..e53e51b 100644 --- a/src/accounting/templates/accounting/report/include/search-modal.html +++ b/src/accounting/templates/accounting/report/include/search-modal.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project search-modal.html: The search modal Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/include/toolbar-buttons.html b/src/accounting/templates/accounting/report/include/toolbar-buttons.html index 55bb75c..24f49cf 100644 --- a/src/accounting/templates/accounting/report/include/toolbar-buttons.html +++ b/src/accounting/templates/accounting/report/include/toolbar-buttons.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project toolbar-buttons.html: The toolbar buttons on the report Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/income-expenses.html b/src/accounting/templates/accounting/report/income-expenses.html index c98d5ac..eb45eef 100644 --- a/src/accounting/templates/accounting/report/income-expenses.html +++ b/src/accounting/templates/accounting/report/income-expenses.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project income-expenses.html: The income and expenses log Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/income-statement.html b/src/accounting/templates/accounting/report/income-statement.html index 7c8ad6a..5ce53f3 100644 --- a/src/accounting/templates/accounting/report/income-statement.html +++ b/src/accounting/templates/accounting/report/income-statement.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project income-statement.html: The income statement Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/journal.html b/src/accounting/templates/accounting/report/journal.html index 4756040..441981a 100644 --- a/src/accounting/templates/accounting/report/journal.html +++ b/src/accounting/templates/accounting/report/journal.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project journal.html: The journal Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/ledger.html b/src/accounting/templates/accounting/report/ledger.html index 5f9dd71..b709b98 100644 --- a/src/accounting/templates/accounting/report/ledger.html +++ b/src/accounting/templates/accounting/report/ledger.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project ledger.html: The ledger Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/search.html b/src/accounting/templates/accounting/report/search.html index 21635be..5c0edb8 100644 --- a/src/accounting/templates/accounting/report/search.html +++ b/src/accounting/templates/accounting/report/search.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project search.html: The search result Copyright (c) 2023 imacat. diff --git a/src/accounting/templates/accounting/report/trial-balance.html b/src/accounting/templates/accounting/report/trial-balance.html index d2cf35f..5d22dc5 100644 --- a/src/accounting/templates/accounting/report/trial-balance.html +++ b/src/accounting/templates/accounting/report/trial-balance.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Project +The Mia! Accounting Project trial-balance.html: The trial balance Copyright (c) 2023 imacat. diff --git a/src/accounting/translations/zh_Hant/LC_MESSAGES/accounting.po b/src/accounting/translations/zh_Hant/LC_MESSAGES/accounting.po index 10f2047..64bed1e 100644 --- a/src/accounting/translations/zh_Hant/LC_MESSAGES/accounting.po +++ b/src/accounting/translations/zh_Hant/LC_MESSAGES/accounting.po @@ -1,4 +1,4 @@ -# Chinese (Traditional) translations for the Mia! Accounting Flask project. +# Chinese (Traditional) translations for the Mia! Accounting project. # Copyright (C) 2023 imacat # This file is distributed under the same license as the Mia! Accounting # Flask project. @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Mia! Accounting Flask 0.0.0\n" +"Project-Id-Version: Mia! Accounting 0.0.0\n" "Report-Msgid-Bugs-To: imacat@mail.imacat.idv.tw\n" "POT-Creation-Date: 2023-03-23 00:45+0800\n" "PO-Revision-Date: 2023-03-23 00:46+0800\n" diff --git a/src/accounting/utils/__init__.py b/src/accounting/utils/__init__.py index 3a7fb57..47acdf6 100644 --- a/src/accounting/utils/__init__.py +++ b/src/accounting/utils/__init__.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/25 # Copyright (c) 2023 imacat. diff --git a/src/accounting/utils/cast.py b/src/accounting/utils/cast.py index 86a0e46..4a9d2ab 100644 --- a/src/accounting/utils/cast.py +++ b/src/accounting/utils/cast.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/15 # Copyright (c) 2023 imacat. diff --git a/src/accounting/utils/current_account.py b/src/accounting/utils/current_account.py index bbb574c..ff5bd09 100644 --- a/src/accounting/utils/current_account.py +++ b/src/accounting/utils/current_account.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/22 # Copyright (c) 2023 imacat. diff --git a/src/accounting/utils/flash_errors.py b/src/accounting/utils/flash_errors.py index c699239..527e157 100644 --- a/src/accounting/utils/flash_errors.py +++ b/src/accounting/utils/flash_errors.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/1 # Copyright (c) 2023 imacat. diff --git a/src/accounting/utils/journal_entry_types.py b/src/accounting/utils/journal_entry_types.py index 73204ee..64f621c 100644 --- a/src/accounting/utils/journal_entry_types.py +++ b/src/accounting/utils/journal_entry_types.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/4 # Copyright (c) 2023 imacat. diff --git a/src/accounting/utils/next_uri.py b/src/accounting/utils/next_uri.py index 52012ae..9d276dd 100644 --- a/src/accounting/utils/next_uri.py +++ b/src/accounting/utils/next_uri.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/1 # Copyright (c) 2023 imacat. diff --git a/src/accounting/utils/options.py b/src/accounting/utils/options.py index 31d78d2..58294e4 100644 --- a/src/accounting/utils/options.py +++ b/src/accounting/utils/options.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/22 # Copyright (c) 2023 imacat. diff --git a/src/accounting/utils/pagination.py b/src/accounting/utils/pagination.py index 5b08ebf..f2bf082 100644 --- a/src/accounting/utils/pagination.py +++ b/src/accounting/utils/pagination.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/25 # Copyright (c) 2023 imacat. diff --git a/src/accounting/utils/permission.py b/src/accounting/utils/permission.py index 071319a..459b6b6 100644 --- a/src/accounting/utils/permission.py +++ b/src/accounting/utils/permission.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/25 # Copyright (c) 2023 imacat. diff --git a/src/accounting/utils/query.py b/src/accounting/utils/query.py index 69934b0..166c8bf 100644 --- a/src/accounting/utils/query.py +++ b/src/accounting/utils/query.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/25 # Copyright (c) 2023 imacat. diff --git a/src/accounting/utils/random_id.py b/src/accounting/utils/random_id.py index fbb7835..e3c2800 100644 --- a/src/accounting/utils/random_id.py +++ b/src/accounting/utils/random_id.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/30 # Copyright (c) 2023 imacat. diff --git a/src/accounting/utils/strip_text.py b/src/accounting/utils/strip_text.py index 433a9f5..74a2a4a 100644 --- a/src/accounting/utils/strip_text.py +++ b/src/accounting/utils/strip_text.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/1 # Copyright (c) 2023 imacat. diff --git a/src/accounting/utils/user.py b/src/accounting/utils/user.py index d1d07fa..d879ac4 100644 --- a/src/accounting/utils/user.py +++ b/src/accounting/utils/user.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/1 # Copyright (c) 2023 imacat. diff --git a/tests/babel-utils-test-site.py b/tests/babel-utils-test-site.py index 27daf05..aef9466 100755 --- a/tests/babel-utils-test-site.py +++ b/tests/babel-utils-test-site.py @@ -1,5 +1,5 @@ #! env python3 -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/28 # Copyright (c) 2023 imacat. diff --git a/tests/babel-utils.py b/tests/babel-utils.py index 300af69..56a98b5 100755 --- a/tests/babel-utils.py +++ b/tests/babel-utils.py @@ -1,5 +1,5 @@ #! env python3 -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/28 # Copyright (c) 2023 imacat. diff --git a/tests/test_account.py b/tests/test_account.py index 1f87ddd..fb97a5e 100644 --- a/tests/test_account.py +++ b/tests/test_account.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/1 # Copyright (c) 2023 imacat. diff --git a/tests/test_base_account.py b/tests/test_base_account.py index 99f5afc..f4b4b62 100644 --- a/tests/test_base_account.py +++ b/tests/test_base_account.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/26 # Copyright (c) 2023 imacat. diff --git a/tests/test_currency.py b/tests/test_currency.py index 1dc47c4..a5f5f3c 100644 --- a/tests/test_currency.py +++ b/tests/test_currency.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/1 # Copyright (c) 2023 imacat. diff --git a/tests/test_description_editor.py b/tests/test_description_editor.py index 51c59e2..2ddbd47 100644 --- a/tests/test_description_editor.py +++ b/tests/test_description_editor.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/28 # Copyright (c) 2023 imacat. diff --git a/tests/test_journal_entry.py b/tests/test_journal_entry.py index 31ea809..b14ef79 100644 --- a/tests/test_journal_entry.py +++ b/tests/test_journal_entry.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/24 # Copyright (c) 2023 imacat. diff --git a/tests/test_offset.py b/tests/test_offset.py index de1d522..6eecd1a 100644 --- a/tests/test_offset.py +++ b/tests/test_offset.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/11 # Copyright (c) 2023 imacat. diff --git a/tests/test_option.py b/tests/test_option.py index 8af4341..9d03d19 100644 --- a/tests/test_option.py +++ b/tests/test_option.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/3/22 # Copyright (c) 2023 imacat. diff --git a/tests/test_site/__init__.py b/tests/test_site/__init__.py index 07aad68..87bd266 100644 --- a/tests/test_site/__init__.py +++ b/tests/test_site/__init__.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Demonstration Website. +# The Mia! Accounting Demonstration Website. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/27 # Copyright (c) 2023 imacat. @@ -14,7 +14,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -"""The Mia! Accounting Flask demonstration website. +"""The Mia! Accounting demonstration website. """ import os diff --git a/tests/test_site/auth.py b/tests/test_site/auth.py index 7bd849c..cb7e0db 100644 --- a/tests/test_site/auth.py +++ b/tests/test_site/auth.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Demonstration Website. +# The Mia! Accounting Demonstration Website. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/27 # Copyright (c) 2023 imacat. @@ -14,7 +14,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -"""The authentication for the Mia! Accounting Flask demonstration website. +"""The authentication for the Mia! Accounting demonstration website. """ from flask import Blueprint, render_template, Flask, redirect, url_for, \ diff --git a/tests/test_site/locale.py b/tests/test_site/locale.py index 70ca9e7..51273dd 100644 --- a/tests/test_site/locale.py +++ b/tests/test_site/locale.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Demonstration Website. +# The Mia! Accounting Demonstration Website. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/2 # Copyright (c) 2023 imacat. @@ -14,7 +14,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -"""The localization for the Mia! Accounting Flask demonstration website. +"""The localization for the Mia! Accounting demonstration website. """ from babel import Locale diff --git a/tests/test_site/templates/base.html b/tests/test_site/templates/base.html index 6ec7e97..4192345 100644 --- a/tests/test_site/templates/base.html +++ b/tests/test_site/templates/base.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Demonstration Website +The Mia! Accounting Demonstration Website base.html: The side-wide layout template Copyright (c) 2023 imacat. diff --git a/tests/test_site/templates/home.html b/tests/test_site/templates/home.html index a850001..56eb840 100644 --- a/tests/test_site/templates/home.html +++ b/tests/test_site/templates/home.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Demonstration Website +The Mia! Accounting Demonstration Website home.html: The home page. Copyright (c) 2023 imacat. diff --git a/tests/test_site/templates/login.html b/tests/test_site/templates/login.html index 651d648..fe7b6a5 100644 --- a/tests/test_site/templates/login.html +++ b/tests/test_site/templates/login.html @@ -1,5 +1,5 @@ {# -The Mia! Accounting Flask Demonstration Website +The Mia! Accounting Demonstration Website login.html: The login page. Copyright (c) 2023 imacat. diff --git a/tests/test_site/translations/zh_Hant/LC_MESSAGES/messages.po b/tests/test_site/translations/zh_Hant/LC_MESSAGES/messages.po index dbba6f4..2bd3235 100644 --- a/tests/test_site/translations/zh_Hant/LC_MESSAGES/messages.po +++ b/tests/test_site/translations/zh_Hant/LC_MESSAGES/messages.po @@ -1,4 +1,4 @@ -# Chinese (Traditional) translations for the Mia! Accounting Flask +# Chinese (Traditional) translations for the Mia! Accounting # Demonstration website. # Copyright (C) 2023 imacat # This file is distributed under the same license as the Mia! Accounting @@ -7,7 +7,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Mia! Accounting Flask Demonstration 0.0.0\n" +"Project-Id-Version: Mia! Accounting Demonstration 0.0.0\n" "Report-Msgid-Bugs-To: imacat@mail.imacat.idv.tw\n" "POT-Creation-Date: 2023-03-24 08:32+0800\n" "PO-Revision-Date: 2023-03-24 08:33+0800\n" diff --git a/tests/test_utils.py b/tests/test_utils.py index d4954ad..8d8eb07 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/3 # Copyright (c) 2023 imacat. diff --git a/tests/testlib.py b/tests/testlib.py index 75aa3e0..222ca5a 100644 --- a/tests/testlib.py +++ b/tests/testlib.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/1/27 # Copyright (c) 2023 imacat. diff --git a/tests/testlib_journal_entry.py b/tests/testlib_journal_entry.py index 6a1eb2c..7448c7d 100644 --- a/tests/testlib_journal_entry.py +++ b/tests/testlib_journal_entry.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/27 # Copyright (c) 2023 imacat. diff --git a/tests/testlib_offset.py b/tests/testlib_offset.py index c1a0508..980083b 100644 --- a/tests/testlib_offset.py +++ b/tests/testlib_offset.py @@ -1,4 +1,4 @@ -# The Mia! Accounting Flask Project. +# The Mia! Accounting Project. # Author: imacat@mail.imacat.idv.tw (imacat), 2023/2/27 # Copyright (c) 2023 imacat.