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
2 changes: 1 addition & 1 deletion book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ title = "The Book of sbt"
theme = "theme"
default-theme = "light"
additional-css = [
"src/reference/custom-202410.css",
"src/reference/custom-202509.css",
"src/reference/mdbook-admonish.css",
"theme/language-picker.css"
]
Expand Down
10 changes: 9 additions & 1 deletion po/summary/getting-started/why-sbt-exists.ja.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: The Book of sbt\n"
"POT-Creation-Date: 2025-09-15T01:45:08-04:00\n"
"PO-Revision-Date: 2025-09-15 00:47-0400\n"
"PO-Revision-Date: 2025-09-15 03:29-0400\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ja\n"
Expand Down Expand Up @@ -135,13 +135,21 @@ msgid ""
"Google's Bazel, Meta's Buck, and Apple's SwiftPM use DSL to define the "
"subproject."
msgstr ""
"sbt はサブプロジェクトとタスクグラフを宣言するのに Scala 言語をベースとする "
"build.sbt DSL を採用する。昨今では、YAML や XML といった設定形式の代わりに "
"DSL を使っていることは sbt に限らない。Gradle、Google 由来の Bazel 、Meta の "
"Buck、Apple の SwiftPM など多くのビルドツールが DSL を用いてサブプロジェクト"
"を定義する。"

#: src/reference/guide/why-sbt-exists.md:48
msgid ""
"`build.sbt` can start almost like a YAML file, declaring just `scalaVersion` "
"and `libraryDependencies`, but it can scale as your need for the build "
"system grows:"
msgstr ""
"`build.sbt` は、`scalaVersion` と `libraryDependencies` のみを宣言すればあた"
"かも YAML ファイルのように始めることができるが、ビルドシステムへの要求が高度"
"になってもスケールすることができる。"

#: src/reference/guide/why-sbt-exists.md:51
msgid ""
Expand Down
78 changes: 78 additions & 0 deletions src/reference/custom-202509.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
html:lang(en) {
font-family: "Lora", 'serif';
}

html:lang(zh-cn) {
font-family: "Lora", "Noto Serif", 'serif';
}

html:lang(ja) {
font-family: "Lora", "游明朝体", "Yu Mincho", YuMincho, "Noto Serif", serif;
}

h1 {
font-family: 'Linux Biolinum', "Noto Serif", 'serif';
}

h1:lang(en) {
font-family: 'Linux Biolinum', 'serif';
}

:root {
font-size: 80%;
}

pre {
border: solid 1px lightgray;
line-height: 1.8rem;
font-weight: 500;
}

code {
font-family: 'Inconsolata', monospace !important;
}

p code {
font-weight: 600;
}

li code {
font-weight: 600;
}

h1.menu-title:lang(en) {
font-family: "Lora",
'serif';
font-size: 1.5rem;
}

h1.menu-title:lang(ja) {
font-family: "Lora",
"游明朝体", "Yu Mincho", YuMincho,
"Noto Serif", 'serif';
font-size: 1.5rem;
}

h1.menu-title:lang(zh-cn) {
font-family: "Lora",
"Noto Serif", 'serif';
font-size: 1.5rem;
}

h2 {
font-family: 'Linux Biolinum',
"Noto Serif", 'serif';
}

h2:lang(en) {
font-family: 'Linux Biolinum', 'serif';
}

h3 {
font-family: 'Linux Biolinum',
"Noto Serif", 'serif';
}

h3:lang(en) {
font-family: 'Linux Biolinum', 'serif';
}