mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 20:15:01 +00:00
Adding Catalan to user pref dropdown, moment.js.
This commit is contained in:
parent
e160438a90
commit
f044459fda
1 changed files with 4 additions and 0 deletions
4
ui/src/utils.ts
vendored
4
ui/src/utils.ts
vendored
|
@ -8,6 +8,7 @@ import 'moment/locale/ru';
|
|||
import 'moment/locale/nl';
|
||||
import 'moment/locale/it';
|
||||
import 'moment/locale/fi';
|
||||
import 'moment/locale/ca';
|
||||
|
||||
import {
|
||||
UserOperation,
|
||||
|
@ -252,6 +253,7 @@ export function debounce(
|
|||
}
|
||||
|
||||
export const languages = [
|
||||
{ code: 'ca', name: 'Català' },
|
||||
{ code: 'en', name: 'English' },
|
||||
{ code: 'eo', name: 'Esperanto' },
|
||||
{ code: 'es', name: 'Español' },
|
||||
|
@ -302,6 +304,8 @@ export function getMomentLanguage(): string {
|
|||
lang = 'it';
|
||||
} else if (lang.startsWith('fi')) {
|
||||
lang = 'fi';
|
||||
} else if (lang.startsWith('ca')) {
|
||||
lang = 'ca';
|
||||
} else {
|
||||
lang = 'en';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue