10 Commits

Author SHA1 Message Date
Paul T
04bc4ffbd7 chore: update version used in templates 2024-05-14 12:02:20 -04:00
Paul T
46a83e51c0 chore: update images 2024-05-14 12:01:37 -04:00
Paul T
377c0d9ff6 chore: update version 2024-05-14 12:01:26 -04:00
Paul T
8b27dbdaf2 fix: add sincerely to lang.toml
Added "Sincerely" in the coverletter to the list of translated words. Fixes #27
2024-05-14 11:52:51 -04:00
Paul T
21cdfb557b format: auto-formatting 2024-05-14 11:52:50 -04:00
Paul T
2f5ad86c6f chore: increment versions in templates 2024-05-14 11:52:50 -04:00
Paul T
07449e0394 Merge pull request #28 from lpchaim/language-portuguese
Add Portuguese translation
2024-05-14 09:41:31 -04:00
Lucas Chaim
9526f6a566 Add Portuguese translation
This PR adds Portuguese as a language option, language code pt.
2024-05-13 20:20:31 -03:00
Paul T
a7ce85d877 Merge pull request #25 from DerFetzer/patch-1
Support Source Sans Pro font with alternative name
2024-04-22 07:09:21 -07:00
DerFetzer
577ad93af7 Support Source Sans font with alternative name 2024-04-22 14:57:02 +02:00
9 changed files with 19 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 205 KiB

After

Width:  |  Height:  |  Size: 205 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 210 KiB

After

Width:  |  Height:  |  Size: 209 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 210 KiB

After

Width:  |  Height:  |  Size: 210 KiB

View File

@@ -7,6 +7,7 @@ dear = "Dear"
cover-letter = "Cover Letter"
attached = "Attached"
curriculum-vitae = "Curriculum Vitae"
sincerely = "Sincerely"
[lang.de]
resume = "Lebenslauf"
@@ -14,6 +15,7 @@ dear = "Sehr geehrte"
cover-letter = "Anschreiben"
attached = "Angehängt"
curriculum-vitae = "Lebenslauf"
sincerely = "Aufrichtig"
[lang.gr]
resume = "Βιογραφικό"
@@ -21,6 +23,15 @@ dear = "Αγαπητέ"
cover-letter = "Συνοδευτική Επιστολή"
attached = "Συνημμένο"
curriculum-vitae = "Βιογραφικό"
sincerely = "Με εκτίμηση"
[lang.pt]
resume = "Currículo"
dear = "Caro(a)"
cover-letter = "Carta de Apresentação"
attached = "Em anexo"
curriculum-vitae = "Currículo"
sincerely = "Atenciosamente"
[lang.sp]
resume = "Currículum"
@@ -28,3 +39,4 @@ dear = "Estimado"
cover-letter = "Carta de Presentación"
attached = "Adjunto"
curriculum-vitae = "Currículum"
sincerely = "Sinceramente"

View File

@@ -150,7 +150,7 @@
)
set text(
font: ("Source Sans Pro"),
font: ("Source Sans Pro", "Source Sans 3"),
lang: language,
size: 11pt,
fill: color-darkgray,
@@ -601,7 +601,7 @@
let letter-conclusion = {
align(bottom)[
#pad(bottom: 2em)[
#text(weight: "light")[Sincerely,] \
#text(weight: "light")[#linguify("sincerely", from: lang_data)#sym.comma] \
#text(weight: "bold")[#author.firstname #author.lastname] \ \
#text(weight: "light", style: "italic")[ #linguify(
"attached",

View File

@@ -1,4 +1,4 @@
#import "@preview/modern-cv:0.2.0": *
#import "@preview/modern-cv:0.3.1": *
#show: coverletter.with(
author: (

View File

@@ -1,4 +1,4 @@
#import "@preview/modern-cv:0.2.0": *
#import "@preview/modern-cv:0.3.1": *
#show: coverletter.with(
author: (
@@ -15,7 +15,7 @@
),
),
profile-picture: none,
language: "en"
language: "sp",
)
#hiring-entity-info(entity-info: (

View File

@@ -1,4 +1,4 @@
#import "@preview/modern-cv:0.2.0": *
#import "@preview/modern-cv:0.3.1": *
#show: resume.with(
author: (

View File

@@ -1,6 +1,6 @@
[package]
name = "modern-cv"
version = "0.3.0"
version = "0.3.1"
compiler = "0.11.0"
entrypoint = "lib.typ"
authors = ["Paul Tsouchlos <https://github.com/DeveloperPaul123>"]