Skip to content

Commit 6fd3523

Browse files
froemkendkd-kaehm
authored andcommitted
[TASK] Migrate xlf files of TYPO3 modules to XLIFF format 2.0
1 parent 4fc22c1 commit 6fd3523

292 files changed

Lines changed: 3328 additions & 1633 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ indent_style = space
4848
[*.{typoscript,tsconfig}]
4949
indent_size = 2
5050

51-
# XLF/XML-Files
52-
[*.{xlf,xml}]
53-
indent_style = tab
51+
# XLF-Files
52+
[*.{xlf,xliff}]
53+
indent_size = 2
5454

5555
# HTML-Files
5656
[*.html]

Configuration/Backend/Modules.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
return [
1313
'searchbackend' => [
14-
'labels' => 'LLL:EXT:solr/Resources/Private/Language/locallang_mod.xlf',
14+
'labels' => 'solr.modules.messages',
1515
'iconIdentifier' => 'extensions-solr-module-main',
1616
'navigationComponent' => '@typo3/backend/tree/page-tree-element',
1717
'extensionName' => 'Solr',
@@ -21,7 +21,7 @@
2121
'access' => 'user',
2222
'path' => '/module/searchbackend/info',
2323
'iconIdentifier' => 'extensions-solr-module-info',
24-
'labels' => 'LLL:EXT:solr/Resources/Private/Language/locallang_mod_info.xlf',
24+
'labels' => 'solr.modules.info',
2525
'extensionName' => 'Solr',
2626
'controllerActions' => [
2727
InfoModuleController::class => [
@@ -34,7 +34,7 @@
3434
'access' => 'user',
3535
'path' => '/module/searchbackend/core-optimization',
3636
'iconIdentifier' => 'extensions-solr-module-solr-core-optimization',
37-
'labels' => 'LLL:EXT:solr/Resources/Private/Language/locallang_mod_coreoptimize.xlf',
37+
'labels' => 'solr.modules.core_optimization',
3838
'extensionName' => 'Solr',
3939
'controllerActions' => [
4040
CoreOptimizationModuleController::class => [
@@ -50,7 +50,7 @@
5050
'access' => 'user',
5151
'path' => '/module/searchbackend/index-queue',
5252
'iconIdentifier' => 'extensions-solr-module-index-queue',
53-
'labels' => 'LLL:EXT:solr/Resources/Private/Language/locallang_mod_indexqueue.xlf',
53+
'labels' => 'solr.modules.index_queue',
5454
'extensionName' => 'Solr',
5555
'controllerActions' => [
5656
IndexQueueModuleController::class => [
@@ -64,7 +64,7 @@
6464
'access' => 'user',
6565
'path' => '/module/searchbackend/index-administration',
6666
'iconIdentifier' => 'extensions-solr-module-index-administration',
67-
'labels' => 'LLL:EXT:solr/Resources/Private/Language/locallang_mod_indexadmin.xlf',
67+
'labels' => 'solr.modules.index_admin',
6868
'extensionName' => 'Solr',
6969
'controllerActions' => [
7070
IndexAdministrationModuleController::class => [
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<xliff version="2.0" xmlns="urn:oasis:names:tc:xliff:document:2.0" srcLang="en">
3+
<file id="f1">
4+
<unit id="title">
5+
<segment state="final">
6+
<source>Core Optimization</source>
7+
</segment>
8+
</unit>
9+
<unit id="short_description">
10+
<segment state="final">
11+
<source>Maintain synonyms and stopwords</source>
12+
</segment>
13+
</unit>
14+
<unit id="description">
15+
<segment state="final">
16+
<source>This module allows you to optimize the cores, you can maintain synonyms and stopwords to improve the search results.</source>
17+
</segment>
18+
</unit>
19+
</file>
20+
</xliff>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<xliff version="2.0" xmlns="urn:oasis:names:tc:xliff:document:2.0" srcLang="en">
3+
<file id="f1">
4+
<unit id="title">
5+
<segment state="final">
6+
<source>Index Administration</source>
7+
</segment>
8+
</unit>
9+
<unit id="short_description">
10+
<segment state="final">
11+
<source>Administrate your solr system</source>
12+
</segment>
13+
</unit>
14+
<unit id="description">
15+
<segment state="final">
16+
<source>This module allows you to do admin operations on the index (e.g. clear the index queue or clean the solr server).</source>
17+
</segment>
18+
</unit>
19+
</file>
20+
</xliff>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<xliff version="2.0" xmlns="urn:oasis:names:tc:xliff:document:2.0" srcLang="en">
3+
<file id="f1">
4+
<unit id="title">
5+
<segment state="final">
6+
<source>Index Queue</source>
7+
</segment>
8+
</unit>
9+
<unit id="short_description">
10+
<segment state="final">
11+
<source>Allows to check the status of the index queue</source>
12+
</segment>
13+
</unit>
14+
<unit id="description">
15+
<segment state="final">
16+
<source>This module allows you to check the state of the index queue and reQueue items.</source>
17+
</segment>
18+
</unit>
19+
</file>
20+
</xliff>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<xliff version="2.0" xmlns="urn:oasis:names:tc:xliff:document:2.0" srcLang="en">
3+
<file id="f1">
4+
<unit id="title">
5+
<segment state="final">
6+
<source>Info</source>
7+
</segment>
8+
</unit>
9+
<unit id="short_description">
10+
<segment state="final">
11+
<source>Get information from your search usage and data</source>
12+
</segment>
13+
</unit>
14+
<unit id="description">
15+
<segment state="final">
16+
<source>This module allows you to get information (statistics, used fields, connection details) from the core.</source>
17+
</segment>
18+
</unit>
19+
</file>
20+
</xliff>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<xliff version="2.0" xmlns="urn:oasis:names:tc:xliff:document:2.0" srcLang="en">
3+
<file id="f1">
4+
<unit id="title">
5+
<segment state="final">
6+
<source>Apache Solr</source>
7+
</segment>
8+
</unit>
9+
<unit id="short_description">
10+
<segment state="final">
11+
<source>Administrate solr</source>
12+
</segment>
13+
</unit>
14+
<unit id="description">
15+
<segment state="final">
16+
<source>This module provides submodules to maintain solr functionality.</source>
17+
</segment>
18+
</unit>
19+
</file>
20+
</xliff>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<xliff version="2.0" xmlns="urn:oasis:names:tc:xliff:document:2.0" srcLang="en" trgLang="af">
3+
<file id="f1" original="EXT:solr/Resources/Private/Language/Modules/CoreOptimization.xlf">
4+
<unit id="title">
5+
<segment state="final">
6+
<source>Core Optimization</source>
7+
<target>Core Optimization</target>
8+
</segment>
9+
</unit>
10+
<unit id="short_description">
11+
<segment state="final">
12+
<source>Maintain synonyms and stopwords</source>
13+
<target>Maintain synonyms and stopwords</target>
14+
</segment>
15+
</unit>
16+
<unit id="description">
17+
<segment state="final">
18+
<source>This module allows you to optimize the cores, you can maintain synonyms and stopwords to improve the search results.</source>
19+
<target>This module allows you to optimize the cores, you can maintain synonyms and stopwords to improve the search results.</target>
20+
</segment>
21+
</unit>
22+
</file>
23+
</xliff>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<xliff version="2.0" xmlns="urn:oasis:names:tc:xliff:document:2.0" srcLang="en" trgLang="af">
3+
<file id="f1" original="EXT:solr/Resources/Private/Language/Modules/IndexAdmin.xlf">
4+
<unit id="title">
5+
<segment state="final">
6+
<source>Index Administration</source>
7+
<target>Index Administration</target>
8+
</segment>
9+
</unit>
10+
<unit id="short_description">
11+
<segment state="final">
12+
<source>Administrate your solr system</source>
13+
<target>Administrate your solr system</target>
14+
</segment>
15+
</unit>
16+
<unit id="description">
17+
<segment state="final">
18+
<source>This module allows you to do admin operations on the index (e.g. clear the index queue or clean the solr server).</source>
19+
<target>This module allows you to do admin operations on the index (e.g. clear the index queue or clean the solr server).</target>
20+
</segment>
21+
</unit>
22+
</file>
23+
</xliff>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<xliff version="2.0" xmlns="urn:oasis:names:tc:xliff:document:2.0" srcLang="en" trgLang="af">
3+
<file id="f1" original="EXT:solr/Resources/Private/Language/Modules/IndexQueue.xlf">
4+
<unit id="title">
5+
<segment state="final">
6+
<source>Index Queue</source>
7+
<target>Index Queue</target>
8+
</segment>
9+
</unit>
10+
<unit id="short_description">
11+
<segment state="final">
12+
<source>Allows to check the status of the index queue</source>
13+
<target>Allows to check the status of the index queue</target>
14+
</segment>
15+
</unit>
16+
<unit id="description">
17+
<segment state="final">
18+
<source>This module allows you to check the state of the index queue and reQueue items.</source>
19+
<target>This module allows you to check the state of the index queue and reQueue items.</target>
20+
</segment>
21+
</unit>
22+
</file>
23+
</xliff>

0 commit comments

Comments
 (0)