mirror of
https://0xacab.org/anarsec/anarsec.guide.git
synced 2025-06-08 06:42:56 -04:00
el strings
This commit is contained in:
parent
b186d25403
commit
1c7c1c6649
12 changed files with 68 additions and 49 deletions
|
@ -143,7 +143,7 @@ class Converter:
|
|||
if self.post_lang == 'fr':
|
||||
markdown_content += f"\n\n# Annexe: Recommendations\n\n{recommendations}\n\n"
|
||||
if self.post_lang == 'el':
|
||||
markdown_content += f"\n\n# Appendix: Recommendations\n\n{recommendations}\n\n"
|
||||
markdown_content += f"\n\n# Παράρτημα: Προτάσεις\n\n{recommendations}\n\n"
|
||||
if self.post_lang == 'pt':
|
||||
markdown_content += f"\n\n# Appendix: Recommendations\n\n{recommendations}\n\n"
|
||||
if self.post_lang == 'ru':
|
||||
|
@ -168,7 +168,7 @@ class Converter:
|
|||
if self.post_lang == 'fr':
|
||||
markdown_content += "\n\n# Annexe: Glossaire\n\n"
|
||||
if self.post_lang == 'el':
|
||||
markdown_content += "\n\n# Appendix: Glossary\n\n"
|
||||
markdown_content += "\n\n# Παράρτημα: Γλωσσάρι\n\n"
|
||||
if self.post_lang == 'pt':
|
||||
markdown_content += "\n\n# Appendix: Glossary\n\n"
|
||||
if self.post_lang == 'ru':
|
||||
|
@ -205,6 +205,11 @@ class Converter:
|
|||
category = 'Défensif'
|
||||
if category == 'Offensive':
|
||||
category = 'Offensif'
|
||||
if self.post_lang == 'el':
|
||||
if category == 'Defensive':
|
||||
category = 'Άμυνα'
|
||||
if category == 'Offensive':
|
||||
category = 'Επίθεση'
|
||||
|
||||
# Build the full typst file
|
||||
full_typst_path = pathlib.Path(workingDirectory) / f"{self.post_id}-full.typ"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue