Skip to content
#

i18n

Here are 2,125 public repositories matching this topic...

react-boilerplate
vivek9716
vivek9716 commented Apr 25, 2020

Before opening a new issue, please take a moment to review our community guidelines to make the contribution process easy and effective for everyone involved.

Description

A clear and concise description of what the bug is.

Steps to reproduce

Steps to reproduce the behavior:

(Add link to a dem

langpavel
langpavel commented Oct 24, 2017

Too wide (and falsy) segregation of GraphQL Types and Resolvers

The first example of this is new ObjectType in src/data/queries/index.js importing fields.
Fields should be taken in context of parent type, not as standalone information.

This can ensure some users that custom types cannot have own field resolvers which is false.

In fact, much of fields which can have own resolvers

pancake-boy
pancake-boy commented Apr 8, 2020

vue & vue-i18n version

8.15.4

Steps to reproduce

add missing handler:

i18n.missing = (locale: Locale, key: Path) => {
if (i18n.te(key, i18n.fallbackLocale)) {
return i18n.t(key, i18n.fallbackLocale).toString();
}

return ''; // instead of showing the key + warning
};

What is Expected?

no warnings about missing key

What is actually happening?

console

ckarmy
ckarmy commented Jan 4, 2019

I download the ZIP and run npm install but then I run expo start and I get:

[11:17:11] Starting project at /Volumes/Sata/repositories/snowflake copy
[11:17:12] Expo DevTools is running at http://localhost:19002
[11:17:12] Error: Missing app.json. See https://docs.expo.io/
[11:17:12] No Expo configuration found. Are you sure this is a project directory

How I solve this?

Th

angular-translate
MickL
MickL commented Mar 25, 2019

The documentation is very confusing about "installation" and should be updated/simplified. I have:

  • A shared module
  • Lazy loaded modules
  • AOT compilation (which becaume the default on Angular CLI)

Do i need to apply all 3 of the mentioned headlines to this topics? When I have the shared module, does it work out of the box with lazy loaded modules? Also i should export the TranslateModul

lucasecdb
lucasecdb commented Apr 26, 2020

Describe the bug

This is an issue I encountered while migrating from the 3.0.0-5 version to 3.0.0-11. I probably have to use make-plural somewhere in my app, but I don't know where because the migration docs didn't mention it.

To Reproduce

Steps to reproduce the behavior, possibly with minimal code sample, e.g:

import { plural } from '@lingui/macro'
import { useL
weblate
StefanGreffenius
StefanGreffenius commented Dec 10, 2019

Given this code:

# foobar.html.slim

= select_tag :foobar, options_for_select([]),
  data: {\
    "blank-option-label" => t(\
      'form.blank_option_label',
    ),
  }

when i run i18n-tasks unused i see that form.blank_option_label isn't used. When i write it like this it works:

# foobar.html.slim

= select_tag :foobar, options_for_select([]),
  data
MJacred
MJacred commented Jan 3, 2020

Reproduction steps:

have a localization file, e.g. active.en.toml, with the content Test = "" and run the following command in your terminal in the appropriate directory:

goi18n merge active.*.toml

to generate your updated translate.*.toml files.

Analysis

The execution of the above mentioned command will cause a nil reference exception here
https://github.com/nick

Improve this page

Add a description, image, and links to the i18n 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 i18n topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.