Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make TLV compatible with master-branch => composer.json #71

Open
2 of 4 tasks
Crizz0 opened this issue Aug 29, 2021 · 5 comments
Open
2 of 4 tasks

Make TLV compatible with master-branch => composer.json #71

Crizz0 opened this issue Aug 29, 2021 · 5 comments

Comments

@Crizz0
Copy link
Member

Crizz0 commented Aug 29, 2021

The current master will use a composer.json for the language files: https://github.com/phpbb/phpbb/blob/master/phpBB/language/en/composer.json

We should add some functions to check this file:

	"extra": {
		"language-iso": "en",
		"english-name": "British English",
		"local-name": "British English",
		"phpbb-version": "4.0.0-a1-dev"
	}
  • Maybe improve core code, to add reCAPTCHA and plural rules to the composer.json, too.
@battye
Copy link
Member

battye commented Feb 10, 2022

Hi @Crizz0 - I'm taking a look at this now. Should this just be the lowest level of error message (notice) at this stage because not many language packs have composer.json files yet? Or do you want to change the rules so it becomes mandatory now and translators become familiar with adding the json file in there?

@Crizz0
Copy link
Member Author

Crizz0 commented Feb 10, 2022

This should introduce a new optional version 4.0 to validate against.

With default 3.3 composer.json should be not asked for.

But for 4.0 this should be mandatory then, yes. But the iso.txt and what else is replaced by the composer.json should not be there, and flagged as additional file.

battye added a commit to battye/phpbb-translation-validator that referenced this issue Oct 20, 2022
@battye
Copy link
Member

battye commented Oct 20, 2022

@Crizz0 Could you please explain this line a bit more?

Maybe improve core code, to add reCAPTCHA and plural rules to the composer.json, too.

Is that something different to what was merged in #59?

@Crizz0
Copy link
Member Author

Crizz0 commented Oct 20, 2022

Hi,

phpBB-master removed the current config-file for phpBB 3.3.x and lower: the phpBB/language/en/iso.txt is gone.

Instead there is a composer.json used now: https://github.com/phpbb/phpbb/blob/master/phpBB/language/en/composer.json

The validator needs to be updated for this composer.json.

Although the composer.json is the new config-file for translations, there are other files which contain "setup information" like: https://github.com/phpbb/phpbb/blob/master/phpBB/language/en/common.php#L45-L53 or https://github.com/phpbb/phpbb/blob/master/phpBB/language/en/captcha_recaptcha.php#L42

So maybe it is worth to update the phpBB-core in that relation, that those information are all within the new composer.json. Which will lead to a further update to the TVL.

Maybe @marc1706 has some thoughts on this, too. :)

@battye
Copy link
Member

battye commented Oct 20, 2022

The validator needs to be updated for this composer.json.

Is the change in battye@fbd2740 what you had in mind for the composer.json? (e.g. check that the 'extra' information is present, that the four attributes are there, that the version number matches)

phpBB-master removed the current config-file for phpBB 3.3.x and lower: the phpBB/language/en/iso.txt is gone.

I'll test it again, but I think if the iso.txt file is removed from the master package then it would automatically not check for it in the translation package (because it checks that the file structure is the same, so if it's not in the source then it will pretend it doesn't exist). There are a few mentions of sourceIso in the code but I'm pretty sure that's just shorthand for the language name like de or fr or en.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants