-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor i18n and add additional translation keys (#479)
- Loading branch information
Showing
18 changed files
with
517 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,4 @@ rsconnect/ | |
^doc$ | ||
^Meta$ | ||
^\.github | ||
^data-raw$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,88 @@ | ||
Package: learnr | ||
Type: Package | ||
Package: learnr | ||
Title: Interactive Tutorials for R | ||
Version: 0.10.1.9007 | ||
Authors@R: c( | ||
person("Barret", "Schloerke", role = c("aut", "cre"), email = "barret@rstudio.com", | ||
comment = c(ORCID = "0000-0001-9986-114X")), | ||
person("JJ", "Allaire", role = "aut", email = "jj@rstudio.com"), | ||
person("Barbara", "Borges", role = "aut", email = "barbara@rstudio.com"), | ||
person("Angela", "Li", role = "ctb", email = "angelali921@gmail.com", comment = "vignette"), | ||
person("RStudio", role = c("cph", "fnd")), | ||
person(family = "Ajax.org B.V.", role=c("ctb", "cph"), comment= "Ace library"), | ||
person("Zeno", "Rocha", role = c("ctb", "cph"), comment = "clipboard.js library"), | ||
person("Nick", "Payne", role = c("ctb", "cph"), comment = "Bootbox library"), | ||
person("Jake", "Archibald", role = c("ctb", "cph"), comment = "idb-keyval library") | ||
) | ||
Description: Create interactive tutorials using R Markdown. Use a combination | ||
of narrative, figures, videos, exercises, and quizzes to create self-paced | ||
tutorials for learning about R and R packages. | ||
Authors@R: | ||
c(person(given = "Barret", | ||
family = "Schloerke", | ||
role = c("aut", "cre"), | ||
email = "barret@rstudio.com", | ||
comment = c(ORCID = "0000-0001-9986-114X")), | ||
person(given = "JJ", | ||
family = "Allaire", | ||
role = "aut", | ||
email = "jj@rstudio.com"), | ||
person(given = "Barbara", | ||
family = "Borges", | ||
role = "aut", | ||
email = "barbara@rstudio.com"), | ||
person(given = "Garrick", | ||
family = "Aden-Buie", | ||
email = "garrick@rstudio.com", | ||
role = "aut", | ||
comment = c(ORCID = "0000-0002-7111-0077")), | ||
person(given = "Angela", | ||
family = "Li", | ||
role = "ctb", | ||
email = "angelali921@gmail.com", | ||
comment = "vignette"), | ||
person(given = "RStudio", | ||
role = c("cph", "fnd")), | ||
person(family = "Ajax.org B.V.", | ||
role = c("ctb", "cph"), | ||
comment = "Ace library"), | ||
person(given = "Zeno", | ||
family = "Rocha", | ||
role = c("ctb", "cph"), | ||
comment = "clipboard.js library"), | ||
person(given = "Nick", | ||
family = "Payne", | ||
role = c("ctb", "cph"), | ||
comment = "Bootbox library"), | ||
person(given = "Jake", | ||
family = "Archibald", | ||
role = c("ctb", "cph"), | ||
comment = "idb-keyval library")) | ||
Description: Create interactive tutorials using R Markdown. Use | ||
a combination of narrative, figures, videos, exercises, and quizzes to | ||
create self-paced tutorials for learning about R and R packages. | ||
License: Apache License (>= 2.0) | ||
URL: https://rstudio.github.io/learnr/, https://github.com/rstudio/learnr | ||
URL: https://rstudio.github.io/learnr/, | ||
https://github.com/rstudio/learnr | ||
BugReports: https://github.com/rstudio/learnr/issues | ||
Imports: | ||
utils, | ||
parallel, | ||
withr, | ||
rappdirs, | ||
rprojroot, | ||
jsonlite, | ||
checkmate, | ||
curl, | ||
digest, | ||
ellipsis (>= 0.2.0.1), | ||
evaluate, | ||
htmltools (>= 0.3.5), | ||
htmlwidgets, | ||
evaluate, | ||
jsonlite, | ||
knitr (>= 1.14), | ||
markdown, | ||
shiny (>= 1.0), | ||
rmarkdown (>= 1.12.0), | ||
ellipsis (>= 0.2.0.1), | ||
checkmate, | ||
renv (>= 0.8.0), | ||
curl, | ||
parallel, | ||
promises, | ||
digest | ||
rappdirs, | ||
renv (>= 0.8.0), | ||
rlang, | ||
rmarkdown (>= 1.12.0), | ||
rprojroot, | ||
shiny (>= 1.0), | ||
utils, | ||
withr | ||
Suggests: | ||
callr, | ||
httpuv, | ||
later, | ||
shinytest (>= 1.4.0.9002), | ||
testthat (>= 2.1.0) | ||
VignetteBuilder: | ||
knitr | ||
Remotes: | ||
rstudio/htmltools, | ||
rstudio/shinytest | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.1.1 | ||
Suggests: | ||
testthat (>= 2.1.0), | ||
shinytest (>= 1.4.0.9002), | ||
callr, | ||
rlang, | ||
httpuv, | ||
later | ||
VignetteBuilder: knitr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.