objecttothis

Results 411 comments of objecttothis

@zulus manually adding the project nature fixed the problem. Can the "Create Remote Project" feature be modified to add these natures automatically?

> @jekkos I'm making these changes ... you correct me if I don't do something right ... I've always done things my way. it's not the best but it has...

It is already fixed in the next release which migrates the code to CodeIgniter 4.x. That project is still under way. You are welcome to help speed it along by...

> Nope. I prefer Chili 5.1 and Paprika 2.0 @SteveIreland those are Linux distributions. Spices are nice too though 😂

> I have Mint 21.1 / Cinnamon. Can you use that? Any OS is fine as long as you can run the appropriate AMP stack on it.

You'll need the code on your local branch which you can get by cloning or checking out the ci4-upgrade branch. Then you need to build the code which I believe...

> It looks like what I need to read to refresh my dev env to the latest and greatest. Yes, though I think it may be changing soon since I...

@jekkos In my troubleshooting I was just noticing good news and bad news. The good news is that the CI4 language loader is working as expected. The bad news is...

btw, I think the reason that weblate was having issues with the single quotes is because of the string interpolation. on the PHP side. You may notice the 2nd image...

Also, string interpolation of localization calls is slightly different in CI4. For example: ``` [/application/language/en-US/login_lang.php] $lang["login_welcome"] = "Welcome to %1!"; [/application/views/login.php] ``` Becomes ``` [/app/language/en-US/Login.php] "welcome" => "Welcome to {install_name}",...