Skip to content
Snippets Groups Projects
Commit 030c8d7c authored by Robert Goldmann's avatar Robert Goldmann
Browse files

Fixed #318 - add placeholder text to all tables

parent 27c123e5
No related branches found
No related tags found
No related merge requests found
Pipeline #174 passed
......@@ -45,6 +45,7 @@ save=Speichern
delete=Lschen
today=Heute
tagfield.placeholder=Tag hier eingeben
placeholder=Keine Daten verfgbar
# WEEK DAYS
monday=Montag
......
......@@ -45,6 +45,7 @@ save=Save
delete=Delete
today=Today
tagfield.placeholder=Enter Tag here
placeholder=No data available
# WEEK DAYS
monday=Monday
......
......@@ -29,6 +29,9 @@
</tr>
</#list>
</table>
<#if accounts?size == 0>
<div class="headline center-align">${locale.getString("placeholder")}</div>
</#if>
</div>
</div>
</main>
......
......@@ -39,6 +39,9 @@
</tr>
</#list>
</table>
<#if categories?size == 0>
<div class="headline center-align">${locale.getString("placeholder")}</div>
</#if>
</div>
</div>
......
......@@ -76,6 +76,9 @@
</tr>
</#list>
</table>
<#if payments?size == 0>
<div class="headline center-align">${locale.getString("placeholder")}</div>
</#if>
</div>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment