Skip to content

Commit 2fd9717

Browse files
Remove unnecessary offline warning from checking overview page (#3179)
1 parent eb5eb5a commit 2fd9717

File tree

4 files changed

+0
-13
lines changed

4 files changed

+0
-13
lines changed

src/SIL.XForge.Scripture/ClientApp/src/app/checking/checking-overview/checking-overview.component.html

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,6 @@ <h1>{{ t(canCreateQuestion ? "manage_questions" : "my_progress") }}</h1>
3838

3939
@if (canEditQuestion) {
4040
<div id="text-with-questions-list">
41-
@if (!isOnline) {
42-
<app-notice id="warning-some-actions-unavailable-offline" icon="cloud_off" type="warning">{{
43-
t("some_actions_unavailable_offline")
44-
}}</app-notice>
45-
}
4641
@for (text of texts; track text.bookNum) {
4742
@if (bookQuestionCount(text) > 0 || bookHasChapterAudio(text)) {
4843
<mat-expansion-panel [togglePosition]="'before'" class="book-expander">

src/SIL.XForge.Scripture/ClientApp/src/app/checking/checking-overview/checking-overview.component.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,6 @@ export class CheckingOverviewComponent extends DataLoadingComponent implements O
6464
super(noticeService);
6565
}
6666

67-
protected get isOnline(): boolean {
68-
return this.onlineStatusService.isOnline;
69-
}
70-
7167
get showQuestionsLoadingMessage(): boolean {
7268
return !this.questionsLoaded && this.allQuestionsCount === 0;
7369
}

src/SIL.XForge.Scripture/ClientApp/src/assets/i18n/checking_en.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,6 @@
293293
"my_progress": "My progress",
294294
"project_stats": "Project stats",
295295
"questions": "Questions",
296-
"some_actions_unavailable_offline": "Some actions are not available while offline and require connecting to the internet, such as uploading or deleting chapter audio.",
297296
"tooltip_edit": "Edit"
298297
},
299298
"checking_questions": {

src/SIL.XForge.Scripture/ClientApp/src/assets/i18n/non_checking_en.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,7 @@
7373
"confirm_bulk_republish": "Are you sure you want to republish all the questions in {{ scope }}?",
7474
"confirm_delete_chapter_audio": "Are you sure you want to delete chapter audio and timing data for {{ book }} {{ chapter }}?",
7575
"delete": "Delete",
76-
"delete_chapter_audio": "Delete chapter audio",
77-
"edit_chapter_audio": "Edit chapter audio",
7876
"import_questions": "Bulk import",
79-
"manage_audio_timing": "Manage chapter audio and timing data",
8077
"no_archived_questions": "There are no archived questions.",
8178
"no_questions": "There are no published questions. ",
8279
"question_count_label": "{{ count }} questions",

0 commit comments

Comments
 (0)