From 47c7649c9b2ab8af16f0f75629d868203d61a76c Mon Sep 17 00:00:00 2001 From: AbhijeetGaware <56472463+AbhijeetGaware@users.noreply.github.com> Date: Fri, 29 May 2020 17:51:32 +0530 Subject: [PATCH] Added Irish(ga_IE) locale --- src/locale/ga_IE.ts | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/locale/ga_IE.ts diff --git a/src/locale/ga_IE.ts b/src/locale/ga_IE.ts new file mode 100644 index 000000000..7e37306a6 --- /dev/null +++ b/src/locale/ga_IE.ts @@ -0,0 +1,33 @@ +import { Locale } from '../interface'; + +const locale: Locale = { + locale: 'ga_IE', + today: 'inniu', + now: 'anois', + backToToday: 'Ar ais inniu', + ok: 'ceart go leor', + clear: 'soiléir', + month: 'mhí', + year: 'bhliain', + timeSelect: 'roghnaigh am', + dateSelect: 'roghnaigh dáta', + weekSelect: 'Roghnaigh seachtain', + monthSelect: 'Roghnaigh mí', + yearSelect: 'Roghnaigh bliain', + decadeSelect: 'Roghnaigh deich mbliana', + yearFormat: 'YYYY', + dateFormat: 'D/M/YYYY', + dayFormat: 'D', + dateTimeFormat: 'D/M/YYYY HH:mm:ss', + monthBeforeYear: true, + previousMonth: 'An mhí roimhe seo (PageUp)', + nextMonth: 'An mhí seo chugainn (PageDown)', + previousYear: 'Anuraidh (Control + left)', + nextYear: 'An bhliain seo chugainn (Control + right)', + previousDecade: 'Le deich mbliana anuas', + nextDecade: 'Deich mbliana amach romhainn', + previousCentury: 'An chéid seo caite', + nextCentury: 'An chéad aois eile', +}; + +export default locale;