]> git.mxchange.org Git - friendica.git/commitdiff
cleanup
authornupplaPhil <admin@philipp.info>
Sat, 18 Jan 2020 21:38:31 +0000 (22:38 +0100)
committernupplaPhil <admin@philipp.info>
Sun, 19 Jan 2020 15:31:34 +0000 (16:31 +0100)
doc/translations.md
src/LegacyModule.php

index f12f070655aedc7bf0232110f4fe21f511c4e8bb..a29b0d63bb1fe183ff104f3454f1fac7e7a9c0f0 100644 (file)
@@ -73,14 +73,14 @@ Then run `bin/console po2php view/lang/<language>/messages.po` to update the rel
 
 ### Basic usage
 
-- `Friendica\Core\DI::l10n()->t('Label')` => `Label`
-- `Friendica\Core\DI::l10n()->t('Label %s', 'test')` => `Label test`
+- `Friendica\DI::l10n()->t('Label')` => `Label`
+- `Friendica\DI::l10n()->t('Label %s', 'test')` => `Label test`
 
 ### Plural
 
-- `Friendica\Core\DI::l10n()->tt('Label', 'Labels', 1)` => `Label`
-- `Friendica\Core\DI::l10n()->tt('Label', 'Labels', 3)` => `Labels`
-- `Friendica\Core\DI::l10n()->tt('%d Label', '%d Labels', 1)` => `1 Label`
-- `Friendica\Core\DI::l10n()->tt('%d Label', '%d Labels', 3)` => `3 Labels`
-- `Friendica\Core\DI::l10n()->tt('%d Label', 'Labels %2%s %3%s', 1, 'test', 'test2')` => `Label test test2`
-- `Friendica\Core\DI::l10n()->tt('%d Label', 'Labels %2%s %3%s', 3, 'test', 'test2')` => `Labels test test2`
+- `Friendica\DI::l10n()->tt('Label', 'Labels', 1)` => `Label`
+- `Friendica\DI::l10n()->tt('Label', 'Labels', 3)` => `Labels`
+- `Friendica\DI::l10n()->tt('%d Label', '%d Labels', 1)` => `1 Label`
+- `Friendica\DI::l10n()->tt('%d Label', '%d Labels', 3)` => `3 Labels`
+- `Friendica\DI::l10n()->tt('%d Label', 'Labels %2%s %3%s', 1, 'test', 'test2')` => `Label test test2`
+- `Friendica\DI::l10n()->tt('%d Label', 'Labels %2%s %3%s', 3, 'test', 'test2')` => `Labels test test2`
index 6a627e98b62e4673245b51e6887693d4497c5bd1..ecb21ebc5ba21c84e5141afb60818612a5401ec1 100644 (file)
@@ -27,7 +27,7 @@ class LegacyModule extends BaseModule
        public static function setModuleFile($file_path)
        {
                if (!is_readable($file_path)) {
-                       throw new \Exception(Core\DI::l10n()->t('Legacy module file not found: %s', $file_path));
+                       throw new \Exception(DI::l10n()->t('Legacy module file not found: %s', $file_path));
                }
 
                self::$moduleName = basename($file_path, '.php');