1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
<?php
/******************************************************************************/
/* Each entry of that file can be associated with a comment to indicate its */
/* state. When there is no comment, it means the entry is fully translated. */
/* The recognized comments are (comment matching is case-insensitive): */
/* + TODO: the entry has never been translated. */
/* + DIRTY: the entry has been translated but needs to be updated. */
/* + IGNORE: the entry does not need to be translated. */
/* When a comment is not recognized, it is discarded. */
/******************************************************************************/
return array(
'about' => array(
'_' => 'FreshRSSについて',
'agpl3' => '<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL 3</a>', // IGNORE
'bug_reports' => array(
'environment_information' => array(
'_' => 'System information', // TODO
'browser' => 'Browser', // TODO
'database' => 'Database', // TODO
'server_software' => 'Server software', // TODO
'version_frss' => 'FreshRSS version', // TODO
'version_php' => 'PHP version', // TODO
),
),
'bugs_reports' => 'バグレポート',
'credits' => 'クレジット',
'credits_content' => 'いくつかのデザイン要素は<a href="http://twitter.github.io/bootstrap/">Bootstrap</a>に由来しますが、FreshRSSはこのフレームワークを使用していません。<a href="https://gitlab.gnome.org/Archive/gnome-icon-theme-symbolic">アイコン</a>は<a href="https://www.gnome.org/">GNOMEプロジェクト</a>に由来します。<em>Open Sans</em>フォントは<a href="https://fonts.google.com/specimen/Open+Sans">Steve Matteson</a>によって作成されました。FreshRSSはPHPフレームワークの<a href="https://framagit.org/marienfressinaud/MINZ">Minz</a>を採用しています。',
'documentation' => 'ドキュメント',
'freshrss_description' => 'FreshRSSはセルフホストできるRSSフィード収集ツールです。強力なツールで、軽量で簡単に使え、豊富な設定が特徴です。',
'github' => '<a href="https://github.com/FreshRSS/FreshRSS/issues">Githubへお願いします</a>',
'license' => 'ライセンス',
'project_website' => 'プロジェクトのwebサイト',
'title' => 'FreshRSSについて',
'version' => 'バージョン',
),
'feed' => array(
'empty' => '表示できる記事がありません',
'received' => array(
'before_yesterday' => '一昨日以前',
'today' => '今日',
'yesterday' => '昨日',
),
'rss_of' => '%s のRSSフィード',
'title' => 'メイン',
'title_fav' => 'お気に入り',
'title_global' => 'グローバルビュー',
),
'log' => array(
'_' => 'ログ',
'clear' => 'ログを消去する',
'empty' => 'ログファイルは空です',
'title' => 'ログ',
),
'menu' => array(
'about' => 'FreshRSSについて',
'before_one_day' => '一日以上前',
'before_one_week' => '一週間以上前',
'bookmark_query' => '現在のブックマーククエリ',
'favorites' => 'お気に入り (%s)',
'global_view' => 'グローバルビュー',
'important' => '重要なフィード',
'main_stream' => 'メイン',
'mark_all_read' => 'すべての記事を既読にする',
'mark_cat_read' => 'カテゴリを既読にする',
'mark_feed_read' => 'フィードを既読にする',
'mark_selection_unread' => '選択した記事を未読にする',
'newer_first' => '最新の記事を先頭にする',
'non-starred' => 'お気に入りに登録されてない記事を表示する',
'normal_view' => 'ノーマルビュー',
'older_first' => '最古の記事を先頭にする',
'queries' => 'ユーザークエリ',
'read' => '既読の記事を表示する',
'reader_view' => 'リーディングビュー',
'rss_view' => 'RSSフィード',
'search_short' => '検索',
'sort' => array(
'_' => '並べ替え',
'date_asc' => '公開日順 1→9',
'date_desc' => '公開日順 9→1',
'id_asc' => '新着を最後に並べる',
'id_desc' => '新着を最初に並べる',
'link_asc' => 'リンクURL順 A→Z',
'link_desc' => 'リンクURL順 Z→A',
'rand' => 'ランダムに並べる',
'title_asc' => 'タイトル順 A→Z',
'title_desc' => 'タイトル順 Z→A',
),
'starred' => 'お気に入りを表示する',
'stats' => '統計',
'subscription' => '購読フィードの管理',
'tags' => 'ラベル',
'unread' => '未読の記事を表示する',
),
'share' => '共有',
'tag' => array(
'related' => '記事のタグ',
),
'tos' => array(
'title' => '利用規約',
),
);
|