Skip to content

Commit edc44ec

Browse files
authored
Merge pull request #239 from J1-takai/gh-pages
Design With FontForge: Japanese Translation
2 parents efdbd88 + 98a1c5a commit edc44ec

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+4712
-1
lines changed

Diff for: _includes/footer_ja-JP.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!-- FOOTER -->
2+
<footer>
3+
4+
<div class="inner">
5+
<p>最終更新日 {{ site.time | date_to_long_string }}。<a href="https://github.com/fontforge/designwithfontforge.com">このサイト</a> や以下の <a class="editthispage" href="https://github.com/fontforge/designwithfontforge.com/blob/gh-pages{{ page.url | replace: '.html', '.md' }}" target="_blank">各ページ</a> の改善活動へのご協力をお願いします。</p>
6+
<p>著作権/Copyright &copy; 2012 - 2017, The Design With FontForge <a href="https://github.com/fontforge/designwithfontforge.com/blob/gh-pages/AUTHORS.txt">著作者の方々</a>.</p>
7+
<p><a href="//designwithfontforge.com"><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">Design With FontForge</span></a>’ by <a xmlns:cc="http://creativecommons.org/ns#" href="http://designwithfontforge.com" property="cc:attributionName" rel="cc:attributionURL">the FontForge Community</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/deed.en_US">CC BY-SA 3.0</a>.
8+
</div>
9+
10+
</footer>

Diff for: _includes/header-masthead_ja-JP.html

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{% assign urlList = site.pages | map: 'url' %}
2+
3+
<header>
4+
<div class="inner">
5+
<h1><a href="/">{{ site.title }}</a></h1>
6+
<h2>{{ site.subtitle }}</h2>
7+
<div class="lang">
8+
<a href="#" class="lang">[English]</a>&nbsp;|&nbsp;
9+
<a href="
10+
{% assign CNurl = page.name | replace: '.md', '.html' | prepend: '/fr-FR/' %}
11+
{% if urlList contains CNurl %}
12+
{{ page.name | prepend: '../fr-FR/' | replace: '.md', '.html' }}
13+
{% else %}
14+
../fr-FR/index.html
15+
{% endif %}
16+
"class="lang">[Français]</a>&nbsp;|&nbsp;
17+
<a href="
18+
{% assign CNurl = page.name | replace: '.md', '.html' | prepend: '/zh-CN/' %}
19+
{% if urlList contains CNurl %}
20+
{{ page.name | prepend: '../zh-CN/' | replace: '.md', '.html' }}
21+
{% else %}
22+
../zh-CN/index.html
23+
{% endif %}
24+
"class="lang">[简体中文版]</a>&nbsp;|&nbsp;
25+
<a href="
26+
{% assign TWurl = page.name | replace: '.md', '.html' | prepend: '/zh-TW/' %}
27+
{% if urlList contains TWurl %}
28+
{{ page.name | prepend: '../zh-TW/' | replace: '.md', '.html' }}
29+
{% else %}
30+
../zh-TW/index.html
31+
{% endif %}
32+
" class="lang">[正體中文版]</a>
33+
<a href="
34+
{% assign JPurl = page.name | replace: '.md', '.html' | prepend: '/ja-JP/' %}
35+
{% if urlList contains JPurl %}
36+
{{ page.name | prepend: '../ja-JP/' | replace: '.md', '.html' }}
37+
{% else %}
38+
../ja-JP/index.html
39+
{% endif %}
40+
" class="lang">[日本語版]</a>
41+
</div>
42+
<div class="ebook">Download as <a href="/ebook/design-with-fontforge_en-US.epub" class="ebook" rel="nofollow">[ePUB]</a>&nbsp;|&nbsp;<a href="/ebook/design-with-fontforge_en-US.mobi" class="ebook" rel="nofollow">[MOBI]</a>&nbsp;|&nbsp;<a href="/ebook/design-with-fontforge_en-US.pdf" class="ebook" rel="nofollow">[PDF]</a></div>
43+
<a href="https://github.com/fontforge/designwithfontforge.com" class="button" target="_blank"><small>View project on</small>GitHub</a>
44+
</div>
45+
</header>

Diff for: _layouts/bookpage_ja-JP.html

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
{% include html-start.html %}
2+
3+
{% include header-masthead_ja-JP.html %}
4+
5+
{% assign pageList = site.pages | sort: 'weight' %}
6+
7+
<div id="content-wrapper">
8+
<div class="inner clearfix">
9+
<section id="main-content">
10+
<h1>{{ page.title }}</h1>
11+
{{ content }}
12+
<nav id="post-nav" class="clearfix">
13+
{% for p in pageList reversed %}
14+
15+
{% if p.path contains 'ja-JP' %}
16+
17+
{% if currentPost and p.title != 'Design With FontForge' %}
18+
<a class="prev" href="{{p.url}}">
19+
<span>Prev</span>
20+
<span><h3>{{p.title}}</h3></span>
21+
</a>
22+
{% assign currentPost = false %}
23+
{% break %}
24+
{% endif %}
25+
26+
{% if p.url == page.url %}
27+
{% assign currentPost = true %}
28+
{% else %}
29+
{% assign currentPost = false %}
30+
{% endif %}
31+
32+
{% endif %}
33+
34+
{% endfor %}
35+
36+
{% assign currentPost = false %}
37+
38+
{% for p in pageList %}
39+
40+
{% if p.path contains 'ja-JP' %}
41+
42+
{% if currentPost and p.title != 'Design With FontForge' %}
43+
<a class="next" href="{{p.url}}">
44+
<span>Next</span>
45+
<span><h3>{{p.title}}</h3></span>
46+
</a>
47+
{% assign currentPost = false %}
48+
{% break %}
49+
{% endif %}
50+
51+
{% if p.url == page.url %}
52+
{% assign currentPost = true %}
53+
{% else %}
54+
{% assign currentPost = false %}
55+
{% endif %}
56+
57+
{% endif %}
58+
59+
{% endfor %}
60+
</nav>
61+
</section>
62+
63+
<aside id="sidebar">
64+
<!-- <a href="" class="button">
65+
<small>Download book as</small>
66+
PDF
67+
</a>-->
68+
<ol class="rectangle-list">
69+
{% for p in pageList %}
70+
{% if p.path contains 'ja-JP' and p.title != 'Design With FontForge' %}
71+
<li>
72+
<a {% if p.url == page.url %}class="active"{% endif %} href="{{ p.url }}">
73+
{{ p.title }}
74+
</a>
75+
</li>
76+
{% endif %}
77+
{% endfor %}
78+
</ol>
79+
<p>本書は「自由」文化の所産で、<a href="//github.com/fontforge/designwithfontforge.com/" target="_blank">GitHub 上で管理されています</a>。「不具合修正」「ご提案」「訂正」などをお寄せください。</p>
80+
<p><a class"" href="https://github.com/fontforge/designwithfontforge.com/commits/gh-pages">最新の変更内容はこちらです</a></p>
81+
<p><a class="editthispage" href="https://github.com/fontforge/designwithfontforge.com/blob/gh-pages{{ page.url | replace: '.html', '.md' }}" target="_blank">ページを編集</a> (<a href="https://github.com/fontforge/designwithfontforge.com">詳細はこちら</a>)</p></p>
82+
</aside>
83+
</div>
84+
</div>
85+
86+
{% include footer.html %}
87+
88+
{% include html-end.html %}

Diff for: _layouts/homepage_ja-JP.html

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{% include html-start.html %}
2+
3+
{% include header-masthead_ja-JP.html %}
4+
5+
6+
<div id="content-wrapper">
7+
<div class="inner clearfix">
8+
<section id="main-content">
9+
10+
<p>{{ content }}</p>
11+
</section>
12+
13+
<aside id="sidebar">
14+
<!-- <a href="" class="button">
15+
<small>Download book as</small>
16+
PDF
17+
</a> -->
18+
<p>本書は「自由」文化の所産で、<a href="//github.com/fontforge/designwithfontforge.com/" target="_blank">GitHub 上で管理されています</a>。「不具合修正」「ご提案」「訂正」などをお寄せください。</p>
19+
<p><a class="editthispage" href="https://github.com/fontforge/designwithfontforge.com/blob/gh-pages{{ page.url | replace: '.html', '.md' }}" target="_blank">ページを編集</a> (<a href="https://github.com/fontforge/designwithfontforge.com">詳細はこちら</a>)</p></p>
20+
</aside>
21+
22+
</div>
23+
</div>
24+
25+
{% include footer.html %}
26+
27+
{% include html-end.html %}

Diff for: ebook/create_books.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ BOOKS="$@"
1010

1111
if [ $# -lt 1 ]; then
1212
echo 1>&2 "Building all books"
13-
BOOKS="en-US zh-CN fr-FR"
13+
BOOKS="en-US zh-CN fr-FR ja-JP"
1414
fi
1515

1616
sed -i -e 's|2012 - [2][0-9][0-9][0-9]|2012 - '$(date '+%Y')'|g' cover_template.svg # Insert current year into book cover

Diff for: ebook/honkit-ja-JP/SUMMARY.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
published: false
3+
---
4+
5+
# Summary
6+
7+
* [はじめに](Introduction.md)
8+
* [フォントとは](What_Is_a_Font.md)
9+
* [自分の目を信頼する](Trusting_Your_Eyes.md)
10+
* [プロジェクトを計画する](Planning_Your_Project.md)
11+
* [エム(EM)スクエア](The_EM_Square.md)
12+
* [FontForge をインストールする](Installing_Fontforge.md)
13+
* [FontForge の設定](Configuring_FontForge.md)
14+
* [ユーザー・インターフェース(UI)の概要](General_UI_Introduction.md)
15+
* [FontForge の描画ツールを使用する](Using_the_Fontforge_Drawing_Tools.md)
16+
* [螺旋ツールで描画する](Drawing_With_Spiro.md)
17+
* [文字「o」と「n」を作成する](Creating_o_and_n.md)
18+
* [フォント情報 と メタデータ](Font_Info_&_Metadata.md)
19+
* [単語間スペース](Word_Space.md)
20+
* [フォントの DNA を生み出す](Creating_Your_Types_Dna.md)
21+
* [大文字](Capital_Letters.md)
22+
* [行間スペース](Line_Spacing.md)
23+
* [句読点と記号](Punctuation_and_Symbols.md)
24+
* [小文字を完成させる](Completing_the_Lower_Case.md)
25+
* [発音区別符号とアクセント記号](Diacritics_and_Accents.md)
26+
* [数字](Numerals.md)
27+
* [太字、その他の文字太さ](Bold_and_Other_Weights.md)
28+
* [斜字体](Italic.md)
29+
* [スペース、メトリクス、および カーニング](Spacing_Metrics_and_Kerning.md)
30+
* [作成したフォントの検証](Making_Sure_Your_Font_Works_Validation.md)
31+
* [最終出力、フォント・ファイルの生成](The_Final_Output_Generating_Font_Files.md)
32+
* [FontForge に問題が発生したら](When_Things_Go_Wrong_With_Fontforge_Itself.md)
33+
* [デーヴァナーガリー文字書体のデザイン](Designing_Devanagari_Typefaces.md)
34+
* [他のプログラムからグリフをインポートする](Importing_Glyphs_from_Other_Programs.md)
35+
* [アラビア語フォントにグリフを追加する](Adding_Glyphs_to_an_Arabic_Font.md)
36+
* [参考文献](Further_Reading.md)
37+
* [用語集](Glossary.md)
38+
* [フォント・エディター・ツールの歴史](Font_Editor_history.md)
39+
* [正誤表](Errata_memo.md)
40+
* [日本語訳語メモ](Word_List_JA_translation.md)

Diff for: ebook/honkit-ja-JP/book.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"title": "Design With FontForge(日本語版)",
3+
"description": "FontForge を用いた新しい書体デザインのためのガイドブックです。",
4+
"language": "ja",
5+
"pdf": {
6+
"paperSize": "a4"
7+
},
8+
"structure": {
9+
"readme": "Introduction.md",
10+
"glossary": "dontuseaglossary.md"
11+
}
12+
}

Diff for: ebook/honkit-ja-JP/cover.jpg

349 KB
Loading

Diff for: ebook/honkit-ja-JP/cover_small.jpg

7.56 KB
Loading

Diff for: ebook/honkit-ja-JP/styles/ebook.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ja-JP-weightlist.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
published: false
3+
---
4+
5+
| Weight | Page     |
6+
|--------|--------------------------------------------|
7+
| 0 | Index     |
8+
| 1 | はじめに       |
9+
| 3 | フォントとは       |
10+
| 6 | 自分の目を信頼する       |
11+
| 9 | プロジェクトを計画する       |
12+
| 12 | エム(EM)スクエア       |
13+
| 15 | FontForge をインストールする       |
14+
| 16 | FontForge の設定     |
15+
| 17 | ユーザー・インターフェース(UI)の概要   |
16+
| 18 | FontForge の描画ツールを使用する   |
17+
| 21 | 螺旋ツールで描画する   |
18+
| 24 | 文字「o」と「n」を作成する   |
19+
| 27 | フォント情報 と メタデータ   |
20+
| 30 | 単語間スペース |
21+
| 33 | フォントの DNA を生み出す |
22+
| 36 | 大文字     |
23+
| 39 | 行間スペース |
24+
| 42 | 句読点と記号 |
25+
| 45 | 小文字を完成させる     |
26+
| 48 | 発音区別符号とアクセント記号 |
27+
| 51 | 数字   |
28+
| 54 | 太字、その他の文字太さ |
29+
| 57 | 斜字体 |
30+
| 60 | スペース、メトリクス、および カーニング  |
31+
| 63 | 作成したフォントの検証          |
32+
| 66 | 最終出力、フォント・ファイルの生成   |
33+
| 69 | FontForge に問題が発生したら |
34+
| 72 | デーヴァナーガリー文字書体のデザイン |
35+
| 75 | 他のプログラムからグリフをインポートする |
36+
| 78 | アラビア語フォントにグリフを追加する |
37+
| 81 | 参考文献 |
38+
| 84 | 用語集     |
39+
| 87 | フォント・エディター・ツールの歴史 |
40+
| 90 | 正誤表 Errata               |
41+
| 93 | 日本語訳語メモ Word List JA translation |

0 commit comments

Comments
 (0)