Skip to content

Commit b25209f

Browse files
committed
Settings: Refactor list of supported user interface locales
Signed-off-by: Michael Mayer <michael@photoprism.app>
1 parent 0a58484 commit b25209f

File tree

2 files changed

+187
-183
lines changed

2 files changed

+187
-183
lines changed

frontend/src/locales.js

+185
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,191 @@ export const Locale = () => {
1414
};
1515
};
1616

17+
// Contains the supported locales, their names and properties.
18+
export let Options = [
19+
{
20+
text: "English", // English
21+
translated: "English",
22+
value: "en",
23+
},
24+
{
25+
text: "Afrikaans", // Afrikaans (South Africa)
26+
value: "af",
27+
},
28+
{
29+
text: "Bahasa Indonesia", // Bahasa Indonesia
30+
value: "id",
31+
},
32+
{
33+
text: "Català", // Catalan
34+
value: "ca",
35+
},
36+
{
37+
text: "Čeština", // Czech
38+
value: "cs",
39+
},
40+
{
41+
text: "Dansk", // Danish
42+
value: "da",
43+
},
44+
{
45+
text: "Deutsch", // German
46+
value: "de",
47+
},
48+
{
49+
text: "Eesti", // Estonian
50+
value: "et",
51+
},
52+
{
53+
text: "Español", // Spanish
54+
value: "es",
55+
},
56+
{
57+
text: "Euskara", // Basque
58+
value: "eu",
59+
},
60+
{
61+
text: "Français", // French
62+
value: "fr",
63+
},
64+
{
65+
text: "Gaeilge", // Irish
66+
value: "ga",
67+
},
68+
{
69+
text: "Ελληνικά", // Greek
70+
value: "el",
71+
},
72+
{
73+
text: "עברית", // Hebrew
74+
value: "he",
75+
rtl: true,
76+
},
77+
{
78+
text: "Hrvatski", // Croatian
79+
value: "hr",
80+
},
81+
{
82+
text: "Lietuvis", // Lithuanian
83+
value: "lt",
84+
},
85+
{
86+
text: "Magyar", // Hungarian
87+
value: "hu",
88+
},
89+
{
90+
text: "Melayu", // Malay
91+
value: "ms",
92+
},
93+
{
94+
text: "Norsk (Bokmål)", // Norwegian
95+
value: "nb",
96+
},
97+
{
98+
text: "Italiano", // Italian
99+
value: "it",
100+
},
101+
{
102+
text: "Nederlands", // Dutch
103+
value: "nl",
104+
},
105+
{
106+
text: "Polski", // Polish
107+
value: "pl",
108+
},
109+
{
110+
text: "Português", // Portuguese (Portugal)
111+
value: "pt",
112+
},
113+
{
114+
text: "Português do Brasil", // Portuguese (Brazil)
115+
value: "pt_BR",
116+
},
117+
{
118+
text: "Slovenčina", // Slovak
119+
value: "sk",
120+
},
121+
{
122+
text: "Slovenščina", // Slovene
123+
value: "sl",
124+
},
125+
{
126+
text: "Suomi", // Finnish
127+
value: "fi",
128+
},
129+
{
130+
text: "Svenska", // Swedish
131+
value: "sv",
132+
},
133+
{
134+
text: "Română", // Romanian
135+
value: "ro",
136+
},
137+
{
138+
text: "Türkçe", // Turkish
139+
value: "tr",
140+
},
141+
{
142+
text: "عربى", // Arabic
143+
value: "ar",
144+
rtl: true,
145+
},
146+
{
147+
text: "کوردی", // Kurdish
148+
value: "ku",
149+
rtl: true,
150+
},
151+
{
152+
text: "Беларуская", // Belarusian
153+
value: "be",
154+
},
155+
{
156+
text: "Български", // Bulgarian
157+
value: "bg",
158+
},
159+
{
160+
text: "Українська", // Ukrainian
161+
value: "uk",
162+
},
163+
{
164+
text: "Русский", // Russian
165+
value: "ru",
166+
},
167+
{
168+
text: "简体中文", // Chinese (Simplified)
169+
value: "zh",
170+
},
171+
{
172+
text: "繁體中文", // Chinese (Traditional)
173+
value: "zh_TW",
174+
},
175+
{
176+
text: "日本語", // Japanese
177+
value: "ja_JP",
178+
},
179+
{
180+
text: "한국어", // Korean
181+
value: "ko",
182+
},
183+
{
184+
text: "Tiếng Việt", // Vietnamese
185+
value: "vi",
186+
},
187+
{
188+
text: "हिन्दी", // Hindi
189+
value: "hi",
190+
},
191+
{
192+
text: "ภาษาไทย", // Thai
193+
value: "th",
194+
},
195+
{
196+
text: "فارسی", // Persian
197+
value: "fa",
198+
rtl: true,
199+
},
200+
];
201+
17202
// Returns the Vuetify UI messages translated with Gettext.
18203
export const Messages = ($gettext) => {
19204
return {

frontend/src/options/options.js

+2-183
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { $gettext } from "common/gettext";
33
import { Info } from "luxon";
44
import { $config } from "app/session";
55
import * as media from "common/media";
6+
import * as locales from "../locales";
67

78
export const GmtOffsets = [
89
{ ID: "GMT", Name: "Etc/GMT" },
@@ -114,189 +115,7 @@ export const MonthsShort = () => {
114115
};
115116

116117
// Available locales sorted by region and alphabet.
117-
export const Languages = () => [
118-
{
119-
text: "English", // English
120-
translated: "English",
121-
value: "en",
122-
},
123-
{
124-
text: "Afrikaans", // Afrikaans (South Africa)
125-
value: "af",
126-
},
127-
{
128-
text: "Bahasa Indonesia", // Bahasa Indonesia
129-
value: "id",
130-
},
131-
{
132-
text: "Català", // Catalan
133-
value: "ca",
134-
},
135-
{
136-
text: "Čeština", // Czech
137-
value: "cs",
138-
},
139-
{
140-
text: "Dansk", // Danish
141-
value: "da",
142-
},
143-
{
144-
text: "Deutsch", // German
145-
value: "de",
146-
},
147-
{
148-
text: "Eesti", // Estonian
149-
value: "et",
150-
},
151-
{
152-
text: "Español", // Spanish
153-
value: "es",
154-
},
155-
{
156-
text: "Euskara", // Basque
157-
value: "eu",
158-
},
159-
{
160-
text: "Français", // French
161-
value: "fr",
162-
},
163-
{
164-
text: "Gaeilge", // Irish
165-
value: "ga",
166-
},
167-
{
168-
text: "Ελληνικά", // Greek
169-
value: "el",
170-
},
171-
{
172-
text: "עברית", // Hebrew
173-
value: "he",
174-
rtl: true,
175-
},
176-
{
177-
text: "Hrvatski", // Croatian
178-
value: "hr",
179-
},
180-
{
181-
text: "Lietuvis", // Lithuanian
182-
value: "lt",
183-
},
184-
{
185-
text: "Magyar", // Hungarian
186-
value: "hu",
187-
},
188-
{
189-
text: "Melayu", // Malay
190-
value: "ms",
191-
},
192-
{
193-
text: "Norsk (Bokmål)", // Norwegian
194-
value: "nb",
195-
},
196-
{
197-
text: "Italiano", // Italian
198-
value: "it",
199-
},
200-
{
201-
text: "Nederlands", // Dutch
202-
value: "nl",
203-
},
204-
{
205-
text: "Polski", // Polish
206-
value: "pl",
207-
},
208-
{
209-
text: "Português", // Portuguese (Portugal)
210-
value: "pt",
211-
},
212-
{
213-
text: "Português do Brasil", // Portuguese (Brazil)
214-
value: "pt_BR",
215-
},
216-
{
217-
text: "Slovenčina", // Slovak
218-
value: "sk",
219-
},
220-
{
221-
text: "Slovenščina", // Slovene
222-
value: "sl",
223-
},
224-
{
225-
text: "Suomi", // Finnish
226-
value: "fi",
227-
},
228-
{
229-
text: "Svenska", // Swedish
230-
value: "sv",
231-
},
232-
{
233-
text: "Română", // Romanian
234-
value: "ro",
235-
},
236-
{
237-
text: "Türkçe", // Turkish
238-
value: "tr",
239-
},
240-
{
241-
text: "عربى", // Arabic
242-
value: "ar",
243-
rtl: true,
244-
},
245-
{
246-
text: "کوردی", // Kurdish
247-
value: "ku",
248-
rtl: true,
249-
},
250-
{
251-
text: "Беларуская", // Belarusian
252-
value: "be",
253-
},
254-
{
255-
text: "Български", // Bulgarian
256-
value: "bg",
257-
},
258-
{
259-
text: "Українська", // Ukrainian
260-
value: "uk",
261-
},
262-
{
263-
text: "Русский", // Russian
264-
value: "ru",
265-
},
266-
{
267-
text: "简体中文", // Chinese (Simplified)
268-
value: "zh",
269-
},
270-
{
271-
text: "繁體中文", // Chinese (Traditional)
272-
value: "zh_TW",
273-
},
274-
{
275-
text: "日本語", // Japanese
276-
value: "ja_JP",
277-
},
278-
{
279-
text: "한국어", // Korean
280-
value: "ko",
281-
},
282-
{
283-
text: "Tiếng Việt", // Vietnamese
284-
value: "vi",
285-
},
286-
{
287-
text: "हिन्दी", // Hindi
288-
value: "hi",
289-
},
290-
{
291-
text: "ภาษาไทย", // Thai
292-
value: "th",
293-
},
294-
{
295-
text: "فارسی", // Persian
296-
value: "fa",
297-
rtl: true,
298-
},
299-
];
118+
export const Languages = () => (window.__LOCALES__ ? window.__LOCALES__ : locales.Options);
300119

301120
export const ItemsPerPage = () => [
302121
{ text: "10", title: "10", value: 10 },

0 commit comments

Comments
 (0)