@vc-shell/framework 2.5.0-pr333.50c07fa → 2.5.0-pr333.e765c02

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,10 @@
1
1
  export default {
2
2
  "CORE": {
3
+ "ERRORS": {
4
+ "SESSION_EXPIRED": "Zugriff verweigert: Ihre Sitzung ist abgelaufen oder Sie verfügen nicht über die erforderlichen Berechtigungen.\nBitte melden Sie sich erneut an oder wenden Sie sich an den Administrator.",
5
+ "NETWORK_UNAVAILABLE": "Keine Netzwerkverbindung. Bitte prüfen Sie Ihre Verbindung.",
6
+ "REQUEST_TIMED_OUT": "Zeitüberschreitung der Anfrage. Bitte versuchen Sie es erneut."
7
+ },
3
8
  "THEMES": {
4
9
  "LIGHT": "Hell",
5
10
  "DARK": "Dunkel"
@@ -1,5 +1,10 @@
1
1
  export default {
2
2
  "CORE": {
3
+ "ERRORS": {
4
+ "SESSION_EXPIRED": "Access Denied: Your session has expired or you do not have the necessary permissions.\nPlease log in again or contact the administrator for assistance.",
5
+ "NETWORK_UNAVAILABLE": "Network unavailable. Please check your connection.",
6
+ "REQUEST_TIMED_OUT": "Request timed out. Please try again."
7
+ },
3
8
  "THEMES": {
4
9
  "LIGHT": "Light",
5
10
  "DARK": "Dark"
@@ -1,5 +1,10 @@
1
1
  {
2
2
  "CORE": {
3
+ "ERRORS": {
4
+ "SESSION_EXPIRED": "Access Denied: Your session has expired or you do not have the necessary permissions.\nPlease log in again or contact the administrator for assistance.",
5
+ "NETWORK_UNAVAILABLE": "Network unavailable. Please check your connection.",
6
+ "REQUEST_TIMED_OUT": "Request timed out. Please try again."
7
+ },
3
8
  "THEMES": {
4
9
  "LIGHT": "Light",
5
10
  "DARK": "Dark"
@@ -6,6 +6,11 @@ export type DeepPartial<T> = {
6
6
 
7
7
  export interface VcShellLocale {
8
8
  CORE: {
9
+ ERRORS: {
10
+ SESSION_EXPIRED: string;
11
+ NETWORK_UNAVAILABLE: string;
12
+ REQUEST_TIMED_OUT: string;
13
+ };
9
14
  THEMES: {
10
15
  LIGHT: string;
11
16
  DARK: string;