mirror of https://github.com/VERT-sh/VERT.git
fix: translate format dropdown results
This commit is contained in:
parent
39a6801376
commit
3e8f86ec35
|
|
@ -77,7 +77,9 @@
|
||||||
"video": "Video",
|
"video": "Video",
|
||||||
"doc": "Document",
|
"doc": "Document",
|
||||||
"image": "Image",
|
"image": "Image",
|
||||||
"placeholder": "Search format"
|
"placeholder": "Search format",
|
||||||
|
"no_formats": "No formats available",
|
||||||
|
"no_results": "No formats match your search"
|
||||||
},
|
},
|
||||||
"tooltips": {
|
"tooltips": {
|
||||||
"unknown_file": "Unknown file type",
|
"unknown_file": "Unknown file type",
|
||||||
|
|
|
||||||
|
|
@ -483,8 +483,8 @@
|
||||||
{:else}
|
{:else}
|
||||||
<div class="col-span-3 text-center p-4 text-muted">
|
<div class="col-span-3 text-center p-4 text-muted">
|
||||||
{searchQuery
|
{searchQuery
|
||||||
? "No formats match your search"
|
? m["convert.dropdown.no_results"]()
|
||||||
: "No formats available"}
|
: m["convert.dropdown.no_formats"]()}
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue