8000 Enable Read-The-Docs and fix any issues with existing translations by lysnikolaou · Pull Request #536 · python/python-docs-el · GitHub
[go: up one dir, main page]

Skip to content

Enable Read-The-Docs and fix any issues with existing translations #536

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Aug 1, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Apply suggestions from code review
Co-authored-by: George Margaritis <gmargaritis@protonmail.com>
  • Loading branch information
lysnikolaou and gmargaritis authored Aug 1, 2024
commit 158b08c48d8d8084a6b39ba7257082bbd8fd983e
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ CPYTHON_CURRENT_COMMIT := 9cbde7c6ce6f7b93301a37f03dfa0c0d45e00a39
CPYTHON_PATH := ./cpython

LANGUAGE := el
TRANLATION_BRANCH := main
TRANSLATION_BRANCH := main
BRANCH := 3.12

EXCLUDED := whatsnew/ c-api/
Expand Down Expand Up @@ -119,7 +119,7 @@ wrap: ensure_prerequisites
@echo "Verify wrapping"
powrap --check --quiet *.po **/*.po

SRCS = $(shell git diff --name-only $(TRANLATION_BRANCH) | grep '.po$$')
SRCS = $(shell git diff --name-only $(TRANSLATION_BRANCH) | grep '.po$$')
# foo/bar.po => $(POSPELL_TMP_DIR)/foo/bar.po.out
DESTS = $(addprefix $(POSPELL_TMP_DIR)/,$(addsuffix .out,$(SRCS)))

Expand Down
0