Add Catalan language support (#12926)

Co-authored-by: Oliver <oliver.henry.walters@gmail.com>
This commit is contained in:
Fran Quinto
2026-09-26 14:29:44 +10:00
committed by GitHub
co-authored by Oliver
parent 979ddb3f06
commit 600c2cc053
6 changed files with 25154 additions and 0 deletions
@@ -19,6 +19,7 @@ from django.utils.translation import gettext_lazy as _
LOCALES = [ LOCALES = [
('ar', _('Arabic')), ('ar', _('Arabic')),
('bg', _('Bulgarian')), ('bg', _('Bulgarian')),
('ca', _('Catalan')),
('cs', _('Czech')), ('cs', _('Czech')),
('da', _('Danish')), ('da', _('Danish')),
('de', _('German')), ('de', _('German')),
File diff suppressed because it is too large Load Diff
+1
View File
@@ -2,6 +2,7 @@
"locales": [ "locales": [
"ar", "ar",
"bg", "bg",
"ca",
"cs", "cs",
"da", "da",
"de", "de",
@@ -21,6 +21,7 @@ export const getSupportedLanguages = (): Record<string, string> => {
return { return {
ar: 'العربية', ar: 'العربية',
bg: 'Български', bg: 'Български',
ca: 'Català',
cs: 'Čeština', cs: 'Čeština',
da: 'Dansk', da: 'Dansk',
de: 'Deutsch', de: 'Deutsch',
+4
View File
@@ -0,0 +1,4 @@
import { Messages } from '@lingui/core';
declare const messages: Messages;
export { messages };
File diff suppressed because it is too large Load Diff