Browse Source

feat: add missing ta_IN translations (#39936)

Co-authored-by: kirubashankar <kirubashankar@ghoshak.com>
pull/39945/head
Kirubashankar K 2 years ago
committed by GitHub
parent
commit
d66b2f5a65
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      components/date-picker/locale/ta_IN.ts
  2. 67
      components/locale/ta_IN.ts

7
components/date-picker/locale/ta_IN.ts

@ -8,6 +8,13 @@ const locale: PickerLocale = {
lang: {
placeholder: 'தேதியைத் தேர்ந்தெடுக்கவும்',
rangePlaceholder: ['தொடக்க தேதி', 'கடைசி தேதி'],
quarterPlaceholder: 'காலாண்டைத் தேர்ந்தெடுக்கவும்',
monthPlaceholder: 'மாதத்தைத் தேர்ந்தெடுக்கவும்',
weekPlaceholder: 'வாரத்தைத் தேர்ந்தெடுக்கவும்',
rangeYearPlaceholder: ['தொடக்க ஆண்டு', 'இறுதி ஆண்டு'],
rangeQuarterPlaceholder: ['காலாண்டு தொடக்கம்', 'இறுதி காலாண்டு'],
rangeMonthPlaceholder: ['தொடக்க மாதம்', 'இறுதி மாதம்'],
rangeWeekPlaceholder: ['வாரம் தொடங்கு', 'இறுதி வாரம்'],
...CalendarLocale,
},
timePickerLocale: {

67
components/locale/ta_IN.ts

@ -4,6 +4,8 @@ import DatePicker from '../date-picker/locale/ta_IN';
import type { Locale } from '.';
import TimePicker from '../time-picker/locale/ta_IN';
const typeTemplate = '${label} is not a valid ${type}';
const localeValues: Locale = {
locale: 'ta',
Pagination,
@ -22,6 +24,14 @@ const localeValues: Locale = {
selectAll: 'அனைத்தையும் தேர்வுசெய்',
selectInvert: 'தலைகீழாக மாற்று',
sortTitle: 'தலைப்பை வரிசைப்படுத்தவும்',
filterEmptyText: 'No filters',
filterCheckall: 'அனைத்து பொருட்களையும் தேர்ந்தெடுக்கவும்',
filterSearchPlaceholder: 'வடிப்பான்களில் தேடவும்',
expand: 'வரிசையை விரிவாக்கு',
collapse: 'வரிசையைச் சுருக்கு',
triggerDesc: 'இறங்குவரிசையை வரிசைப்படுத்த கிளிக் செய்யவும்',
triggerAsc: 'ஏறுவரிசையில் வரிசைப்படுத்த கிளிக் செய்யவும்',
cancelSort: 'வரிசையாக்கத்தை ரத்து செய்ய கிளிக் செய்யவும்',
},
Modal: {
okText: 'சரி',
@ -61,6 +71,63 @@ const localeValues: Locale = {
PageHeader: {
back: 'பின் செல்லவும்',
},
Form: {
optional: '(optional)',
defaultValidateMessages: {
default: '${label}க்கான புல சரிபார்ப்பு பிழை',
required: '${label} ஐ உள்ளிடவும்',
enum: '${label} கண்டிப்பாக [${enum}] இல் ஒன்றாக இருக்க வேண்டும்',
whitespace: '${label} வெற்று எழுத்தாக இருக்கக்கூடாது',
date: {
format: '${label} தேதி வடிவம் தவறானது',
parse: '${label}ஐ தேதியாக மாற்ற முடியாது',
invalid: '${label} என்பது தவறான தேதி',
},
types: {
string: typeTemplate,
method: typeTemplate,
array: typeTemplate,
object: typeTemplate,
number: typeTemplate,
date: typeTemplate,
boolean: typeTemplate,
integer: typeTemplate,
float: typeTemplate,
regexp: typeTemplate,
email: typeTemplate,
url: typeTemplate,
hex: typeTemplate,
},
string: {
len: '${label} கண்டிப்பாக ${len} எழுத்துகளாக இருக்க வேண்டும்',
min: '${label} குறைந்தது ${min} எழுத்துகளாக இருக்க வேண்டும்',
max: '${label} ${max} எழுத்துகள் வரை இருக்க வேண்டும்',
range: '${label} கண்டிப்பாக ${min}-${max} எழுத்துகளுக்கு இடையில் இருக்க வேண்டும்',
},
number: {
len: '${label} கண்டிப்பாக ${len}க்கு சமமாக இருக்க வேண்டும்',
min: '${label} குறைந்தபட்சம் ${min} ஆக இருக்க வேண்டும்',
max: '${label} அதிகபட்சம் ${max} ஆக இருக்க வேண்டும்',
range: '${label} கண்டிப்பாக ${min}-${max} இடையே இருக்க வேண்டும்',
},
array: {
len: '${len} ${label} ஆக இருக்க வேண்டும்',
min: 'குறைந்தது ${min} ${label}',
max: 'அதிகபட்சம் ${max} ${label}',
range: '${label} இன் தொகை கண்டிப்பாக ${min}-${max} இடையே இருக்க வேண்டும்',
},
pattern: {
mismatch: '${label} ஆனது ${pattern} வடிவத்துடன் பொருந்தவில்லை',
},
},
},
Image: {
preview: 'முன்னோட்ட',
},
QRCode: {
expired: 'QR குறியீடு காலாவதியானது',
refresh: 'புதுப்பிப்பு',
},
};
export default localeValues;

Loading…
Cancel
Save