make loading message account for dark mode & add i18n (#2033)
* make loading message account for dark mode & add i18n * use app color scheme
This commit is contained in:
@ -1,10 +1,11 @@
|
||||
import React from "react";
|
||||
import { t } from "../i18n";
|
||||
|
||||
export const LoadingMessage = () => {
|
||||
// !! KEEP THIS IN SYNC WITH index.html !!
|
||||
return (
|
||||
<div className="LoadingMessage">
|
||||
<span>{"Loading scene..."}</span>
|
||||
<span>{t("labels.loadingScene")}</span>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
@ -68,7 +68,8 @@
|
||||
"toggleGridMode": "Toggle grid mode",
|
||||
"addToLibrary": "Add to library",
|
||||
"removeFromLibrary": "Remove from library",
|
||||
"libraryLoadingMessage": "Loading library..."
|
||||
"libraryLoadingMessage": "Loading library...",
|
||||
"loadingScene": "Loading scene..."
|
||||
},
|
||||
"buttons": {
|
||||
"clearReset": "Reset the canvas",
|
||||
|
Reference in New Issue
Block a user