Chocobozzz/PeerTube

View on GitHub

Showing 3,313 of 3,313 total issues

Function computeTypeahead has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

  computeTypeahead () {
    const searchIndexConfig = this.serverConfig.search.searchIndex

    if (!this.activeSearch) {
      if (searchIndexConfig.enabled && (searchIndexConfig.isDefaultSearch || searchIndexConfig.disableLocalSearch)) {
Severity: Minor
Found in client/src/app/header/search-typeahead.component.ts - About 45 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function getVideoStreamFPS has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

async function getVideoStreamFPS (path: string, existingProbe?: FfprobeData) {
  const videoStream = await getVideoStream(path, existingProbe)
  if (!videoStream) return 0

  for (const key of [ 'avg_frame_rate', 'r_frame_rate' ]) {
Severity: Minor
Found in packages/ffmpeg/src/ffprobe.ts - About 45 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function ngOnInit has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

  ngOnInit () {
    this.serverConfig = this.serverService.getHTMLConfig()

    this.subActivatedRoute = this.route.queryParams
      .subscribe({
Severity: Minor
Found in client/src/app/+search/search.component.ts - About 45 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function symbolize has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

  static symbolize (combo: string): string {
    const map: any = {
      command: '\u2318', // ⌘
      shift: '\u21E7', // ⇧
      left: '\u2190', // ←
Severity: Minor
Found in client/src/app/core/hotkeys/hotkey.model.ts - About 45 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Avoid deeply nested control flow statements.
Open

            if (!hasAudio || (splitAudioAndVideo && alreadyProcessedAudio)) continue
Severity: Major
Found in packages/ffmpeg/src/ffmpeg-live.ts - About 45 mins to fix

    Function listBlocks has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

      listBlocks (options: {
        pagination: RestPagination
        sort: SortMeta
        search?: string
        type?: VideoBlacklistType_Type
    Severity: Minor
    Found in client/src/app/shared/shared-moderation/video-block.service.ts - About 45 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function buildServerErrorMessage has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

      private buildServerErrorMessage (err: any) {
        // A server-side error occurred.
        if (err.error?.errors) {
          const errors = err.error.errors
    
    
    Severity: Minor
    Found in client/src/app/core/rest/rest-extractor.service.ts - About 45 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

      constructor (
        protected formReactiveService: FormReactiveService,
        private modalService: NgbModal,
        private videoBlocklistService: VideoBlockService,
        private notifier: Notifier
    client/src/app/+admin/follows/following-list/follow-modal.component.ts on lines 32..39
    client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts on lines 26..33
    client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts on lines 28..35
    client/src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts on lines 28..35
    client/src/app/shared/shared-moderation/report-modals/account-report.component.ts on lines 45..52
    client/src/app/shared/shared-moderation/report-modals/comment-report.component.ts on lines 46..53
    client/src/app/shared/shared-moderation/report-modals/video-report.component.ts on lines 49..56
    client/src/app/shared/standalone-watched-words/watched-words-list-save-modal.component.ts on lines 32..39

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 50.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

      constructor (
        protected formReactiveService: FormReactiveService,
        private modalService: NgbModal,
        private abuseService: AbuseService,
        private notifier: Notifier
    client/src/app/+admin/follows/following-list/follow-modal.component.ts on lines 32..39
    client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts on lines 26..33
    client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts on lines 28..35
    client/src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts on lines 28..35
    client/src/app/shared/shared-moderation/report-modals/comment-report.component.ts on lines 46..53
    client/src/app/shared/shared-moderation/report-modals/video-report.component.ts on lines 49..56
    client/src/app/shared/shared-moderation/video-block.component.ts on lines 34..41
    client/src/app/shared/standalone-watched-words/watched-words-list-save-modal.component.ts on lines 32..39

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 50.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

      constructor (
        protected formReactiveService: FormReactiveService,
        private modalService: NgbModal,
        private abuseService: AbuseService,
        private notifier: Notifier
    client/src/app/+admin/follows/following-list/follow-modal.component.ts on lines 32..39
    client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts on lines 26..33
    client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts on lines 28..35
    client/src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts on lines 28..35
    client/src/app/shared/shared-moderation/report-modals/account-report.component.ts on lines 45..52
    client/src/app/shared/shared-moderation/report-modals/video-report.component.ts on lines 49..56
    client/src/app/shared/shared-moderation/video-block.component.ts on lines 34..41
    client/src/app/shared/standalone-watched-words/watched-words-list-save-modal.component.ts on lines 32..39

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 50.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Function checkFFmpegEncoders has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

      private async checkFFmpegEncoders (peertubeAvailableEncoders: AvailableEncoders): Promise<Map<string, boolean>> {
        if (FFmpegCommandWrapper.supportedEncoders !== undefined) {
          return FFmpegCommandWrapper.supportedEncoders
        }
    
    
    Severity: Minor
    Found in packages/ffmpeg/src/ffmpeg-command-wrapper.ts - About 45 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Avoid deeply nested control flow statements.
    Open

                    if (process.env.DEBUG) {
                      console.log(`${new Date().toISOString()}`, job)
                    }
    Severity: Major
    Found in packages/server-commands/src/server/jobs.ts - About 45 mins to fix

      Function updateWithRetry has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

        private async updateWithRetry (payload: CustomLiveRTMPHLSTranscodingUpdatePayload, currentTry = 1): Promise<any> {
          if (this.ended || this.errored) return
      
          try {
            await this.options.server.runnerJobs.update({
      Severity: Minor
      Found in apps/peertube-runner/src/server/process/shared/process-live.ts - About 45 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Similar blocks of code found in 9 locations. Consider refactoring.
      Open

        constructor (
          protected formReactiveService: FormReactiveService,
          private modalService: NgbModal,
          private notifier: Notifier,
          private abuseService: AbuseService
      client/src/app/+admin/follows/following-list/follow-modal.component.ts on lines 32..39
      client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts on lines 26..33
      client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts on lines 28..35
      client/src/app/shared/shared-moderation/report-modals/account-report.component.ts on lines 45..52
      client/src/app/shared/shared-moderation/report-modals/comment-report.component.ts on lines 46..53
      client/src/app/shared/shared-moderation/report-modals/video-report.component.ts on lines 49..56
      client/src/app/shared/shared-moderation/video-block.component.ts on lines 34..41
      client/src/app/shared/standalone-watched-words/watched-words-list-save-modal.component.ts on lines 32..39

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 50.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Function get has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

        async get (options: OverrideCommandOptions & {
          url: string
      
          videoFileToken?: string
          reinjectVideoFileToken?: boolean
      Severity: Minor
      Found in packages/server-commands/src/videos/streaming-playlists-command.ts - About 45 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Similar blocks of code found in 9 locations. Consider refactoring.
      Open

        constructor (
          protected formReactiveService: FormReactiveService,
          private notifier: Notifier,
          private authService: AuthService,
          private userService: UserService
      client/src/app/+admin/follows/following-list/follow-modal.component.ts on lines 32..39
      client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts on lines 26..33
      client/src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts on lines 28..35
      client/src/app/shared/shared-moderation/report-modals/account-report.component.ts on lines 45..52
      client/src/app/shared/shared-moderation/report-modals/comment-report.component.ts on lines 46..53
      client/src/app/shared/shared-moderation/report-modals/video-report.component.ts on lines 49..56
      client/src/app/shared/shared-moderation/video-block.component.ts on lines 34..41
      client/src/app/shared/standalone-watched-words/watched-words-list-save-modal.component.ts on lines 32..39

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 50.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 9 locations. Consider refactoring.
      Open

        constructor (
          protected formReactiveService: FormReactiveService,
          private modalService: NgbModal,
          private notifier: Notifier,
          private watchedWordsService: WatchedWordsListService
      client/src/app/+admin/follows/following-list/follow-modal.component.ts on lines 32..39
      client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts on lines 26..33
      client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts on lines 28..35
      client/src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts on lines 28..35
      client/src/app/shared/shared-moderation/report-modals/account-report.component.ts on lines 45..52
      client/src/app/shared/shared-moderation/report-modals/comment-report.component.ts on lines 46..53
      client/src/app/shared/shared-moderation/report-modals/video-report.component.ts on lines 49..56
      client/src/app/shared/shared-moderation/video-block.component.ts on lines 34..41

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 50.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Function upload has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

        async upload (options: OverrideCommandOptions & {
          attributes?: VideoEdit
          mode?: 'legacy' | 'resumable' // default legacy
          waitTorrentGeneration?: boolean // default true
          completedExpectedStatus?: HttpStatusCodeType
      Severity: Minor
      Found in packages/server-commands/src/videos/videos-command.ts - About 45 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Similar blocks of code found in 9 locations. Consider refactoring.
      Open

        constructor (
          protected formReactiveService: FormReactiveService,
          private modalService: NgbModal,
          private abuseService: AbuseService,
          private notifier: Notifier
      client/src/app/+admin/follows/following-list/follow-modal.component.ts on lines 32..39
      client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts on lines 26..33
      client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts on lines 28..35
      client/src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts on lines 28..35
      client/src/app/shared/shared-moderation/report-modals/account-report.component.ts on lines 45..52
      client/src/app/shared/shared-moderation/report-modals/comment-report.component.ts on lines 46..53
      client/src/app/shared/shared-moderation/video-block.component.ts on lines 34..41
      client/src/app/shared/standalone-watched-words/watched-words-list-save-modal.component.ts on lines 32..39

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 50.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Function timeToInt has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

      export function timeToInt (time: number | string) {
        if (!time) return 0
        if (typeof time === 'number') return Math.floor(time)
      
        // Try with 00h00m00s format first
      Severity: Minor
      Found in packages/core-utils/src/common/date.ts - About 45 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Severity
      Category
      Status
      Source
      Language