mirror of
https://github.com/Sheldan/abstracto-templates.git
synced 2026-01-08 02:17:42 +00:00
[AB-xxx] adding templates for currency conversion
This commit is contained in:
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"embeds": [
|
||||||
|
{
|
||||||
|
<#assign sourceValue=sourceValue>
|
||||||
|
<#assign sourceCurrency=sourceCurrency.code>
|
||||||
|
<#assign targetValue=targetValue>
|
||||||
|
<#assign targetCurrency=targetCurrency.code>
|
||||||
|
"description": "<@safe_include "convertCurrency_response_text"/>"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<#include "currency_conversion_currency_not_found_exception_text">
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
${sourceValue} ${sourceCurrency} is ${targetValue} ${targetCurrency}.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Converts money between different currencies
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Uses a web API to convert money between different currencies.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
The source currency (use symbol, short code or name)
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
The target currency (use symbol, short code or name)
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
The amount of money you want to convert
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Currency conversion
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Currency not found.
|
||||||
Reference in New Issue
Block a user