---
title: "Labels"
manual: "Academic Bite Jobs"
version: "main"
source: "Configuration/Labels/Index.rst"
rendered: "2026-09-27T01:55:45+00:00"
---

# Labels {#configuration-labels}

The labels this extension shows in the frontend come from
`EXT:academic_bite_jobs/Resources/Private/Language/locallang.xlf` and its
translations; the table below names the ones that come from another file. A site
changes a label without copying a template, in TypoScript:
under `plugin.tx_academicbitejobs._LOCAL_LANG` for every content element
of the extension, or under `plugin.tx_academicbitejobs_<plugin>._LOCAL_LANG`
for one of them. A label set for the plugin wins over one set for the extension.

**EXT:my_sitepackage/Configuration/TypoScript/setup.typoscript**

```typoscript
plugin.tx_academicbitejobs._LOCAL_LANG {
  default.no-jobs = There are no vacancies right now.
  de.no-jobs = Zurzeit sind keine Stellen ausgeschrieben.
}

# Only in one content element:
plugin.tx_academicbitejobs_list._LOCAL_LANG.default.no-jobs = There are no vacancies right now.
```

The dots of a key need no escaping: TypoScript reads them as levels of its tree,
and TYPO3 joins the levels to the key again. A label of another language goes
under its language key, `de` for German.

| Content element | Path |
| --- | --- |
| **b-ite job list** (`academicbitejobs_list`) | `plugin.tx_academicbitejobs_list._LOCAL_LANG` |

A language file override works as well, and replaces the label of the file
itself: `$GLOBALS['TYPO3_CONF_VARS']['SYS']['locallangXMLOverride']` on
TYPO3 v13, `$GLOBALS['TYPO3_CONF_VARS']['LANG']['resourceOverrides']` on
TYPO3 v14.

Earlier versions of this extension read these overrides on TYPO3 v13 from
`plugin.tx_academic_bite_jobs` instead, see
[the changelog](../../Changelog/2.4/Important-LabelOverridesUseTheDocumentedPath.html#important-label-overrides-use-the-documented-path).

## Where the labels are shown {#where-the-labels-are-shown}

Placeholders in angle brackets stand for a part of the key that the template
or the code fills in, a category type or a field name for example.

| Key | Shown by |
| --- | --- |
| `jobs.bite.<column>` | `Partials/BiteJobs/View/Table.html` |
| `jobs.bite.endsOn` | `Partials/BiteJobs/View/Card.html`, `Partials/BiteJobs/View/List.html` |
| `no-jobs` | `Templates/BiteJobs/List.html` |
