it shouldn'tleschek wrote: ↑Fri Sep 09, 2016 4:03 pm Can I translate words between tags<info>--send-email</info>
(in this case--send-email
) in language file: language/xy/cli.php?
Example:To optionally send an email to the new user, use the <info>--send-email</info> option
EDIT: I guess it shouldn't be translated.
phpBB 3.2 language problems
Forum rules
Please do not post support questions regarding installing, updating, or upgrading phpBB 3.3.x. If you need support for phpBB 3.3.x please visit the 3.3.x Support Forum on phpbb.com.
If you have questions regarding writing extensions please post in Extension Writers Discussion to receive proper guidance from our staff and community.
Please do not post support questions regarding installing, updating, or upgrading phpBB 3.3.x. If you need support for phpBB 3.3.x please visit the 3.3.x Support Forum on phpbb.com.
If you have questions regarding writing extensions please post in Extension Writers Discussion to receive proper guidance from our staff and community.
Re: phpBB 3.2 language problems
Re: phpBB 3.2 language problems
There is in phpBB 3.2 RC2 small typo in language file acp/extensions.php. On line 46 is:
'EXTENSION_NOT_INSTALLED' => 'The extension %s is not available. PLease check that you have installed it correctly.',
'EXTENSION_NOT_INSTALLED' => 'The extension %s is not available. PLease check that you have installed it correctly.',
- DavidIQ
- Customisations Team Leader
- Posts: 1904
- Joined: Thu Mar 02, 2006 4:29 pm
- Location: Earth
- Contact:
Re: phpBB 3.2 language problems
Yes it was reported and fixed a few hours after the release.
Re: phpBB 3.2 language problems
Already in Bug Tracker - https://tracker.phpbb.com/browse/PHPBB3-14910
David
Remember: You only know what you know -
and you do not know what you do not know!
Remember: You only know what you know -
and you do not know what you do not know!
Re: phpBB 3.2 language problems
Oh, I'm sorry I didn't check bug tracker.david63 wrote: ↑Mon Dec 19, 2016 12:59 pm Already in Bug Tracker - https://tracker.phpbb.com/browse/PHPBB3-14910
I was trying to update my translation of 3.2 RC2 and here are a few lines I have problem to understand and can't translate:
in file cli.php
- line 89:
'CLI_DESCRIPTION_UPDATE_CHECK_ARGUMENT_1' => 'Name of the extension to check (if all, checks all the extensions)',
Is it mean that if user write "all", then all extensions will be checked? I'm not sure if I can translate word "all". - line 90:
'CLI_DESCRIPTION_UPDATE_CHECK_OPTION_CACHE' => 'Run check command with cache.',
Can I translate it as "Run check command with using of cache"? - Line 93:
'CLI_ERROR_INVALID_STABILITY' => '"%s" is not a valid stability.',
Not sure what this line mean. I guess it could mean ""%s" is not a valid stable version", but I'm not sure. Here is ticket about the issue.
line 131:
$msg = 'Unable to guess the mime type as no guessers are available';
line 133:
$msg .= ' (Did you enable the php_fileinfo extension?)';
when those messages appear, whole updater is switched to English, despite other (Czech) language was selected for updating.
Re: phpBB 3.2 language problems
1. Should be read as
2. yes, it is
3. It is a bit more complex as the valid values are (iirc)
Name of the extension to check (if "all", checks all the extensions)
the first all
is the value to use and shouldn't be translated2. yes, it is
Run check command with using of cache
3. It is a bit more complex as the valid values are (iirc)
stable, rc, beta, alpha, dev
Member of the phpBB Development-Team
No Support via PM
No Support via PM
Re: phpBB 3.2 language problems
Thank you for explanation. I still don't understand completely this:
Can I translate it as
'CLI_ERROR_INVALID_STABILITY' => '"%s" is not a valid stability.',
Can I translate it as
"%s" is not a valid value.
?- 3Di
- Registered User
- Posts: 951
- Joined: Tue Nov 01, 2005 9:50 pm
- Location: Milano 🇮🇹 Frankfurt 🇩🇪
- Contact:
Re: phpBB 3.2 language problems
Free support for our extensions also provided here: phpBB Studio
Looking for a specific feature or alternative option? We will rock you!
Please PM me only to request paid works. Thx. Want to compensate me for my interest? Donate
My development's activity º PhpStorm's proud user º Extensions, Scripts, MOD porting, Update/Upgrades
Looking for a specific feature or alternative option? We will rock you!
Please PM me only to request paid works. Thx. Want to compensate me for my interest? Donate
My development's activity º PhpStorm's proud user º Extensions, Scripts, MOD porting, Update/Upgrades
Re: phpBB 3.2 language problems
Thank you. Finally I understand it.