Skip to content

add NEWS item for translation#4149

Merged
mattdowle merged 1 commit intomasterfrom
translation-followup
Dec 31, 2019
Merged

add NEWS item for translation#4149
mattdowle merged 1 commit intomasterfrom
translation-followup

Conversation

@MichaelChirico
Copy link
Copy Markdown
Member

@MichaelChirico MichaelChirico commented Dec 31, 2019

Adding the missed NEWS item for #3935. A few minor tweaks to the translation as well.

Script used to record CRAN stats about po:

all_pkg = rownames(available.packages())

n_chunk = 20L
chunk_id = sort(rep(1:n_chunk, length.out = length(all_pkg)))

DT = rbindlist(lapply(1:n_chunk, function(ii) 
  cran_downloads(all_pkg[chunk_id == ii], when = "last-month")))

DT = DT[ , .(count = sum(count)), by = package]
DT = DT[count > 0]
setorder(DT, -count)
cmd_fmt = paste(
  "curl https://github.com/cran/%s/tree/master/po",
  "--head --output /dev/null --silent --fail"
)
for (ii in 1:500) {
  DT[ii, has_po := suppressWarnings(is.null(
    attr(system(sprintf(cmd_fmt, DT$package[ii]), intern = TRUE), 'status')
  ))]
}
DT[ , rank := frank(-count)][]

DT[(has_po)]

@MichaelChirico MichaelChirico added the translation issues/PRs related to message translation projects label Dec 31, 2019
@codecov
Copy link
Copy Markdown

codecov bot commented Dec 31, 2019

Codecov Report

Merging #4149 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master    #4149   +/-   ##
=======================================
  Coverage   99.53%   99.53%           
=======================================
  Files          72       72           
  Lines       13911    13911           
=======================================
  Hits        13847    13847           
  Misses         64       64

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 166e0ba...093fc4d. Read the comment docs.

@mattdowle mattdowle added this to the 1.12.9 milestone Dec 31, 2019
@mattdowle mattdowle merged commit 5a2a02b into master Dec 31, 2019
@mattdowle mattdowle deleted the translation-followup branch December 31, 2019 05:41
@jangorecki jangorecki modified the milestones: 1.12.11, 1.12.9 May 26, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

translation issues/PRs related to message translation projects

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants