-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
56 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export default { | ||
version: "1.0.0", | ||
locale: { | ||
source: "en", | ||
targets: ["sv"] | ||
}, | ||
files: { | ||
json: { | ||
include: ["locales/[locale].json"] | ||
} | ||
}, | ||
openai: { | ||
model: "gpt-4-turbo" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"key": "This is a wonderful day!", | ||
"nested": { | ||
"key": "How are you?" | ||
}, | ||
"interpolated": "Have a nice day, {{name}}!", | ||
"pluralKey_one": "This is a nice example.", | ||
"pluralKey_other": "This are nice examples." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"key": "Det är en underbar dag!", | ||
"nested": { | ||
"key": "Hur mår du?" | ||
}, | ||
"interpolated": "Ha en trevlig dag, {{name}}!", | ||
"pluralKey_one": "Det här är ett fint exempel.", | ||
"pluralKey_other": "Det här är fina exempel." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export default { | ||
version: "1.0.0", | ||
locale: { | ||
source: "en", | ||
targets: ["fr"], | ||
}, | ||
files: { | ||
ts: { | ||
include: ["locales/[locale].ts"], | ||
}, | ||
}, | ||
openai: { | ||
model: "gpt-4-turbo", | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters