Skip to content
#

internationalization

Here are 864 public repositories matching this topic...

Maskim
Maskim commented Nov 2, 2020

Hello,

I'm using vue-i18n on my nuxt app with typescript.

I have a simple question :
Why in

declare module 'vue/types/options' {
	interface ComponentOptions<V extends Vue> {
		i18n?: {
			messages?: VueI18n.LocaleMessages
			dateTimeFormats?: VueI18n.DateTimeFormats
			numberFormats?: VueI18n.NumberFormats
			sharedMessages?: VueI18n.LocaleMessages
		}
	}
}

`local

pauloborges
pauloborges commented Feb 5, 2021

Describe the bug

Given a message like {input, plural, other {# + #}}, one would expect both # placeholders getting replaced by the plural value. But only the first one is actually replaced.

To Reproduce

import { plural } from "@lingui/macro"

export default function App() {
  const message = plural(5, {
    other: '# + #
  })
  return <p>{message}</p>
}

Improve this page

Add a description, image, and links to the internationalization topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the internationalization topic, visit your repo's landing page and select "manage topics."

Learn more