Alpha UI update (#95)

* added localization options
//todo add all the strings

* broken push

* merge to UI

* broken push

* Alpha rebase complete, added asset loader for UI branch

* merge to UI

* UI now uses assetmanager

* added NL and EN for all strings currently in UI

* fix small merge error

---------

Co-authored-by: Ticho Hidding <tichohidding@gmail.com>
Co-authored-by: ramollia <@>
This commit is contained in:
Bas Antonius de Jong
2025-10-01 15:59:12 +02:00
committed by GitHub
parent 2f9b155e6e
commit 9b17a4ba7f
19 changed files with 228 additions and 23 deletions

View File

@@ -0,0 +1,17 @@
package org.toop.framework.asset.resources;
import java.io.File;
@FileExtension({"css"})
public class CssAsset extends BaseResource {
private final String url;
public CssAsset(File file) {
super(file);
this.url = file.toURI().toString();
}
public String getUrl() {
return url;
}
}