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
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ ruamel.yaml==0.19.1
sentry-sdk==2.49.0
unidecode==1.4.0
weasyprint==68.0
weblate-fonts==2026.1
weblate-language-data==2026.1
weblate-schemas==2025.6
wlc==1.17.2
Expand Down
43 changes: 0 additions & 43 deletions scripts/fonts.toml

This file was deleted.

30 changes: 0 additions & 30 deletions scripts/update-fonts

This file was deleted.

1 change: 1 addition & 0 deletions weblate_web/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@
"weblate_web.invoices",
"weblate_web.legal",
"weblate_web.crm",
"weblate_fonts",
"wllegal",
"django_countries",
"macros",
Expand Down
6 changes: 3 additions & 3 deletions weblate_web/static/pdf/fonts.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ html {
@font-face {
font-family: Source Sans Pro;
font-weight: 400;
src: url("static:vendor/font-source/TTF/SourceSans3-Regular.ttf");
src: url("static:weblate_fonts/source-sans/ttf/SourceSans3-Regular.ttf");
}
@font-face {
font-family: Source Sans Pro;
font-weight: 700;
src: url("static:vendor/font-source/TTF/SourceSans3-Bold.ttf");
src: url("static:weblate_fonts/source-sans/ttf/SourceSans3-Bold.ttf");
}
@font-face {
font-family: Source Sans Pro;
font-weight: 400;
font-style: italic;
src: url("static:vendor/font-source/TTF/SourceSans3-It.ttf");
src: url("static:weblate_fonts/source-sans/ttf/SourceSans3-It.ttf");
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
125 changes: 0 additions & 125 deletions weblate_web/static/vendor/font-source/source-code-pro.css

This file was deleted.

107 changes: 0 additions & 107 deletions weblate_web/static/vendor/font-source/source-sans-3.css

This file was deleted.

4 changes: 2 additions & 2 deletions weblate_web/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
<link rel="stylesheet" href="{% static "style.css" %}" />
{% endcompress %}

<link rel="stylesheet" href="{% static "vendor/font-source/source-sans-3.css" %}">
<link rel="stylesheet" href="{% static "vendor/font-source/source-code-pro.css" %}">
<link rel="stylesheet" href="{% static "weblate_fonts/source-sans-3.css" %}">
<link rel="stylesheet" href="{% static "weblate_fonts/source-code-pro.css" %}">

<meta name="robots" content="index, follow" />
<title>{% use_macro title %}</title>
Expand Down
Loading