From 65e9047256fd679e55601d9b7a3c1784ca23ca17 Mon Sep 17 00:00:00 2001 From: Michael Schams <typo3@2020.schams.net> Date: Fri, 10 Apr 2020 12:40:55 +1000 Subject: [PATCH] [TASK] Make capitalization of BE module names consistent MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This change makes language labels for backend module names consistent by following the rule "first letter of both words upper-case" (e.g. "Admin Tools"). Resolves: #90993 Releases: master Change-Id: I58aef178b3c0a781e1046e381340ad29fa19c7ea Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/64114 Tested-by: TYPO3com <noreply@typo3.com> Tested-by: Josef Glatz <josefglatz@gmail.com> Tested-by: Björn Jacob <bjoern.jacob@tritum.de> Tested-by: Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by: Oliver Klee <typo3-coding@oliverklee.de> Reviewed-by: Josef Glatz <josefglatz@gmail.com> Reviewed-by: Björn Jacob <bjoern.jacob@tritum.de> Reviewed-by: Guido Schmechel <guido.schmechel@brandung.de> Reviewed-by: Andreas Fernandez <a.fernandez@scripting-base.de> --- .../beuser/Resources/Private/Language/locallang_mod.xlf | 2 +- .../Resources/Private/Language/locallang_mod_admintools.xlf | 2 +- .../Resources/Private/Language/locallang_mod_usertools.xlf | 2 +- .../Tests/Acceptance/Backend/BackendUser/CompareUserCest.php | 4 ++-- .../Tests/Acceptance/Backend/BackendUser/ListGroupCest.php | 4 ++-- .../Tests/Acceptance/Backend/BackendUser/ListUserCest.php | 4 ++-- .../lowlevel/Resources/Private/Language/locallang_mod.xlf | 2 +- .../sysext/setup/Resources/Private/Language/locallang_mod.xlf | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/typo3/sysext/beuser/Resources/Private/Language/locallang_mod.xlf b/typo3/sysext/beuser/Resources/Private/Language/locallang_mod.xlf index 4f53058d6f44..7558dd3c2e52 100644 --- a/typo3/sysext/beuser/Resources/Private/Language/locallang_mod.xlf +++ b/typo3/sysext/beuser/Resources/Private/Language/locallang_mod.xlf @@ -10,7 +10,7 @@ <source>Admin backend users</source> </trans-unit> <trans-unit id="mlang_tabs_tab" resname="mlang_tabs_tab"> - <source>Backend users</source> + <source>Backend Users</source> </trans-unit> </body> </file> diff --git a/typo3/sysext/core/Resources/Private/Language/locallang_mod_admintools.xlf b/typo3/sysext/core/Resources/Private/Language/locallang_mod_admintools.xlf index 818fceb04a0c..001579b440e3 100644 --- a/typo3/sysext/core/Resources/Private/Language/locallang_mod_admintools.xlf +++ b/typo3/sysext/core/Resources/Private/Language/locallang_mod_admintools.xlf @@ -7,7 +7,7 @@ <source>Administration and maintenance tools</source> </trans-unit> <trans-unit id="mlang_tabs_tab" resname="mlang_tabs_tab"> - <source>Admin tools</source> + <source>Admin Tools</source> </trans-unit> </body> </file> diff --git a/typo3/sysext/core/Resources/Private/Language/locallang_mod_usertools.xlf b/typo3/sysext/core/Resources/Private/Language/locallang_mod_usertools.xlf index 7eeeb4b528b6..94d8f596f377 100644 --- a/typo3/sysext/core/Resources/Private/Language/locallang_mod_usertools.xlf +++ b/typo3/sysext/core/Resources/Private/Language/locallang_mod_usertools.xlf @@ -7,7 +7,7 @@ <source>Your personal tasks, overview and setup</source> </trans-unit> <trans-unit id="mlang_tabs_tab" resname="mlang_tabs_tab"> - <source>User tools</source> + <source>User Tools</source> </trans-unit> </body> </file> diff --git a/typo3/sysext/core/Tests/Acceptance/Backend/BackendUser/CompareUserCest.php b/typo3/sysext/core/Tests/Acceptance/Backend/BackendUser/CompareUserCest.php index 7d6cbee5774d..cf60448fe96e 100644 --- a/typo3/sysext/core/Tests/Acceptance/Backend/BackendUser/CompareUserCest.php +++ b/typo3/sysext/core/Tests/Acceptance/Backend/BackendUser/CompareUserCest.php @@ -29,8 +29,8 @@ class CompareUserCest { $I->useExistingSession('admin'); - $I->see('Backend users'); - $I->click('Backend users'); + $I->see('Backend Users'); + $I->click('Backend Users'); $I->switchToContentFrame(); } diff --git a/typo3/sysext/core/Tests/Acceptance/Backend/BackendUser/ListGroupCest.php b/typo3/sysext/core/Tests/Acceptance/Backend/BackendUser/ListGroupCest.php index cf40df7aa93d..38df2f2c051e 100644 --- a/typo3/sysext/core/Tests/Acceptance/Backend/BackendUser/ListGroupCest.php +++ b/typo3/sysext/core/Tests/Acceptance/Backend/BackendUser/ListGroupCest.php @@ -29,8 +29,8 @@ class ListGroupCest { $I->useExistingSession('admin'); - $I->see('Backend users'); - $I->click('Backend users'); + $I->see('Backend Users'); + $I->click('Backend Users'); $I->switchToContentFrame(); $I->selectOption('div.module-docheader select.t3-js-jumpMenuBox', 'Backend user groups'); diff --git a/typo3/sysext/core/Tests/Acceptance/Backend/BackendUser/ListUserCest.php b/typo3/sysext/core/Tests/Acceptance/Backend/BackendUser/ListUserCest.php index 327d29e65c7d..aa790f072ec8 100644 --- a/typo3/sysext/core/Tests/Acceptance/Backend/BackendUser/ListUserCest.php +++ b/typo3/sysext/core/Tests/Acceptance/Backend/BackendUser/ListUserCest.php @@ -29,8 +29,8 @@ class ListUserCest { $I->useExistingSession('admin'); - $I->see('Backend users'); - $I->click('Backend users'); + $I->see('Backend Users'); + $I->click('Backend Users'); $I->switchToContentFrame(); } diff --git a/typo3/sysext/lowlevel/Resources/Private/Language/locallang_mod.xlf b/typo3/sysext/lowlevel/Resources/Private/Language/locallang_mod.xlf index 0e3bd6c181e5..597cc6325965 100644 --- a/typo3/sysext/lowlevel/Resources/Private/Language/locallang_mod.xlf +++ b/typo3/sysext/lowlevel/Resources/Private/Language/locallang_mod.xlf @@ -10,7 +10,7 @@ <source>Here you can check the integrity of the database tables configured by the $TCA. For instance all records must belong to a page record. In addition the existence of uploaded files attached to records (normally residing in uploads/* folders) are verified as well. You can also get a view of the total pagetree including deleted pages. Finally you've got access to a global database search facility.<br /><em>Access for 'admin' users only!</em></source> </trans-unit> <trans-unit id="mlang_tabs_tab" resname="mlang_tabs_tab"> - <source>DB check</source> + <source>DB Check</source> </trans-unit> </body> </file> diff --git a/typo3/sysext/setup/Resources/Private/Language/locallang_mod.xlf b/typo3/sysext/setup/Resources/Private/Language/locallang_mod.xlf index 76b4460c090d..650f069c191b 100644 --- a/typo3/sysext/setup/Resources/Private/Language/locallang_mod.xlf +++ b/typo3/sysext/setup/Resources/Private/Language/locallang_mod.xlf @@ -10,7 +10,7 @@ <source>This module allows you to customize your backend user profile. Here you can change your active system language, name and email address. You may also configure other general features in the system.</source> </trans-unit> <trans-unit id="mlang_tabs_tab" resname="mlang_tabs_tab"> - <source>User settings</source> + <source>User Settings</source> </trans-unit> </body> </file> -- GitLab