-
Updated
Apr 26, 2022
internationalization
Here are 1,067 public repositories matching this topic...
-
Updated
Jun 6, 2022 - TypeScript
-
Updated
Jun 3, 2022 - JavaScript
-
Updated
Jun 7, 2022 - Dart
-
Updated
Jun 3, 2022 - JavaScript
-
Updated
Jun 4, 2022 - JavaScript
Describe the bug
The output PO file has comments with a leading period:
#. Your free trial will end on August 6th and will not renew.
#: src/components/routes/billing/Status/Status.tsx:56
msgid "and will not renew."
msgstr ""
To Reproduce
Steps to reproduce the behavior, possibly with minimal code sample, e.g:
import { t } from "@lingui/macro"
cons
Describe the problem
For example, if you try go to a non-existent language of a component, the page will only suggest to go home or to all projects, while it would be better if it linked to the component, or suggested adding a language that you tried to visit. Example: https://hosted.weblate.org/projects/keepassxc/keepassxc-browser-dev/fil/
-
Updated
Jun 2, 2022 - JavaScript
-
Updated
Jun 2, 2022 - C++
-
Updated
Feb 3, 2021 - PHP
Search result count
Search result count is 10.
How can i set the pagesize on user side
If the locale is set using this.translocoLocaleService.setLocale(locale)
(or default) it is overwritten the moment this.translocoService.setActiveLang(lang);
is called.
Because of the https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.service.ts
translocoService.langChanges$
subscription.
There is no property or config to disable
-
Updated
May 30, 2022 - JavaScript
-
Updated
Apr 24, 2022 - PHP
-
Updated
Mar 7, 2021 - C#
-
Updated
Jun 6, 2022 - TypeScript
-
Updated
May 18, 2022 - Python
-
Updated
Jun 1, 2022 - JavaScript
The Problem
The initialization of svelte-i18n sets the preferred language in a global variable.
While this is acceptable for client, it is not acceptable for the server (with SSR).
The server might be async, in which it can proccess at the same time both request for one language and a request for other language.
However, as far as I can see, setting a new locale will override the existin
-
Updated
May 4, 2022 - JavaScript
-
Updated
Mar 7, 2022 - Fluent
-
Updated
Feb 17, 2022 - PHP
-
Updated
Jun 3, 2022 - Dart
-
Updated
May 24, 2022 - Python
-
Updated
May 22, 2019 - TypeScript
-
Updated
Mar 4, 2022 - Java
as we have multi-users using the dashboard in a multi-user single redis instance environment.
connection persistence will leave all the users see the connection.
Improve this page
Add a description, image, and links to the internationalization topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the internationalization topic, visit your repo's landing page and select "manage topics."
Reporting a bug?
Following the doc I expect to be able to use a
Intl.DateTimeFormat
inside the$d
function the same way I do with$n
. But $d only accept string key and object format isn't supported.For exemple :
$d(new Date(), { year: 'numeric' })
But it doesn't work and I have to define all the formats in the config first.It co