-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathsentences.dart
More file actions
362 lines (312 loc) · 10.4 KB
/
sentences.dart
File metadata and controls
362 lines (312 loc) · 10.4 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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
abstract class Sentences {
/// CCSync UI additional sentences
String get ccsyncLoginInstruction;
String get ccsyncEasySyncTitle;
String get ccsyncOpenButton;
/// CCSync intro and self-hosted sentences
String get ccsyncIntro;
String get ccsyncSelfHosted;
String get helloWorld;
String get homePageTitle;
String get homePageLastModified;
String get homePageDue;
String get homePageTaskWarriorNotConfigured;
String get homePageSetup;
String get homePageFilter;
String get homePageMenu;
String get homePageExitApp;
String get homePageAreYouSureYouWantToExit;
String get homePageExit;
String get homePageCancel;
String get homePageClickOnTheBottomRightButtonToStartAddingTasks;
String get homePageSearchNotFound;
String get homePageFetchingTasks;
// app bar tooltips
String get homePageSearchTooltip;
String get homePageCancelSearchTooltip;
// floating action button & home page texts
String get homePageAddTaskTooltip;
String get homePageTapBackToExit;
String get homePageSearchHint;
String get settingsPageTitle;
String get settingsPageSubtitle;
String get settingsPageMovingDataToNewDirectory;
String get settingsPageChangeDirectory;
String get settingsPageSetToDefault;
String get settingsPageSyncOnStartTitle;
String get settingsPageSyncOnStartDescription;
String get settingsPageEnableSyncOnTaskCreateTitle;
String get settingsPageEnableSyncOnTaskCreateDescription;
String get settingsPageHighlightTaskTitle;
String get settingsPageHighlightTaskDescription;
String get settingsPageEnable24hrFormatTitle;
String get settingsPageEnable24hrFormatDescription;
String get taskchampionTileTitle;
String get taskchampionTileDescription;
String get settingsPageSelectLanguage;
String get settingsPageToggleNativeLanguage;
String get settingsPageSelectDirectoryTitle;
String get settingsPageSelectDirectoryDescription;
String get navDrawerProfile;
String get navDrawerReports;
String get navDrawerAbout;
String get navDrawerSettings;
String get ccsyncCredentials;
String get deleteTaskTitle;
String get deleteTaskConfirmation;
String get deleteTaskWarning;
String get deleteAllTasksWillBeMarkedAsDeleted;
String get navDrawerExit;
String get navDrawerConfirm;
String get detailPageDescription;
String get detailPageStatus;
String get detailPageEntry;
String get detailPageModified;
String get detailPageStart;
String get detailPageEnd;
String get detailPageDue;
String get detailPageWait;
String get detailPageUntil;
String get detailPagePriority;
String get detailPageProject;
String get detailPageTags;
String get detailPageUrgency;
String get detailPageID;
String get filterDrawerApplyFilters;
String get filterDrawerHideWaiting;
String get filterDrawerShowWaiting;
String get filterDrawerPending;
String get filterDrawerCompleted;
String get filterDrawerFilterTagBy;
String get filterDrawerAND;
String get filterDrawerOR;
String get filterDrawerSortBy;
String get filterDrawerCreated;
String get filterDrawerModified;
String get filterDrawerStartTime;
String get filterDrawerDueTill;
String get filterDrawerPriority;
String get filterDrawerProject;
String get filterDrawerTags;
String get filterDrawerUrgency;
String get filterDrawerResetSort;
String get filterDrawerStatus;
String get filterDrawerNoProjectsAvailable;
String get reportsPageTitle;
String get reportsPageCompleted;
String get reportsPagePending;
String get reportsPageTasks;
String get reportsPageDaily;
String get reportsPageDailyBurnDownChart;
String get reportsPageDailyDayMonth;
String get reportsPageWeekly;
String get reportsPageWeeklyBurnDownChart;
String get reportsPageWeeklyWeeksYear;
String get reportsPageMonthly;
String get reportsPageMonthlyBurnDownChart;
String get reportsPageMonthlyMonthYear;
String get reportsPageNoTasksFound;
String get reportsPageAddTasksToSeeReports;
String get profilePageProfile;
String get profilePageProfiles;
String get profilePageCurrentProfile;
String get profilePageManageSelectedProfile;
String get profilePageRenameAlias;
String get profilePageConfigureTaskserver;
String get profilePageExportTasks;
String get profilePageCopyConfigToNewProfile;
String get profilePageDeleteProfile;
String get profilePageAddNewProfile;
String get profilePageExportTasksDialogueTitle;
String get profilePageExportTasksDialogueSubtitle;
String get profilePageRenameAliasDialogueBoxTitle;
String get profilePageRenameAliasDialogueBoxNewAlias;
String get profilePageRenameAliasDialogueBoxCancel;
String get profilePageRenameAliasDialogueBoxSubmit;
String get manageTaskServerPageConfigureTaskserver;
String get manageTaskServerPageConfigureTASKRC;
String get manageTaskServerPageSetTaskRC;
String get manageTaskServerPageConfigureYourCertificate;
String get manageTaskServerPageSelectCertificate;
String get manageTaskServerPageConfigureTaskserverKey;
String get manageTaskServerPageSelectKey;
String get manageTaskServerPageConfigureServerCertificate;
String get manageTaskServerPageTaskRCFileIsVerified;
String get manageTaskServerPageConfigureTaskRCDialogueBoxTitle;
String get manageTaskServerPageConfigureTaskRCDialogueBoxSubtitle;
String get manageTaskServerPageConfigureTaskRCDialogueBoxInputFieldText;
String get manageTaskServerPageConfigureTaskRCDialogueBoxOr;
String get manageTaskServerPageConfigureTaskRCDialogueBoxSelectTaskRC;
String get addTaskTitle;
String get addTaskEnterTask;
String get addTaskDue;
String get addTaskSelectDueDate;
String get addTaskPriority;
String get addTaskAddTags;
String get addTaskCancel;
String get addTaskAdd;
String get addTaskTimeInPast;
String get addTaskFieldCannotBeEmpty;
String get addTaskTaskAddedSuccessfully;
String get aboutPageGitHubLink;
String get aboutPageProjectDescription;
String get aboutPageAppBarTitle;
// about page
String get version;
String get package;
// date time picker
String get notSelected;
String get cantSetTimeinPast;
//description widget
String get editDescription;
String get editProject;
String get cancel;
String get submit;
//detail view
String get saveChangesConfirmation;
String get yes;
String get no;
String get reviewChanges;
String get oldChanges;
String get newChanges;
//tags widget
String get tags;
String get addedTagsWillAppearHere;
String get addTag;
String get enterProject;
String get allProjects;
String get noProjectsFound;
String get noProject;
String get project;
String get select;
String get save;
String get dontSave;
String get unsavedChanges;
String get unsavedChangesWarning;
String get enterNew;
String get edit;
String get task;
// task action strings
String get confirmDeleteTask;
String get taskUpdated;
String get undo;
String get taskMarkedAsCompleted;
String get taskMarkedAsDeleted;
String get refreshToViewChanges;
String get clickOnBottomRightButtonToStartAddingTasks;
String get complete;
String get delete;
// task server management strings
String get taskServerInfo;
String get taskServerCredentials;
String get notConfigured;
String get fetchingStatistics;
String get pleaseWait;
String get statistics;
String get ok;
String get pleaseSetupTaskServer;
// onboarding strings
String get onboardingSkip;
String get onboardingNext;
String get onboardingStart;
// permission strings
String get permissionPageTitle;
String get storagePermissionTitle;
String get storagePermissionDescription;
String get notificationPermissionTitle;
String get notificationPermissionDescription;
String get privacyStatement;
String get grantPermissions;
String get managePermissionsLater;
// Profile page strings
String get profileAllProfiles;
String get profileSwitchedToProfile;
String get profileAddedSuccessfully;
String get profileAdditionFailed;
String get profileConfigCopied;
String get profileConfigCopyFailed;
String get profileDeletedSuccessfully;
String get profileDeletionFailed;
String get profileDeleteConfirmation;
// Reports strings
String get reportsDate;
String get reportsPending;
String get reportsCompleted;
String get reportsMonthYear;
String get reportsWeek;
String get reportsDay;
String get reportsYear;
String get reportsError;
String get reportsLoading;
// Settings strings
String get settingsResetToDefault;
String get settingsAlreadyDefault;
String get settingsConfirmReset;
String get settingsNoButton;
String get settingsYesButton;
String get logs;
String get checkAllDebugLogsHere;
// Splash screen strings
String get splashSettingUpApp;
String get syncSetting;
String get displaySettings;
String get storageAndData;
String get advanced;
// Tour strings - reports
String get tourReportsDaily;
String get tourReportsWeekly;
String get tourReportsMonthly;
// Tour strings - profile
String get tourProfileCurrent;
String get tourProfileManage;
String get tourProfileAddNew;
// Tour strings - task server
String get tourTaskServerTaskRC;
String get tourTaskServerCertificate;
String get tourTaskServerKey;
String get tourTaskServerRootCert;
// Tour strings - home page
String get tourHomeAddTask;
String get tourHomeSearch;
String get tourHomeRefresh;
String get tourHomeFilter;
String get tourHomeMenu;
// Tour strings - filter drawer
String get tourFilterStatus;
String get tourFilterProjects;
String get tourFilterTagUnion;
String get tourFilterSort;
// Tour strings - details page
String get tourDetailsDue;
String get tourDetailsWait;
String get tourDetailsUntil;
String get tourDetailsPriority;
// Dialogue for adding new task
String get descriprtionCannotBeEmpty;
String get enterTaskDescription;
String get canNotHaveWhiteSpace;
String get high;
String get medium;
String get low;
String get priority;
String get tagAlreadyExists;
String get tagShouldNotContainSpaces;
String get date;
String get add;
String get change;
String get dateCanNotBeInPast;
// ccsync credentials page
String get configureTaskchampion;
String get encryptionSecret;
String get ccsyncBackendUrl;
String get taskchampionBackendUrl;
String get ccsyncClientId;
String get success;
String get credentialsSavedSuccessfully;
String get tip;
String get saveCredentials;
// profile page new
String get profilePageChangeProfileMode;
String get profilePageSelectProfileMode;
String get profilePageSuccessfullyChangedProfileModeTo;
}