Skip to content

Commit eef987e

Browse files
author
FalkWolsky
committed
New Icons & Better Org & Home Page Display - small fixes and translation 2
1 parent efa6208 commit eef987e

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
lines changed

client/packages/lowcoder/src/app.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@ class AppIndex extends React.Component<AppIndexProps, any> {
115115
// persisting the language in local storage
116116
localStorage.setItem('lowcoder_uiLanguage', this.props.uiLanguage);
117117

118+
// console.log("this.props.defaultHomePage: ", this.props.defaultHomePage)
119+
118120
return (
119121
<Wrapper language={this.props.uiLanguage}>
120122
<Helmet>
@@ -148,7 +150,13 @@ class AppIndex extends React.Component<AppIndexProps, any> {
148150
<Redirect exact from={ALL_APPLICATIONS_URL} to={APPLICATION_VIEW_URL(this.props.defaultHomePage, "view")}
149151
/>
150152
)} */}
151-
<Redirect exact from={BASE_URL} to={USER_PROFILE_URL} />
153+
154+
{!this.props.orgDev ? (
155+
<Redirect exact from={BASE_URL} to={ORG_HOME_URL} />
156+
) : (
157+
<Redirect exact from={BASE_URL} to={ALL_APPLICATIONS_URL} />
158+
)}
159+
152160
<LazyRoute exact path={IMPORT_APP_FROM_TEMPLATE_URL} component={LazyAppFromTemplate} />
153161
<LazyRoute fallback="layout" path={APP_EDITOR_URL} component={LazyAppEditor} />
154162
<LazyRoute

client/packages/lowcoder/src/i18n/locales/de.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1969,7 +1969,7 @@ export const de: typeof en = {
19691969
"unStructuredError": "Unstrukturierte Daten {prev} können nicht von {path} aktualisiert werden",
19701970
"valueDesc": "Vorläufiger Zustandswert",
19711971
"deleteMessage": "Der temporäre Zustand wurde erfolgreich gelöscht. Du kannst {undoKey} zum Rückgängigmachen verwenden.",
1972-
"documentationText": "Temporäre Zustände in Lowcoder sind eine leistungsstarke Funktion zur Verwaltung komplexer Variablen, die den Zustand von Komponenten in deiner Anwendung dynamisch aktualisieren. Diese Zustände dienen als Zwischenspeicher für Daten, die sich im Laufe der Zeit aufgrund von Benutzerinteraktionen oder anderen Prozessen ändern können."
1972+
"documentationText": "Temporäre Zustände sind eine leistungsstarke Funktion zur Verwaltung komplexer Variablen, die den Zustand von Komponenten in deiner Anwendung dynamisch aktualisieren. Diese Zustände dienen als Zwischenspeicher für Daten, die sich im Laufe der Zeit aufgrund von Benutzerinteraktionen oder anderen Prozessen ändern können."
19731973
},
19741974
"dataResponder": {
19751975
...en.dataResponder,
@@ -2254,7 +2254,7 @@ export const de: typeof en = {
22542254
"setPassAfterBind": "Du kannst das Passwort nach der Kontobindung festlegen",
22552255
"socialConnections": "Soziale Bindungen",
22562256
"changeAvatar": "Avatar ändern",
2257-
"about": "Dein Lowcoder Account",
2257+
"about": "Dein Account",
22582258
"userId": "Benutzer-ID",
22592259
"createdAt": "Erstellt am",
22602260
"currentOrg": "aktuelle Organisation",
@@ -2500,8 +2500,8 @@ export const de: typeof en = {
25002500
"copyLink": "Link kopieren",
25012501
"appPublicMessage": "App veröffentlichen. Die App wird damit für jeden sichtbar.",
25022502
"modulePublicMessage": "Module veröffentlichen. Das Module wird damit für jeden sichtbar.",
2503-
"appMarketplaceMessage": "Veröffentlichen Sie Ihre App auf dem Lowcoder-Marktplatz. Jeder kann sie dort sehen und kopieren.",
2504-
"moduleMarketplaceMessage": "Veröffentlichen Sie Ihr Modul auf dem Lowcoder-Marktplatz. Jeder kann es dort sehen und kopieren.",
2503+
"appMarketplaceMessage": "Veröffentlichen Sie Ihre App auf dem öffentlichen Marktplatz. Jeder kann sie dort sehen und kopieren.",
2504+
"moduleMarketplaceMessage": "Veröffentlichen Sie Ihr Modul auf dem öffentlichen Marktplatz. Jeder kann es dort sehen und kopieren.",
25052505
"marketplaceGoodPublishing": "Bitte stellen Sie sicher, dass Ihre App gut benannt und einfach zu bedienen ist. Entfernen Sie alle sensiblen Informationen vor der Veröffentlichung. Entfernen Sie außerdem lokale Datenquellen und ersetzen Sie sie durch statische, integrierte temporäre Daten.",
25062506
"noMarketplaceApps": "Noch sind keine Anwendungen auf dem Marktplatz.",
25072507
"memberPermissionList": "Berechtigungen: ",

client/packages/lowcoder/src/i18n/locales/en.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ export const en = {
209209
"contentScrollbar" : "Show Scrollbars in Content",
210210
"appID": "App Id",
211211
"showApp": "Show an App in the content area",
212-
"showAppTooltip": "You can display whole Lowcoder Apps in the content area. Please mind, that for Modules we do not support Inputs, Outputs Events and Methods.",
213-
"baseURL": "Lowcoder API Base URL",
212+
"showAppTooltip": "You can display whole Apps in the content area. Please mind, that for Modules we do not support Inputs, Outputs Events and Methods.",
213+
"baseURL": "API Base URL",
214214
"horizontal": "Horizontal",
215215
"minHorizontalWidth": "Minimum Horizontal Width",
216216
"component": "Own Component Identifiers",
@@ -2420,7 +2420,7 @@ export const en = {
24202420
"unStructuredError": "Unstructured Data {prev} Can't Be Updated by {path}",
24212421
"valueDesc": "Temporary State Value",
24222422
"deleteMessage": "The Temporary State is Deleted Successfully. You Can Use {undoKey} to Undo.",
2423-
"documentationText" : "Temporary states in Lowcoder are a powerful feature used to manage complex variables that dynamically update the state of components in your application. These states act as intermediary or transient storage for data that can change over time due to user interactions or other processes."
2423+
"documentationText" : "Temporary states are a powerful feature used to manage complex variables that dynamically update the state of components in your application. These states act as intermediary or transient storage for data that can change over time due to user interactions or other processes."
24242424
},
24252425
"dataResponder": {
24262426
"data": "Data",
@@ -2582,7 +2582,7 @@ export const en = {
25822582
"module": {
25832583
"emptyText": "No Data",
25842584
"docLink": "Read More About Modules...",
2585-
"documentationText" : "Lowcoder Modules are complete Applications, that can get included and repeated in other Lowcoder Applications and it functions just like a single component. As modules can get embedded, they need to be able to interact with your outside apps or websites. This four settings help to support communication with a Module.",
2585+
"documentationText" : "Modules are complete Applications, that can get included and repeated in other Applications and it functions just like a single component. As modules can get embedded, they need to be able to interact with your outside apps or websites. This four settings help to support communication with a Module.",
25862586
"circularReference": "Circular Reference, Current Module/Application Cannot Be Used!",
25872587
"emptyTestInput": "The Current Module Has No Input to Test",
25882588
"emptyTestMethod": "The Current Module Has No Method to Test",
@@ -2982,8 +2982,8 @@ export const en = {
29822982
"appPublicMessage": "Make the app public. Anyone can view.",
29832983
"modulePublicMessage": "Make the module public. Anyone can view.",
29842984
"marketplaceURL": "https://api-service.lowcoder.cloud",
2985-
"appMarketplaceMessage": "Publish your App on Lowcoder Marketplace. Anyone can view and copy it from there.",
2986-
"moduleMarketplaceMessage": "Publish your Module on Lowcoder Marketplace. Anyone can view and copy it from there.",
2985+
"appMarketplaceMessage": "Publish your App on the Public Marketplace. Anyone can view and copy it from there.",
2986+
"moduleMarketplaceMessage": "Publish your Module on the Public Marketplace. Anyone can view and copy it from there.",
29872987
"marketplaceGoodPublishing": "Please make sure your app is well-named and easy to use. Remove any sensitive information before publishing. Also, remove local datasources and replace by static built-in temporary data.",
29882988
"noMarketplaceApps": "No apps yet in the marketplace",
29892989
"errorMarketplaceApps": "Error while loading Marketplace Apps",
@@ -3001,7 +3001,7 @@ export const en = {
30013001
"copyNamePlaceholder": "Please enter a {type} name",
30023002
"chooseNavType": "Please choose navigation type",
30033003
"createNavigation": "Create Navigation",
3004-
"howToUseAPI": "How to use the Lowcoder Open Rest API",
3004+
"howToUseAPI": "How to use the Open Rest API",
30053005
},
30063006
"carousel": {
30073007
"dotPosition": "Navigation Dots position",

0 commit comments

Comments
 (0)