We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39a6801 commit 3e8f86eCopy full SHA for 3e8f86e
messages/en.json
@@ -77,7 +77,9 @@
77
"video": "Video",
78
"doc": "Document",
79
"image": "Image",
80
- "placeholder": "Search format"
+ "placeholder": "Search format",
81
+ "no_formats": "No formats available",
82
+ "no_results": "No formats match your search"
83
},
84
"tooltips": {
85
"unknown_file": "Unknown file type",
src/lib/components/functional/FormatDropdown.svelte
@@ -483,8 +483,8 @@
483
{:else}
484
<div class="col-span-3 text-center p-4 text-muted">
485
{searchQuery
486
- ? "No formats match your search"
487
- : "No formats available"}
+ ? m["convert.dropdown.no_results"]()
+ : m["convert.dropdown.no_formats"]()}
488
</div>
489
{/if}
490
0 commit comments