Code Monkey home page Code Monkey logo

Comments (3)

rlanvin avatar rlanvin commented on July 25, 2024

Hello, I think that's a good idea. I'm a bit busy at the moment but I'll try to have a look at this soon!

from php-rrule.

rlanvin avatar rlanvin commented on July 25, 2024

@lonnieezell I did a quick test - my first idea is simply to expose the path where to find the files as a option of humanReadable. Something like this:

echo $rrule->humanReadable([
	'base_path' => __DIR__.'/custom_translations'
]);

This is easy to implement however it's a "all or nothing" option, i.e. every locale file that you doesn't exist in this custom directory will be treated as missing (it will never look into the default directory if this option is set). This means if you want to customize French and also have the default English, you have to copy both fr.php and en.php into your custom directory.

Another approach would be to provide a map for each file, something like:

echo $rrule->humanReadable([
	'file_paths' => ['fr' => __DIR__.'/custom_translations/']
]);

Then it would only look into your custom directory if it wants to load the file for French translations (fr.php), but look into the default directory for anything else.

The two options are not mutually exclusive and if necessary I guess I could implement both.

Since you are the one with an actual use case for this feature, what's your opinion?

from php-rrule.

lonnieezell avatar lonnieezell commented on July 25, 2024

Thanks for looking into this!

I don't personally have any need for location at this time. However, the first option seems the easiest to use from a developer's perspective. Could you combine the two options? Like in the first one, pass in a custom directory path for any new files, but merge that with the existing one so that it has a fallback directory? The only problem there is knowing what language the directory is supposed to be for, so maybe something like:

echo $rrule->humanReadable([
	'en' => __DIR__.'/custom_translations'
]);

from php-rrule.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.