Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
15 changes: 15 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"printWidth": 130,
"bracketSameLine": true,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"trailingComma": "none",
"semi": true,
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "auto",
"htmlWhitespaceSensitivity": "ignore",
"embeddedLanguageFormatting": "auto",
"angular-eslint/no-injectable-provided-in-root": "off"
}
8 changes: 0 additions & 8 deletions .prettierrc.js

This file was deleted.

24 changes: 13 additions & 11 deletions i18n.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
"locales" : ["pt", "en", "es"],
"defaultLocale": "pt",
"pages" : {
"*" : ["common"],
"/" : ["homePage"],
"/kurumim" : ["kurumim"],
"/processo-seletivo": ["processoSeletivo"],
"/projetos" : ["projetos"],
"/zenith" : ["oZenith"]
}
}
"locales": ["pt", "en", "es"],
"defaultLocale": "pt",
"pages": {
"*": ["common"],
"/": ["homePage"],
"/kurumim": ["kurumim"],
"/processo-seletivo": ["processoSeletivo"],
"/projetos": ["projetos"],
"/zenith": ["oZenith"],
"/launches": ["allLaunches"]
}
}

8 changes: 8 additions & 0 deletions locales/en/allLaunches.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"allLaunchesPage": {
"header": {
"title": "Lançamentos",
"description": "Acompanhe os lançamentos e os dados de cada missão."
}
}
}
8 changes: 8 additions & 0 deletions locales/es/allLaunches.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"allLaunchesPage": {
"header": {
"title": "Lançamentos",
"description": "Acompanhe os lançamentos e os dados de cada missão."
}
}
}
8 changes: 8 additions & 0 deletions locales/pt/allLaunches.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"allLaunchesPage": {
"header": {
"title": "Lançamentos",
"description": "Acompanhe os lançamentos e os dados de cada missão."
}
}
}
2 changes: 1 addition & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/types/routes.d.ts";
import "./.next/dev/types/routes.d.ts";

// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
Loading