mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-29 19:51:20 -04:00
* Clarify MINZ usage MINZ (archived, read-only) is not a dependency of FreshRSS, which would be very concerning. Instead, FreshRSS copied MINZ and has evolved it since then under the same license. Ref: https://github.com/FreshRSS/FreshRSS/discussions/7425 * Move credits to README * Delete credits from web UI * Additional changes --------- Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
103 lines
4.0 KiB
PHP
103 lines
4.0 KiB
PHP
<?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(
|
|
'_' => 'システム情報',
|
|
'browser' => 'ブラウザ',
|
|
'database' => 'データベース',
|
|
'server_software' => 'サーバーソフトウェア',
|
|
'version_curl' => 'cURL version', // TODO
|
|
'version_frss' => 'FreshRSSバージョン',
|
|
'version_php' => 'PHPバージョン',
|
|
),
|
|
),
|
|
'bugs_reports' => 'バグレポート',
|
|
'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' => '選択した記事を未読にする',
|
|
'mylabels' => 'ラベル',
|
|
'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' => '購読フィードの管理',
|
|
'unread' => '未読の記事を表示する',
|
|
),
|
|
'share' => '共有',
|
|
'tag' => array(
|
|
'related' => '記事のタグ',
|
|
),
|
|
'tos' => array(
|
|
'title' => '利用規約',
|
|
),
|
|
);
|