Skip to content

Commit 4370d42

Browse files
committed
Fixed i18n translations
1 parent 27472f3 commit 4370d42

File tree

3 files changed

+6
-17
lines changed

3 files changed

+6
-17
lines changed

i18n/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const portuguese = {
66
...common,
77
welcome: 'Olá 👋, eu sou Luis Takahashi',
88
bio:
9-
'Um apaixonado entusiasta de Typecript e engenheiro de software frontend do Brasil',
9+
'Um entusiasta apaixonado por Typecript e engenheiro de software frontend do Brasil',
1010
footer: 'Todos os direitos reservados',
1111
};
1212

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@
3939
"prettier": "^2.1.2",
4040
"typescript": "^4.1.0-beta"
4141
}
42-
}
42+
}

tsconfig.json

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "es5",
4-
"lib": [
5-
"dom",
6-
"dom.iterable",
7-
"esnext"
8-
],
4+
"lib": ["dom", "dom.iterable", "esnext"],
95
"allowJs": true,
106
"skipLibCheck": true,
117
"strict": false,
@@ -17,15 +13,8 @@
1713
"resolveJsonModule": true,
1814
"isolatedModules": true,
1915
"jsx": "preserve",
20-
"baseUrl": ".",
16+
"baseUrl": "."
2117
},
22-
"include": [
23-
"next-env.d.ts",
24-
"**/*.ts",
25-
"**/*.tsx",
26-
"next.config.js"
27-
],
28-
"exclude": [
29-
"node_modules"
30-
],
18+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "next.config.js"],
19+
"exclude": ["node_modules"]
3120
}

0 commit comments

Comments
 (0)