Skip to content

Commit

Permalink
Fix texts and testing component
Browse files Browse the repository at this point in the history
  • Loading branch information
iyannsch committed Oct 13, 2024
1 parent 3f34396 commit 1bda254
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/webapp/i18n/de/programmingExercise.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,14 @@
"onlineEditor": "Online",
"allowOfflineIde": {
"title": "Offline-IDE erlauben",
"description": "Aktivieren Sie diese Option, um es zu erlauben, die Übung herunterzuladen und lokal mit der bevorzugten IDE daran zu arbeiten.",
"description": "Aktiviere diese Option, um es zu erlauben, die Übung herunterzuladen und lokal mit der bevorzugten IDE daran zu arbeiten.",
"alert": "Es muss mindestens eine Option (Offline-IDE, Online-Editor oder Online-IDE) ausgewählt sein",
"alertNoTheia": "Es muss mindestens eine Option (Offline-IDE oder Online-Editor) ausgewählt sein"
},
"offlineIde": "IDE",
"allowOnlineIde": {
"title": "Online-IDE erlauben",
"description": "Eine auf VisualStudioCode basierende Online-Entwicklungsumgebung mit Code-Hervorhebungs- und Formatierungsfunktionen. Vorkonfiguriert für die Sprache der Übung und mit der Möglichkeit, Code online zu kompilieren oder auszuführen.",
"description": "Eine auf Visual Studio Code basierende Online-Entwicklungsumgebung mit Code-Hervorhebungs- und Formatierungsfunktionen. Vorkonfiguriert für die Sprache der Übung und mit der Möglichkeit, Code online zu kompilieren oder auszuführen.",
"alert": "Es muss mindestens eine Option (Offline-IDE, Online-Editor oder Online-IDE) ausgewählt sein.",
"alertNoTheia": "Es muss mindestens eine Option (Offline-IDE oder Online-Editor) ausgewählt sein"
},
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/i18n/en/programmingExercise.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
"offlineIde": "IDE",
"allowOnlineIde": {
"title": "Allow Online IDE",
"description": "An online coding environment based on VisualStudioCode featuring code highlighting and formatting features. Pre-configured to your exercise's language and with the ability to compile or run code online.",
"description": "An online coding environment based on Visual Studio Code featuring code highlighting and formatting features. Pre-configured to your exercise's language and with the ability to compile or run code online.",
"alert": "At least one option (Offline IDE, Online Editor, or Online IDE) must be selected.",
"alertNoTheia": "At least one option (Offline IDE or Online Editor) must be selected"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { ProfileInfo } from 'app/shared/layouts/profiles/profile-info.model';
import { ProfileService } from 'app/shared/layouts/profiles/profile.service';
import { PROFILE_THEIA } from 'app/app.constants';
import { ArtemisTestModule } from '../../../test.module';
import { ArtemisSharedComponentModule } from 'app/shared/components/shared-component.module';

describe('ProgrammingExerciseDifficultyComponent', () => {
let fixture: ComponentFixture<ProgrammingExerciseDifficultyComponent>;
Expand All @@ -24,7 +25,7 @@ describe('ProgrammingExerciseDifficultyComponent', () => {

beforeEach(() => {
TestBed.configureTestingModule({
imports: [ArtemisTestModule],
imports: [ArtemisTestModule, ArtemisSharedComponentModule],
declarations: [
CheckboxControlValueAccessor,
DefaultValueAccessor,
Expand Down

0 comments on commit 1bda254

Please sign in to comment.