Skip to content

Subscription handling #2 #1137

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 30 commits into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d4a2a2c
Search & Create Customer
Aug 10, 2024
b6e19ee
Update for Subscription Handling
Aug 12, 2024
9759a6f
Merge branch 'dev' into subscription-handling
FalkWolsky Aug 17, 2024
45b37cd
Reorganizing and cleaning up
Aug 17, 2024
19ebdc8
Reorganizing and cleaning up
Aug 21, 2024
8faa3bb
Merge branch 'dev' into subscription-handling
FalkWolsky Aug 24, 2024
79fcd60
Updating package version
Aug 24, 2024
d5e1c64
Update Home Page
Aug 24, 2024
3e0450c
Showing Support Product Page
Aug 24, 2024
b415d1e
Subscription-Check Saga
Aug 24, 2024
33c7134
Cleanup dispatchers
Aug 25, 2024
9b1e389
Merge branch 'dev' into subscription-handling
FalkWolsky Aug 31, 2024
eb7c77f
Updating Vite Build Goals
Aug 31, 2024
41affd4
Introducing Subscription Overview and Support Handling
Aug 31, 2024
07136fc
Support Tickets Table
Aug 31, 2024
25890f3
fix: enhance docker image build github action
ludomikula Sep 3, 2024
4c46225
fixed support detail route
raheeliftikhar5 Sep 6, 2024
3dbdcd6
Merge branch 'main' into subscription-handling
FalkWolsky Sep 7, 2024
7dc68d3
Merge branch 'dev' into subscription-handling
FalkWolsky Sep 7, 2024
0d68d67
Support Detail Page
Sep 7, 2024
fc55724
Merge branch 'dev' into subscription-handling
FalkWolsky Sep 14, 2024
88e61b9
Merge branch 'dev' into subscription-handling
FalkWolsky Sep 14, 2024
9f7fc35
Merge branch 'dev' into subscription-handling
FalkWolsky Sep 14, 2024
b20ed56
Update React Markdown
Sep 14, 2024
fbdf8d5
Full Support and introducing a translation management script.
Sep 14, 2024
831bcbd
Adding Language Files
Sep 14, 2024
916d55e
Cleaning up Translation Folder
Sep 14, 2024
909a030
Updated Language Files including Variables
Sep 14, 2024
86757ee
Fixed Language Files and Merge preparation
Sep 15, 2024
fe89b29
Merge branch 'dev' into subscription-handling
FalkWolsky Sep 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated Language Files including Variables
  • Loading branch information
FalkWolsky committed Sep 14, 2024
commit 909a030b6f6283b1c61c53302e7cd9310d46c12c
15 changes: 14 additions & 1 deletion client/packages/lowcoder/src/i18n/languagesMeta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import {
Flag_pt,
Flag_br
} from "lowcoder-design";
import { es, ru } from "./locales";

// Define the structure for a single language's metadata
export interface LanguageMeta {
Expand Down Expand Up @@ -45,6 +46,18 @@ export interface LanguageMeta {
pt: {
languageName: "Português",
flag: Flag_br
}
},
it: {
languageName: "Italiano",
flag: Flag_it
},
es: {
languageName: "Español",
flag: Flag_es
},
ru: {
languageName: "Русский",
flag: Flag_ru
},
};

Loading
Loading