Skip to content

Commit

Permalink
Merge pull request #37 from blopa/fix/translations
Browse files Browse the repository at this point in the history
Fix builder page translations
  • Loading branch information
blopa authored May 22, 2021
2 parents e3412e0 + 2e2b6f9 commit 1a8fb03
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 58 deletions.
3 changes: 3 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,9 @@ The following `JSON` is a result of [this Google Spreadsheet](https://docs.googl
![ScreenShot](https://raw.githubusercontent.com/blopa/Resume-Builder/main/screenshots/v4/screenshot_3.png)

## Release Notes
- **v4.0.7:**
- Fix builder page translations.
- Add more Spanish translations (Thanks Leandro).
- **v4.0.6:**
- Create form to create a JSON resume from scratch
- Add theme switcher in the sidebar
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "resume-builder",
"version": "4.0.6",
"version": "4.0.7",
"description": "Resume Builder",
"main": "index.js",
"author": "Pablo Pirata",
Expand Down
4 changes: 2 additions & 2 deletions src/components/DynamicForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const DynamicForm = ({
color="primary"
variant="contained"
>
{`+ ${key}`}
{`+ ${intl.formatMessage({ id: `builder.${key}` })}`}
</Button>
{currQuantity > 1 && (
<Button
Expand All @@ -112,7 +112,7 @@ const DynamicForm = ({
variant="contained"
className={classes.removeButton}
>
{`- ${key}`}
{`- ${intl.formatMessage({ id: `builder.${key}` })}`}
</Button>
)}
</div>
Expand Down
108 changes: 54 additions & 54 deletions src/intl/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,61 +40,61 @@
"disclaimer_description_1": "Este software tiene licencia del MIT y se proporciona 'tal cual', sin garantía de ningún tipo, expresa o implícita, incluyendo pero no limitado a, las garantías de comerciabilidad, adecuación para un propósito particular y no infracción. En ningún caso los autores o los derechos de autor titulares será responsable de cualquier reclamación, daño u otra responsabilidad, ya sea en una acción de contrato, agravio o de otra manera, que surge de, fuera de o en conexión con el software o el uso u otras operaciones en el software.",
"disclaimer_description_2": "Verifique todos los datos en su currículum antes de compartirlo con otros, no me hago responsable de la información compartida incorrectamente.",
"builder": {
"previous": "Previous",
"next": "Next",
"basics": "Basics",
"work": "Work",
"volunteer": "Volunteer",
"education": "Education",
"awards": "Awards",
"certificates": "Certificates",
"publications": "Publications",
"skills": "Skills",
"languages": "Languages",
"interests": "Interests",
"references": "References",
"projects": "Projects",
"profiles": "Profiles",
"name": "Name",
"label": "Label",
"image": "Image URL",
"email": "E-mail",
"phone": "Phone",
"previous": "Anterior",
"next": "Próximo",
"basics": "Datos básicos",
"work": "Trabaja",
"volunteer": "Voluntario",
"education": "Educación",
"awards": "Premios",
"certificates": "Certificados",
"publications": "Publicaciones",
"skills": "Habilidades",
"languages": "Idiomas",
"interests": "Intereses",
"references": "Referencias",
"projects": "Proyectos",
"profiles": "Perfiles",
"name": "Nombre",
"label": "Etiqueta",
"image": "URL de la imagen",
"email": "Correo electrónico",
"phone": "Teléfono",
"url": "URL",
"summary": "Summary",
"address": "Address",
"postalCode": "Postal code",
"city": "City",
"countryCode": "Country code",
"region": "Region",
"network": "Network",
"username": "Username",
"location": "Location",
"description": "Description",
"position": "Position",
"startDate": "Start date",
"endDate": "End date",
"highlights": "Highlights",
"organization": "Organization",
"institution": "Institution",
"area": "Area",
"studyType": "Study type",
"score": "Score",
"courses": "Courses",
"title": "Title",
"date": "Date",
"awarder": "Awarder",
"issuer": "Issuer",
"publisher": "Publisher",
"releaseDate": "Release date",
"level": "Level",
"keywords": "Keywords",
"language": "Language",
"fluency": "Fluency",
"reference": "Reference",
"roles": "Roles",
"entity": "Entity",
"type": "Type"
"summary": "Resumen",
"address": "Dirección",
"postalCode": "Código postal",
"city": "Ciudad",
"countryCode": "Código de país",
"region": "Región",
"network": "Red",
"username": "Usuario",
"location": "Localización",
"description": "Descripción",
"position": "Posición",
"startDate": "Fecha de inicio",
"endDate": "Fecha de finalización",
"highlights": "Reflejos",
"organization": "Organización",
"institution": "Institución",
"area": "Área",
"studyType": "Tipo de estudio",
"score": "Nota",
"courses": "Cursos",
"title": "Título",
"date": "Fecha",
"awarder": "Premiador",
"issuer": "Editor",
"publisher": "Editor",
"releaseDate": "Fecha de lanzamiento",
"level": "Nivel",
"keywords": "Palabras clave",
"language": "Idioma",
"fluency": "Fluidez",
"reference": "Referencia",
"roles": "Funciones",
"entity": "Entidad",
"type": "Tipo"
},
"error": {
"something_went_wrong_parsing": "¡Vaya! Se produjo un error al descargar la hoja de cálculo desde la URL proporcionada. Intente descargar la hoja de cálculo manualmente y cárguela aquí.",
Expand Down

0 comments on commit 1a8fb03

Please sign in to comment.