forked from CarGuo/gsy_github_app_flutter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGSYStringBase.dart
More file actions
225 lines (131 loc) · 3.42 KB
/
GSYStringBase.dart
File metadata and controls
225 lines (131 loc) · 3.42 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
/**
* Created by guoshuyu
* Date: 2018-08-15
*/
abstract class GSYStringBase {
String welcomeMessage;
String app_name;
String app_ok;
String app_cancel;
String app_empty;
String app_licenses;
String app_close;
String app_version;
String app_back_tip;
String app_not_new_version;
String app_version_title;
String nothing_now;
String loading_text;
String option_web;
String option_copy;
String option_share;
String option_web_launcher_error;
String option_share_title;
String option_share_copy_success;
String login_text;
String Login_out;
String home_reply;
String home_change_language;
String home_about;
String home_check_update;
String home_history;
String home_user_info;
String home_change_theme;
String home_language_default;
String home_language_zh;
String home_language_en;
String home_theme_default;
String home_theme_1;
String home_theme_2;
String home_theme_3;
String home_theme_4;
String home_theme_5;
String home_theme_6;
String login_username_hint_text;
String login_password_hint_text;
String login_success;
String network_error_401;
String network_error_403;
String network_error_404;
String network_error_timeout;
String network_error_unknown;
String network_error;
String load_more_not;
String load_more_text;
String home_dynamic;
String home_trend;
String home_my;
String trend_day;
String trend_week;
String trend_month;
String trend_all;
String user_tab_repos;
String user_tab_fans;
String user_tab_focus;
String user_tab_star;
String user_tab_honor;
String user_dynamic_group;
String user_dynamic_title;
String user_focus;
String user_un_focus;
String user_focus_no_support;
String user_create_at;
String user_orgs_title;
String repos_tab_readme;
String repos_tab_info;
String repos_tab_file;
String repos_tab_issue;
String repos_tab_activity;
String repos_tab_commits;
String repos_tab_issue_all;
String repos_tab_issue_open;
String repos_tab_issue_closed;
String repos_option_release;
String repos_option_branch;
String repos_fork_at;
String repos_create_at;
String repos_last_commit;
String repos_all_issue_count;
String repos_open_issue_count;
String repos_close_issue_count;
String repos_issue_search;
String issue_reply;
String issue_edit;
String issue_open;
String issue_close;
String issue_lock;
String issue_unlock;
String issue_reply_issue;
String issue_commit_issue;
String issue_edit_issue;
String issue_edit_issue_commit;
String issue_edit_issue_edit_commit;
String issue_edit_issue_delete_commit;
String issue_edit_issue_copy_commit;
String issue_edit_issue_content_not_be_null;
String issue_edit_issue_title_not_be_null;
String issue_edit_issue_title_tip;
String issue_edit_issue_content_tip;
String notify_title;
String notify_tab_all;
String notify_tab_part;
String notify_tab_unread;
String notify_unread;
String notify_readed;
String notify_status;
String notify_type;
String search_title;
String search_tab_repos;
String search_tab_user;
String release_tab_release;
String release_tab_tag;
String user_profile_name;
String user_profile_email;
String user_profile_link;
String user_profile_org;
String user_profile_location;
String user_profile_info;
String search_type;
String search_sort;
String search_language;
}