Skip to content

Commit

Permalink
refactor: swap found wording on refund page (#589)
Browse files Browse the repository at this point in the history
* chore: wording refund found in history

closes #586

* fix: spanish

---------

Co-authored-by: Kilian <19181985+kilrau@users.noreply.github.com>
  • Loading branch information
dni and kilrau authored May 16, 2024
1 parent 77d96b8 commit b91498e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/i18n/i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ const dict = {
testnet: "Testnet",
broadcasting_claim: "Broadcasting claim transaction...",
open_swap: "Open Swap",
swap_in_progress: "This swap is still in progress.",
swap_in_history: "Swap found in history.",
paste_invalid:
"Clipboard contains invalid characters or maximum amount is exceeded",
email: "Email",
Expand Down Expand Up @@ -358,7 +358,7 @@ const dict = {
testnet: "Testnet",
broadcasting_claim: "Sende claim transaction...",
open_swap: "Swap öffnen",
swap_in_progress: "Dieser Swap ist noch nicht abgeschlossen.",
swap_in_history: "Swap in Historie gefunden.",
paste_invalid:
"Zwischenablage enthält ungültige Zeichen oder der maximale Betrag wurde überschritten",
email: "Email",
Expand Down Expand Up @@ -550,7 +550,7 @@ const dict = {
testnet: "Testnet",
broadcasting_claim: "Enviando transacción de reclamación...",
open_swap: "Abrir intercambio",
swap_in_progress: "Este intercambio aún está en curso.",
swap_in_history: "Intercambio encontrado en la historia.",
paste_invalid:
"El portapapeles contiene caracteres no válidos o se ha excedido el importe máximo",
email: "Email",
Expand Down Expand Up @@ -722,7 +722,7 @@ const dict = {
testnet: "测试网",
broadcasting_claim: "正在发送索赔交易...",
open_swap: "打开交换",
swap_in_progress: "此交换仍在进行中。",
swap_in_history: "在历史记录中找到交换。",
paste_invalid: "剪贴板包含无效字符或超出最大金额",
email: "邮箱",
switch_paste: "根据粘贴的内容切换交换方向/资产",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Refund.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const Refund = () => {
/>
<Show when={swapFound() !== null}>
<hr />
<p>{t("swap_in_progress")}</p>
<p>{t("swap_in_history")}</p>
<button
class="btn btn-success"
onClick={() => navigate(`/swap/${swapFound()}`)}>
Expand Down

0 comments on commit b91498e

Please sign in to comment.