diff --git a/README.md b/README.md
index 24fa64298a..8010c9d3d9 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@
Open-source developer infrastructure for internal tools. Self-hostable alternative to Airplane, Pipedream, Superblocks and a simplified Temporal with autogenerated UIsm and custom UIs to trigger workflows and scripts as internal apps.
-Scripts are turned into UIs and no-code modules, no-code modules can be composed into very rich flows, and script and flows can be triggered from internal UIs made with a low-code builder. The script languages supported are: Python, Typescript, Go, Bash, SQL. Scripts can be generated by an AI assistant powered by OpenAI.
+Scripts are turned into UIs and no-code modules, no-code modules can be composed into very rich flows, and script and flows can be triggered from internal UIs made with a low-code builder. The script languages supported are: Python, TypeScript, Go, Bash, SQL. Scripts can be generated by an AI assistant powered by OpenAI.
@@ -73,7 +73,7 @@ https://github.com/windmill-labs/windmill/assets/122811744/0b132cd1-ee67-4505-82
## Main Concepts
-1. Define a minimal and generic script in Python, Typescript, Go or Bash that
+1. Define a minimal and generic script in Python, TypeScript, Go or Bash that
solves a specific task. Here sending a POST request. The code can be defined
in the provided Web IDE or synchronized with your own github repo:

diff --git a/backend/parsers/windmill-parser-ts/src/lib.rs b/backend/parsers/windmill-parser-ts/src/lib.rs
index e958da8dd9..69537a7b80 100644
--- a/backend/parsers/windmill-parser-ts/src/lib.rs
+++ b/backend/parsers/windmill-parser-ts/src/lib.rs
@@ -44,7 +44,7 @@ pub fn parse_deno_signature(code: &str, skip_dflt: bool) -> anyhow::Result
- Typescript (Bun, experimental)
+ TypeScript (Bun, experimental)
diff --git a/frontend/src/lib/components/codeGen/prompts/edit.yaml b/frontend/src/lib/components/codeGen/prompts/edit.yaml
index 4a5656843b..77943a872e 100644
--- a/frontend/src/lib/components/codeGen/prompts/edit.yaml
+++ b/frontend/src/lib/components/codeGen/prompts/edit.yaml
@@ -17,7 +17,7 @@ prompts:
My instructions: {description}
deno:
prompt: |-
- Here's my typescript code in a deno running environement:
+ Here's my TypeScript code in a deno running environment:
```typescript
{code}
```
@@ -59,7 +59,7 @@ prompts:
My instructions: {description}
nativets:
prompt: |-
- Here's my typescript code:
+ Here's my TypeScript code:
```typescript
{code}
```
@@ -70,7 +70,7 @@ prompts:
My instructions: {description}
bun:
prompt: |-
- Here's my typescript code in a node.js running environment:
+ Here's my TypeScript code in a node.js running environment:
```typescript
{code}
```
diff --git a/frontend/src/lib/components/codeGen/prompts/fix.yaml b/frontend/src/lib/components/codeGen/prompts/fix.yaml
index 05c9f4f270..80cf56d84f 100644
--- a/frontend/src/lib/components/codeGen/prompts/fix.yaml
+++ b/frontend/src/lib/components/codeGen/prompts/fix.yaml
@@ -7,7 +7,7 @@ system: |-
explanation: "Here's the explanation"
Also put the explanations in the code as comments.
prompt: |-
- Here's my environement: {environment}
+ Here's my environment: {environment}
Here's my code:
```{lang}
{code}
@@ -28,7 +28,7 @@ prompts:
Fix my code.
deno:
prompt: |-
- Here's my typescript code in a deno running environement:
+ Here's my TypeScript code in a deno running environment:
```typescript
{code}
```
@@ -75,7 +75,7 @@ prompts:
Fix my code.
nativets:
prompt: |-
- Here's my typescript code:
+ Here's my TypeScript code:
```typescript
{code}
```
@@ -87,7 +87,7 @@ prompts:
Fix my code.
bun:
prompt: |-
- Here's my typescript code in a node.js running environment:
+ Here's my TypeScript code in a node.js running environment:
```typescript
{code}
```
diff --git a/frontend/src/lib/components/codeGen/prompts/gen.yaml b/frontend/src/lib/components/codeGen/prompts/gen.yaml
index 9f33a62a4a..a9e489747b 100644
--- a/frontend/src/lib/components/codeGen/prompts/gen.yaml
+++ b/frontend/src/lib/components/codeGen/prompts/gen.yaml
@@ -12,7 +12,7 @@ prompts:
Only use the ones you need. If the TypedDict name conflicts with the imported object, rename the imported object NOT THE TYPE.
deno:
prompt: |-
- Write a function in typescript called "main". The function should {description}. Specify the parameter types. You are in a Deno environment. You can import deno libraries or you can also import npm libraries like that: "import ... from "npm:{package}";". Export the "main" function like this: "export async function main(...)". Do not call the main function.
+ Write a function in TypeScript called "main". The function should {description}. Specify the parameter types. You are in a Deno environment. You can import deno libraries or you can also import npm libraries like that: "import ... from "npm:{package}";". Export the "main" function like this: "export async function main(...)". Do not call the main function.
You have access to the following resource types, if you need them, you have to define the type exactly as specified and add them as parameters: {resourceTypes}
Only use the ones you need. If the type name conflicts with the imported object, rename the imported object NOT THE TYPE.
go:
@@ -29,12 +29,12 @@ prompts:
Write SQL code for MySQL that should {description}. Arguments can be obtained directly in the statement with ?. Name the parameters by adding comments before the command like that: -- ? name1 ({type}) (one per row)
nativets:
prompt: |-
- Write a function in typescript called "main". The function should {description}. Specify the parameter types. You should use fetch and are not allowed to import any libraries. Export the "main" function like this: "export async function main(...)". Do not call the main function.
+ Write a function in TypeScript called "main". The function should {description}. Specify the parameter types. You should use fetch and are not allowed to import any libraries. Export the "main" function like this: "export async function main(...)". Do not call the main function.
You have access to the following resource types, if you need them, you have to define the type exactly as specified and add them as parameters: {resourceTypes}
Only use the ones you need. If the type name conflicts with the imported object, rename the imported object NOT THE TYPE.
bun:
prompt: |-
- Write a function in typescript called "main". The function should {description}. Specify the parameter types. You are in a Node.js environment. You can import npm libraries. Export the "main" function like this: "export async function main(...)". Do not call the main function.
+ Write a function in TypeScript called "main". The function should {description}. Specify the parameter types. You are in a Node.js environment. You can import npm libraries. Export the "main" function like this: "export async function main(...)". Do not call the main function.
You have access to the following resource types, if you need them, you have to define the type exactly as specified and add them as parameters: {resourceTypes}
Only use the ones you need. If the type name conflicts with the imported object, rename the imported object NOT THE TYPE.
frontend:
diff --git a/frontend/src/routes/(root)/(logged)/user/(user)/login/+page.js b/frontend/src/routes/(root)/(logged)/user/(user)/login/+page.js
index f26a79084e..ce264db821 100644
--- a/frontend/src/routes/(root)/(logged)/user/(user)/login/+page.js
+++ b/frontend/src/routes/(root)/(logged)/user/(user)/login/+page.js
@@ -1,5 +1,5 @@
export function load() {
return {
- stuff: { title: 'Login' }
+ stuff: { title: 'Log in' }
}
}
diff --git a/frontend/src/routes/(root)/(logged)/user/(user)/login/+page.svelte b/frontend/src/routes/(root)/(logged)/user/(user)/login/+page.svelte
index bbb9a08b2d..5c070b227d 100644
--- a/frontend/src/routes/(root)/(logged)/user/(user)/login/+page.svelte
+++ b/frontend/src/routes/(root)/(logged)/user/(user)/login/+page.svelte
@@ -167,10 +167,10 @@
- Login or sign up
+ Log in or sign up
- Login or sign up with any of the methods below
+ Log in or sign up with any of the methods below
@@ -233,7 +233,7 @@
showPassword = !showPassword
}}
>
- Login without third-party
+ Log in without third-party
{/if}
diff --git a/frontend/src/routes/(root)/(logged)/user/(user)/logout/+page.js b/frontend/src/routes/(root)/(logged)/user/(user)/logout/+page.js
index 619690ef4f..9b6df658fd 100644
--- a/frontend/src/routes/(root)/(logged)/user/(user)/logout/+page.js
+++ b/frontend/src/routes/(root)/(logged)/user/(user)/logout/+page.js
@@ -1,5 +1,5 @@
export function load() {
return {
- stuff: { title: 'Logout' }
+ stuff: { title: 'Log out' }
}
}
diff --git a/frontend/src/routes/(root)/(logged)/user/(user)/workspaces/+page.svelte b/frontend/src/routes/(root)/(logged)/user/(user)/workspaces/+page.svelte
index bd49defd7d..914085b860 100644
--- a/frontend/src/routes/(root)/(logged)/user/(user)/workspaces/+page.svelte
+++ b/frontend/src/routes/(root)/(logged)/user/(user)/workspaces/+page.svelte
@@ -232,7 +232,7 @@
logout()
}}
>
- Logout
+ Log out
diff --git a/frontend/tests/global-setup.ts b/frontend/tests/global-setup.ts
index f4a9e540d5..c625915adb 100644
--- a/frontend/tests/global-setup.ts
+++ b/frontend/tests/global-setup.ts
@@ -8,7 +8,7 @@ async function globalSetup() {
if (await page.locator('#email').isHidden()) {
await page.locator('button', {
- hasText: 'Login without third-party'
+ hasText: 'Log in without third-party'
}).click()
}
diff --git a/llm/sample_answers.yaml b/llm/sample_answers.yaml
index 252ff5b83a..950112a6cc 100644
--- a/llm/sample_answers.yaml
+++ b/llm/sample_answers.yaml
@@ -171,7 +171,7 @@
description: Convert a number to a word
lang: deno
template_prompt: |-
- Write a function in typescript called "main". The function should {description}. Specify the parameter types. You are in a Deno environment. You can import deno libraries or you can also import npm libraries like that: "import ... from "npm:{package}";". Export the "main" function like this: "export async function main(...)". Do not call the main function.
+ Write a function in TypeScript called "main". The function should {description}. Specify the parameter types. You are in a Deno environment. You can import deno libraries or you can also import npm libraries like that: "import ... from "npm:{package}";". Export the "main" function like this: "export async function main(...)". Do not call the main function.
You have access to the following resource types, if you need them, you have to define the type exactly as specified and add them as parameters: {resourceTypes}
Only use the ones you need. If the type name conflicts with the imported object, rename the imported object NOT THE TYPE.
template_system: |-
@@ -227,7 +227,7 @@
description: Connect to postgres and list the rows in the orders table
lang: deno
template_prompt: |-
- Write a function in typescript called "main". The function should {description}. Specify the parameter types. You are in a Deno environment. You can import deno libraries or you can also import npm libraries like that: "import ... from "npm:{package}";". Export the "main" function like this: "export async function main(...)". Do not call the main function.
+ Write a function in TypeScript called "main". The function should {description}. Specify the parameter types. You are in a Deno environment. You can import deno libraries or you can also import npm libraries like that: "import ... from "npm:{package}";". Export the "main" function like this: "export async function main(...)". Do not call the main function.
You have access to the following resource types, if you need them, you have to define the type exactly as specified and add them as parameters: {resourceTypes}
Only use the ones you need. If the type name conflicts with the imported object, rename the imported object NOT THE TYPE.
template_system: |-
@@ -257,7 +257,7 @@
description: Convert a number to a word
lang: bun
template_prompt: |-
- Write a function in typescript called "main". The function should {description}. Specify the parameter types. You are in a Node.js environment. You can import npm libraries. Export the "main" function like this: "export async function main(...)". Do not call the main function.
+ Write a function in TypeScript called "main". The function should {description}. Specify the parameter types. You are in a Node.js environment. You can import npm libraries. Export the "main" function like this: "export async function main(...)". Do not call the main function.
You have access to the following resource types, if you need them, you have to define the type exactly as specified and add them as parameters: {resourceTypes}
Only use the ones you need. If the type name conflicts with the imported object, rename the imported object NOT THE TYPE.
template_system: |-
@@ -411,7 +411,7 @@
description: Query the github api and return the number of stars of a repo
lang: nativets
template_prompt: |-
- Write a function in typescript called "main". The function should {description}. Specify the parameter types. You should use fetch and are not allowed to import any libraries. Export the "main" function like this: "export async function main(...)". Do not call the main function.
+ Write a function in TypeScript called "main". The function should {description}. Specify the parameter types. You should use fetch and are not allowed to import any libraries. Export the "main" function like this: "export async function main(...)". Do not call the main function.
You have access to the following resource types, if you need them, you have to define the type exactly as specified and add them as parameters: {resourceTypes}
Only use the ones you need. If the type name conflicts with the imported object, rename the imported object NOT THE TYPE.
template_system: |-