-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds currency support with overriding of currency type per part. (sti…
…ll needs user settings ability)
- Loading branch information
1 parent
ad8b419
commit 9e64a23
Showing
26 changed files
with
2,590 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
520 changes: 501 additions & 19 deletions
520
Binner/Binner.Web/ClientApp/public/locales/de/translation.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
595 changes: 594 additions & 1 deletion
595
Binner/Binner.Web/ClientApp/public/locales/es/translation.json
Large diffs are not rendered by default.
Oops, something went wrong.
595 changes: 594 additions & 1 deletion
595
Binner/Binner.Web/ClientApp/public/locales/fr/translation.json
Large diffs are not rendered by default.
Oops, something went wrong.
595 changes: 594 additions & 1 deletion
595
Binner/Binner.Web/ClientApp/public/locales/zh/translation.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { getCurrencySymbol } from "./Utils"; | ||
|
||
export const Currencies = [ | ||
{ key: 0, text: getCurrencySymbol("USD"), value: "USD", description: "US Dollar" }, | ||
{ key: 1, text: getCurrencySymbol("EUR"), value: "EUR", description: "Euro" }, | ||
{ key: 2, text: getCurrencySymbol("CAD"), value: "CAD", description: "Canadian dollar" }, | ||
{ key: 3, text: getCurrencySymbol("JPY"), value: "JPY", description: "Japanese yen" }, | ||
{ key: 4, text: getCurrencySymbol("GBP"), value: "GBP", description: "Pound sterling" }, | ||
{ key: 5, text: getCurrencySymbol("AUD"), value: "AUD", description: "Australian dollar" }, | ||
{ key: 6, text: getCurrencySymbol("CAD"), value: "CNY", description: "Renminbi" }, | ||
{ key: 7, text: getCurrencySymbol("KRW"), value: "KRW", description: "South Korean won" }, | ||
{ key: 8, text: getCurrencySymbol("MXN"), value: "MXN", description: "Mexican peso" } | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.