Code Monkey home page Code Monkey logo

Comments (7)

notzippy avatar notzippy commented on May 28, 2024

The source code should help with this.

from revel.

crownedgrouse avatar crownedgrouse commented on May 28, 2024

Yes from what I understand, a second arg can specify lang,
but I still do not understand this , later in code :

lang, _ = Config.String(defaultLanguageOption)

BTW, documentation is missing on this.

from revel.

notzippy avatar notzippy commented on May 28, 2024

That only occurs if the language passed in is empty, so it would default to the global configuration value set in the config i18n.default_language. Which appears to be undocumented configuratuin option :-(

from revel.

crownedgrouse avatar crownedgrouse commented on May 28, 2024

Yes I tried to set to "fr" in Config, but instead to have
"about a second ago"
I got
"??? about a second ??? ??? ago ???"

I will try to dig further and propose a documentation if I understand what's going on ...

from revel.

notzippy avatar notzippy commented on May 28, 2024

Sounds like you are missing the french translations for about a second and ago. the way the function works is the configuration map timeAgoLangs caches the message translations for everything in the MessageFunc call

	timeAgoLangs[lang] = timeago.Config{
		PastPrefix:   "",
		PastSuffix:   " " + MessageFunc(lang, "ago"),
		FuturePrefix: MessageFunc(lang, "in") + " ",
		FutureSuffix: "",
		Periods: []timeago.FormatPeriod{
			{time.Second, MessageFunc(lang, "about a second"), MessageFunc(lang, "%d seconds")},
			{time.Minute, MessageFunc(lang, "about a minute"), MessageFunc(lang, "%d minutes")},
			{time.Hour, MessageFunc(lang, "about an hour"), MessageFunc(lang, "%d hours")},
			{timeago.Day, MessageFunc(lang, "one day"), MessageFunc(lang, "%d days")},
			{timeago.Month, MessageFunc(lang, "one month"), MessageFunc(lang, "%d months")},
			{timeago.Year, MessageFunc(lang, "one year"), MessageFunc(lang, "%d years")},
		},
		Zero:          MessageFunc(lang, "about a second"),
		Max:           73 * time.Hour,
		DefaultLayout: "2006-01-02",
	}

So you need to define in the french translation file what ago means and about a second and so on...

from revel.

crownedgrouse avatar crownedgrouse commented on May 28, 2024

OK, but by looking at timeago code, there is already a bunch of variables for several languages https://pkg.go.dev/github.com/xeonx/timeago#pkg-variables
So it is a pity having to set it, as code reading is required to list all strings to translate...

What about use those by default and set a config variable to fall back in current behavior?

from revel.

crownedgrouse avatar crownedgrouse commented on May 28, 2024

See PR #1564

from revel.

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.