-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from vncsmyrnk/5-add-tranlsation-to-portuguese
Add tranlsation to portuguese
- Loading branch information
Showing
10 changed files
with
338 additions
and
35 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,47 @@ | ||
{ | ||
"header": { | ||
"home": "Home", | ||
"projects": "Projects", | ||
"about": "About me", | ||
"contact": "Contact" | ||
}, | ||
"main_sentence": { | ||
"title": "Powering the digital world from behind the scenes", | ||
"description": "I build scalable, secure, and seamless backend infrastructures" | ||
}, | ||
"description": { | ||
"text": "I am <span_name>Vinicius Mayrink</span_name> and I am a backend developer specialized in crafting robust APIs using an arsenal of tools including <span_language>Python</span_language>, <span_language>Java</span_language>, and <span_language>Node.js</span_language>. With a deep understanding of backend principles and concepts, I am proficient in implementing SOLID principles, RESTful architecture, and clean code practices to engineer <strong>scalable</strong> and <strong>efficient</strong> solutions.", | ||
"button": "Check it out" | ||
}, | ||
"projects": { | ||
"title": "Projects", | ||
"button-to-github": "See on GitHub", | ||
"restaurant": { | ||
"title": "Restaurant Integration API", | ||
"description": "This API aims to centralize information related to restaurant orders in just one place, providing webhooks so that other systems can make decisions based on order activity" | ||
}, | ||
"work-time-calculator": { | ||
"title": "Work Time Calculator API", | ||
"description": "This is an app built with Spring Boot and Gradle to calculate work time for a given parameter inputs" | ||
}, | ||
"sentiment-analysis": { | ||
"title": "Sentiment Analysis in Portuguese Sentences", | ||
"description": "This project aims at analyzing and predicting sentiments associated with texts written in the Portuguese language through NLP (Natural Language Processing)" | ||
}, | ||
"digital-donations": { | ||
"title": "Digital Donations API", | ||
"description": "REST API responsible for managing donation information. This API was built with NodeJS and Koa.js. The application expects a PostgreSQL database. Docker was used to run the app services" | ||
} | ||
}, | ||
"about": { | ||
"title": "About me", | ||
"position": "Software/Back-end Engineer", | ||
"text": "My passion is creating REST APIs in Python, Node.js, Java, and PHP. This is the area in which I specialize and continuously develop myself every day. I use principles like SOLID, clean architecture, and Design Patterns as premises for creating stable, scalable, and distributed applications. I believe that <span>DevOps</span>, <span>DevSecOps</span>, and <span>CI/CD</span> practices are essential for applications to be developed collaboratively and in an organized manner, significantly reducing potential problems and bugs even before they reach production environments" | ||
}, | ||
"contact": { | ||
"title": "Contact me on" | ||
}, | ||
"footer": { | ||
"website-tools": "This website is powered by" | ||
} | ||
} |
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,47 @@ | ||
{ | ||
"header": { | ||
"home": "Início", | ||
"projects": "Projetos", | ||
"about": "Sobre mim", | ||
"contact": "Contato" | ||
}, | ||
"main_sentence": { | ||
"title": "Impulsionando o mundo digital através dos bastidores", | ||
"description": "Eu construo infraestruturas de backend escaláveis, seguras e integradas" | ||
}, | ||
"description": { | ||
"text": "Eu sou <span_name>Vinicius Mayrink</span_name> e sou um desenvolvedor de backend especializado em criar APIs robustas usando um arsenal de ferramentas, incluindo <span_language>Python</span_language>, <span_language>Java</span_language> e <span_language>Node.js</span_language>. Com um profundo entendimento dos princípios e conceitos de backend, sou proficiente na implementação dos princípios SOLID, arquitetura RESTful e práticas de código limpo para projetar soluções <strong>escláveis</strong> e <strong>eficientes</strong>", | ||
"button": "Veja mais" | ||
}, | ||
"projects": { | ||
"title": "Projetos", | ||
"button-to-github": "Veja no GitHub", | ||
"restaurant": { | ||
"title": "Integração em restaurantes API", | ||
"description": "Esta API tem como objetivo centralizar informações relacionadas a pedidos de restaurantes em um único lugar, fornecendo webhooks para que outros sistemas possam tomar decisões com base na atividade de pedidos" | ||
}, | ||
"work-time-calculator": { | ||
"title": "Calculador de Tempo Trabalhado API", | ||
"description": "Este é um aplicativo construído com Spring Boot e Gradle para calcular o tempo de trabalho para determinados parâmetros de entrada" | ||
}, | ||
"sentiment-analysis": { | ||
"title": "Análise de sentimentos em português", | ||
"description": "Este projeto tem como objetivo analisar e prever sentimentos associados a textos escritos em língua portuguesa através de NLP (Processamento de Linguagem Natural)" | ||
}, | ||
"digital-donations": { | ||
"title": "Doar Digital API", | ||
"description": "API REST responsável por gerenciar informações de doação. Esta API foi construída com NodeJS e Koa.js. A aplicação espera um banco de dados PostgreSQL. Docker foi utilizado para executar os serviços da aplicação" | ||
} | ||
}, | ||
"about": { | ||
"title": "Sobre mim", | ||
"position": "Software/Back-end Engineer", | ||
"text": "Minha paixão é criar APIs REST em Python, Node.js, Java e PHP Essa é a área para o qual me especializo e me desenvolvo a cada dia. Utilizo princípios como SOLID, arquitetura limpa e padrões de design como premissas para criar aplicações estáveis, escaláveis e distribuídas. Acredito que práticas de <span>DevOps</span>, <span>DevSecOps</span> e <span>CI/CD</span> são essenciais para que as aplicações sejam desenvolvidas de forma colaborativa e organizada, reduzindo significativamente problemas e bugs mesmo antes de chegarem aos ambientes de produção" | ||
}, | ||
"contact": { | ||
"title": "Entre em contato" | ||
}, | ||
"footer": { | ||
"website-tools": "Este site foi produzido com" | ||
} | ||
} |
Oops, something went wrong.