Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into fix-component-upda…
Browse files Browse the repository at this point in the history
…te-ui
  • Loading branch information
sfeilmeier committed Jan 7, 2025
2 parents a5009ca + a660a40 commit 1666c46
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cnf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<!-- Used by com.squareup.okhttp3: okhttp -->
<groupId>com.squareup.okio</groupId>
<artifactId>okio-jvm</artifactId>
<version>3.9.1</version>
<version>3.10.0</version>
</dependency>
<dependency>
<!-- Used by com.influxdb: influxdb-client -->
Expand Down
2 changes: 1 addition & 1 deletion io.openems.backend.application/BackendApp.bndrun
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
com.google.gson;version='[2.11.0,2.11.1)',\
com.google.guava;version='[33.4.0,33.4.1)',\
com.google.guava.failureaccess;version='[1.0.2,1.0.3)',\
com.squareup.okio;version='[3.9.1,3.9.2)',\
com.squareup.okio;version='[3.10.0,3.10.1)',\
com.zaxxer.HikariCP;version='[6.2.1,6.2.2)',\
io.openems.backend.alerting;version=snapshot,\
io.openems.backend.application;version=snapshot,\
Expand Down
2 changes: 1 addition & 1 deletion io.openems.edge.application/EdgeApp.bndrun
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
com.google.gson;version='[2.11.0,2.11.1)',\
com.google.guava;version='[33.4.0,33.4.1)',\
com.google.guava.failureaccess;version='[1.0.2,1.0.3)',\
com.squareup.okio;version='[3.9.1,3.9.2)',\
com.squareup.okio;version='[3.10.0,3.10.1)',\
com.sun.jna;version='[5.16.0,5.16.1)',\
io.openems.common;version=snapshot,\
io.openems.edge.application;version=snapshot,\
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/shared/type/language.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class Language {
public static readonly JA: Language = new Language("Japanese", "ja", "ja", ja, localJA);

public static readonly ALL = [Language.DE, Language.EN, Language.CZ, Language.NL, Language.ES, Language.FR, Language.JA];
public static readonly DEFAULT = Language.DE;
public static readonly DEFAULT = Language.getByKey(environment.defaultLanguage) as Language;

constructor(
public readonly title: string,
Expand Down
1 change: 1 addition & 0 deletions ui/src/environments/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export interface Environment {
readonly uiTitle: string;
readonly edgeShortName: string;
readonly edgeLongName: string;
readonly defaultLanguage: string;

readonly url: string;
readonly backend: DefaultTypes.Backend;
Expand Down
1 change: 1 addition & 0 deletions ui/src/themes/openems/environments/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export const theme = {
uiTitle: "OpenEMS UI",
edgeShortName: "OpenEMS",
edgeLongName: "Open Energy Management System",
defaultLanguage: "de",

docsUrlPrefix: "https://github.com/OpenEMS/openems/blob/develop/",
links: {
Expand Down

0 comments on commit 1666c46

Please sign in to comment.