Skip to content
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

Ask translators for updates #2529

Closed
hadley opened this issue May 10, 2024 · 1 comment
Closed

Ask translators for updates #2529

hadley opened this issue May 10, 2024 · 1 comment
Labels
upkeep maintenance, infrastructure, and similar
Milestone

Comments

@hadley
Copy link
Member

hadley commented May 10, 2024

Get list from GH api — all contributors to .po files

translations <- fs::dir_ls("po")

authors <- function(path) {
  json <- gh::gh(
    "/repos/{owner}/{repo}/commits",
    owner = "r-lib",
    repo = "pkgdown",
    path = path
  )

  authors <- purrr::map_chr(json, c("author", "login"), .default = NA)
  setdiff(unique(authors), "hadley")
}

lapply(translations, authors)

Then add to this issue, asking for help.

@hadley hadley added the upkeep maintenance, infrastructure, and similar label May 10, 2024
@hadley hadley added this to the 2.1.0 milestone May 30, 2024
@hadley
Copy link
Member Author

hadley commented Jun 14, 2024

Done in #2659

@hadley hadley closed this as completed Jun 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
upkeep maintenance, infrastructure, and similar
Projects
None yet
Development

No branches or pull requests

1 participant