Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<xliff version="1.0">
<file source-language="en" datatype="plaintext" original="messages" date="2025-01-26UTC08:22:400">
<file source-language="en" datatype="plaintext" original="messages" date="2025-02-01UTC02:28:280">
<header>
<authorName>John Doe</authorName>
<authorEmail>j.doe@example.com</authorEmail>
<authorName>J. Doe</authorName>
<authorEmail>j.doe@example.org</authorEmail>
</header>
<body>
</body>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<xliff version="1.0">
<file source-language="en" datatype="plaintext" original="messages" date="2025-01-26UTC08:22:400">
<file source-language="en" datatype="plaintext" original="messages" date="2025-02-01UTC02:28:280">
<header>
<authorName>John Doe</authorName>
<authorEmail>j.doe@example.com</authorEmail>
<authorName>J. Doe</authorName>
<authorEmail>j.doe@example.org</authorEmail>
</header>
<body>
<trans-unit id="backend_layout.default">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<xliff version="1.0">
<file source-language="en" datatype="plaintext" original="messages" date="2025-01-26UTC08:22:400">
<file source-language="en" datatype="plaintext" original="messages" date="2025-02-01UTC02:28:280">
<header>
<authorName>John Doe</authorName>
<authorEmail>j.doe@example.com</authorEmail>
<authorName>J. Doe</authorName>
<authorEmail>j.doe@example.org</authorEmail>
</header>
<body>
</body>
Expand Down
4 changes: 2 additions & 2 deletions Documentation/CodeSnippets/my_site_package/composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "my-vendor/my-site-package",
"type": "typo3-cms-extension",
"description": "",
"homepage": "https://example.com",
"description": "Site package to follow the tutorial.",
"homepage": "https://docs.typo3.org/permalink/t3sitepackage:start",
"license": ["GPL-2.0-or-later"],
"keywords": ["TYPO3 CMS"],
"require": {
Expand Down
6 changes: 3 additions & 3 deletions Documentation/CodeSnippets/my_site_package/ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

$EM_CONF[$_EXTKEY] = [
'title' => 'My Site Package',
'description' => '',
'description' => 'Site package to follow the tutorial.',
'category' => 'templates',
'constraints' => [
'depends' => [
Expand All @@ -22,8 +22,8 @@
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 1,
'author' => 'John Doe',
'author_email' => 'j.doe@example.com',
'author' => 'J. Doe',
'author_email' => 'j.doe@example.org',
'author_company' => 'My Vendor',
'version' => '1.0.0',
];