sitegeist/csv-labels

Use CSV files to provide translation labels to TYPO3

Installs: 41 597

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 6

Forks: 1

Open Issues: 1

Type:typo3-cms-extension

1.0.2 2023-03-21 13:26 UTC

This package is auto-updated.

Last update: 2024-03-26 15:49:35 UTC


README

This utility extension extends the language handling of TYPO3 to be able to use a simple CSV file format to specify language labels. While the XLIFF file format is a widely used standard and is more powerful, CSV files can be a pragmatic approach for language files that only contain a handful of entries.

This extension does not remove or disable XLIFF files, it merely provides another file format to choose from. We at sitegeist use the CSV file format to define language labels for Fluid Components.

Getting started

Install the extension either from TER or via composer:

composer require sitegeist/csv-labels

File format

locallang.csv:

"id","description","default","de"
"Actions","","Actions","Aktionen"
"ConfirmDelete","Message in the delete user dialog","Should the following user be deleted?","Soll der folgende Nutzer gelöscht werden?"

Rules:

  • The column id represents the label identifier
  • The column description represents the label description (for documentation purposes)
  • All other columns are treated as a translation for the locale from the header line
  • The csv files use , as delimiter and " as text delimiters (default configuration of fgetcsv)

Usage

<!-- either explicitly -->
<f:translate key="EXT:my_extension/Resources/Private/Language/locallang.csv:Actions" />
<!-- or as a fallback, in case the xlf file doesn't exist -->
<f:translate key="EXT:my_extension/Resources/Private/Language/locallang.xlf:Actions" />
<!-- this means that it can also be used in extbase context without the full path -->
<f:translate key="Actions" />

Authors & Sponsors

The development and the public-releases of this package is generously sponsored by my employer https://sitegeist.de.