Giter Club home page Giter Club logo

Comments (2)

thekip avatar thekip commented on May 25, 2024

This works as intended. You have declaration of the same id 2 times, so depending on which one came first taking precedence on others.

What you really want is to separate "definition" and "usage" of messages. Because right now extractor treat both your usages as "definition"

// here is definition
msg({ id: 'error.message', message: 'Error message' });

// here is the usage
const test = i18n._({ id: 'error.message' });

To stop the extractor treat your second expression as the definition you need:

// pass a variable
const messageId = 'error.message'; // this can came from backend response, or from other file when defined with `msg`
i18n._(messageId);

// or eplicitly ignore extracting from here: 
 /* lingui-extract-ignore */
i18n._('error.message' );

That's also a better strategy for translating BE messages:

// definition
const authErrors = {
  'not_logged': msg`You are not logged`,
  'user_not_exist': msg`No such user`,
}

// usage
const test = i18n._(authErrors[response.error.code]);

from js-lingui.

MPeloquin avatar MPeloquin commented on May 25, 2024

Ok, thank you, will use this strategy.

from js-lingui.

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.