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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
<?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(
'_' => 'About', // IGNORE
'agpl3' => '<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL 3</a>', // IGNORE
'bug_reports' => array(
'environment_information' => array(
'_' => 'System information', // IGNORE
'browser' => 'Browser', // IGNORE
'database' => 'Database', // IGNORE
'server_software' => 'Server software', // IGNORE
'version_curl' => 'cURL version', // IGNORE
'version_frss' => 'FreshRSS version', // IGNORE
'version_php' => 'PHP version', // IGNORE
),
),
'bugs_reports' => 'Bug reports', // IGNORE
'documentation' => 'Documentation', // IGNORE
'freshrss_description' => 'FreshRSS is a self-hostable RSS aggregator and reader. It allows you to read and follow several news websites at a glance without the need to browse from one website to another. FreshRSS is lightweight, configurable, and easy to use.', // IGNORE
'github' => '<a href="https://github.com/FreshRSS/FreshRSS/issues">on GitHub</a>', // IGNORE
'license' => 'License', // IGNORE
'project_website' => 'Project website', // IGNORE
'title' => 'About', // IGNORE
'version' => 'Version', // IGNORE
),
'feed' => array(
'empty' => 'There are no articles to show.', // IGNORE
'published' => array(
'_' => 'Published', // IGNORE
'future' => 'Published in the future', // IGNORE
'today' => 'Published today', // IGNORE
'yesterday' => 'Published yesterday', // IGNORE
),
'received' => array(
'_' => 'Received', // IGNORE
'today' => 'Received today', // IGNORE
'yesterday' => 'Received yesterday', // IGNORE
),
'rss_of' => 'RSS feed of %s', // IGNORE
'title' => 'Main stream', // IGNORE
'title_fav' => 'Favorites',
'title_global' => 'Global view', // IGNORE
'userModified' => array(
'_' => 'Modified by user', // IGNORE
'today' => 'Modified by user today', // IGNORE
'yesterday' => 'Modified by user yesterday', // IGNORE
),
),
'log' => array(
'_' => 'Logs', // IGNORE
'clear' => 'Clear the logs', // IGNORE
'empty' => 'Log file is empty', // IGNORE
'title' => 'Logs', // IGNORE
),
'menu' => array(
'about' => 'About FreshRSS', // IGNORE
'before_one_day' => 'Older than one day', // IGNORE
'before_one_week' => 'Older than one week', // IGNORE
'bookmark_query' => 'Bookmark current query', // IGNORE
'favorites' => 'Favorites (%s)',
'global_view' => 'Global view', // IGNORE
'important' => 'Important feeds', // IGNORE
'main_stream' => 'Main stream', // IGNORE
'mark_all_read' => 'Mark all as read', // IGNORE
'mark_cat_read' => 'Mark category as read', // IGNORE
'mark_feed_read' => 'Mark feed as read', // IGNORE
'mark_selection_unread' => 'Mark selection as unread', // IGNORE
'mylabels' => 'My labels', // IGNORE
'newer_first' => 'Newer first', // IGNORE
'non-starred' => 'Show non-favorites',
'normal_view' => 'Normal view', // IGNORE
'older_first' => 'Oldest first', // IGNORE
'queries' => 'User queries', // IGNORE
'read' => 'Show read', // IGNORE
'reader_view' => 'Reading view', // IGNORE
'rss_view' => 'RSS feed', // IGNORE
'search_short' => 'Search', // IGNORE
'sort' => array(
'_' => 'Sorting criteria', // IGNORE
'c' => array(
'name_asc' => 'Category, feed titles A→Z', // IGNORE
'name_desc' => 'Category, feed titles Z→A', // IGNORE
),
'date_asc' => 'Publication date 1→9', // IGNORE
'date_desc' => 'Publication date 9→1', // IGNORE
'f' => array(
'name_asc' => 'Feed title A→Z', // IGNORE
'name_desc' => 'Feed title Z→A', // IGNORE
),
'id_asc' => 'Freshly received last', // IGNORE
'id_desc' => 'Freshly received first', // IGNORE
'length_asc' => 'Content length 1→9', // IGNORE
'length_desc' => 'Content length 9→1', // IGNORE
'link_asc' => 'Link A→Z', // IGNORE
'link_desc' => 'Link Z→A', // IGNORE
'rand' => 'Random order', // IGNORE
'title_asc' => 'Title A→Z', // IGNORE
'title_desc' => 'Title Z→A', // IGNORE
'user_modified_asc' => 'User modified 1→9', // IGNORE
'user_modified_desc' => 'User modified 9→1', // IGNORE
),
'starred' => 'Show favorites',
'stats' => 'Statistics', // IGNORE
'subscription' => 'Subscription management', // IGNORE
'unread' => 'Show unread', // IGNORE
),
'share' => 'Share', // IGNORE
'tag' => array(
'related' => 'Article tags', // IGNORE
),
'tos' => array(
'title' => 'Terms of Service', // IGNORE
),
);
|