1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00

fix: Add date-fns locale, include to languages

This commit is contained in:
Maksim Eltyshev 2024-09-18 14:16:18 +02:00
parent 48958138cc
commit c4e3efa6c0
4 changed files with 9 additions and 6 deletions

View file

@ -1,4 +1,8 @@
import dateFns from 'date-fns/locale/ar';
export default {
dateFns,
format: {
date: 'M/d/yyyy',
time: 'p',
@ -153,8 +157,7 @@ export default {
subscribeToMyOwnCardsByDefault: 'الاشتراك في بطاقاتي الخاصة إفتراضياً',
taskActions_title: 'إجراءات المهمة',
tasks: 'المهام',
thereIsNoPreviewAvailableForThisAttachment:
'لا يوجد معاينة متاحة لهذا المرفق.',
thereIsNoPreviewAvailableForThisAttachment: 'لا يوجد معاينة متاحة لهذا المرفق.',
time: 'الوقت',
title: 'العنوان',
userActions_title: 'إجراءات المستخدم',

View file

@ -1,11 +1,8 @@
import merge from 'lodash/merge';
import login from './login';
import core from './core';
export default {
language: 'ar-YE',
country: 'ye',
name: 'العربية',
embeddedLocale: merge(login, core),
embeddedLocale: login,
};

View file

@ -1,3 +1,4 @@
import arYE from './ar-YE';
import bgBG from './bg-BG';
import csCZ from './cs-CZ';
import daDK from './da-DK';
@ -25,6 +26,7 @@ import zhCN from './zh-CN';
import zhTW from './zh-TW';
const locales = [
arYE,
bgBG,
csCZ,
daDK,

View file

@ -6,6 +6,7 @@
*/
const LANGUAGES = [
'ar-YE',
'bg-BG',
'cs-CZ',
'da-DK',