Skip to content

Commit 7cc1c32

Browse files
Merge pull request #645 from oscarOficial/master
Added Galician Language
2 parents 05f5681 + f221b04 commit 7cc1c32

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,7 @@ Available languages
342342
| fo | Faroese | |
343343
| fr | French | |
344344
| ge | Georgia | |
345+
| gl | Galician | |
345346
| he | Hebrew | |
346347
| hu | Hungarian | |
347348
| hr | Croatian | |

src/locale/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import fi from './translations/fi'
1515
import fo from './translations/fo'
1616
import fr from './translations/fr'
1717
import ge from './translations/ge'
18+
import gl from './translations/gl'
1819
import he from './translations/he'
1920
import hr from './translations/hr'
2021
import hu from './translations/hu'
@@ -63,6 +64,7 @@ export {
6364
fo,
6465
fr,
6566
ge,
67+
gl,
6668
he,
6769
hr,
6870
hu,

src/locale/translations/gl.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import Language from '../Language'
2+
3+
export default new Language(
4+
'Galician',
5+
['Xaneiro', 'Febreiro', 'Marzo', 'Abril', 'Maio', 'Xuño', 'Xullo', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Decembro'],
6+
['Xan', 'Feb', 'Mar', 'Abr', 'Mai', 'Xuñ', 'Xul', 'Ago', 'Set', 'Out', 'Nov', 'Dec'],
7+
['Dom', 'Lun', 'Mar', 'Mér', 'Xov', 'Ven', 'Sáb']
8+
)
9+
// eslint-disable-next-line
10+
;

0 commit comments

Comments
 (0)