Skip to content

Commit

Permalink
docs: Fix readme and prompts
Browse files Browse the repository at this point in the history
  • Loading branch information
JanCizmar committed Nov 11, 2024
1 parent f01d578 commit b9eaf5d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Tolgee AI i18n migrator

This tool helps to migrate your unlocalized with no i18n app code from raw strings to use Tolgee SDKs so you can manage
This tool helps to migrate your unlocalized project with no i18n library from raw strings to Tolgee SDKs calls so you can manage
your localization effectively with Tolgee.

## Motivation
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tolgee/ai-migrator",
"version": "1.0.0-alpha.7",
"version": "1.0.0-alpha.8",
"description": "AI migration tool to migrate your project from raw string to Tolgee SDKs",
"bin": {
"tolgee-migrator": "./dist/src/cli.js"
Expand Down
2 changes: 1 addition & 1 deletion src/presets/react/system.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Follow these important rules:
- e.g. `'use client'` this is invalid beginning of the ts file, correct is 'use client'
- e.g. `import Logo from "../components/logo";` is also wrong
- Don't change any unrelated code - don't change the quoting or remove any comments or commented code
- e.g. unrelated changes from this: `Id<"boards">` to this: `Id<'boards'>` us not allowed
- e.g. Don't change this `Id<"boards">` to this `Id<'boards'>`
- Don't use any dynamic keys like, always use static key names,
- e.g. do this `{isCool ? <T keyName="cool" /> : <T keyName="not-cool" />}` instead of this `<T keyName={isCool ? 'cool' : 'not-cool'} />`
- Don't try to translate dynamic strings
Expand Down

0 comments on commit b9eaf5d

Please sign in to comment.