Git Product home page Git Product logo

Comments (2)

mikrobi avatar mikrobi commented on August 27, 2024

There's no need to change anything on Babel. You can do this already in several ways:

  1. Use the default babelLink chunk and change the lexicons entries for babel.language_xy (as you said). But remember: this will also change the labels in the manager!
  2. Create your own chunk and your own lexicon entries e.g. mysite.language_xy and in the chunk you'll use
    [[%mysite.language_[[+cultureKey]]? &namespace=your-namespace &topic=your-topic]]
  3. Create your own chunk and a snippet which generates the labels out of the cultureKey: Chunk:
    <a href="[[+url]]>[[mySnippet? &cultureKey=[[+cultureKey]]

And in your snippet something like that:
$cultureKey = $modx->getOption(....);
$output = '';
switch ($cultureKey) {
case 'en':
$output = 'English Version';
break;
case 'de':
$output = 'German Version';
break;
default: $output = '???';
}
return $output;

I hope this helps.

Cheers,
Jakob

from babel.

anselmh avatar anselmh commented on August 27, 2024

Okay, didn't know that. Found that 2nd solution seems to be the best. No need for another snippet etc. and easy to manage.

best,
Anselm

from babel.

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.