1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
<?php
/** Maori (Māori)
*
* @package MediaWiki
* @subpackage Language
*/
$messages = array(
# Dates
'sunday' => 'Rātapu',
'monday' => 'Rāhina',
'tuesday' => 'Rātū',
'wednesday' => 'Rāapa',
'thursday' => 'Rāpare',
'friday' => 'Rāmere',
'saturday' => 'Rāhoroi',
'january' => 'Kohi-tātea',
'february' => 'Hui-tanguru',
'march' => 'Poutū-te-rangi',
'april' => 'Paenga-whāwhā',
'may_long' => 'Haratua',
'june' => 'Pipiri',
'july' => 'Hōngongoi',
'august' => 'Here-turi-kōkā',
'september' => 'Mahuru',
'october' => 'Whiringa-ā-nuku',
'november' => 'Whiringa-ā-rangi',
'december' => 'Hakihea',
'mainpage' => 'Hau Kāinga',
'portal' => 'Tomokanga hapori',
'portal-url' => 'Project:Tomokanga hapori',
'help' => 'Whakamārama',
'sitesupport' => 'Koha',
'cancel' => 'Whakakore',
'qbspecialpages' => 'Whārangi motuhake',
'mytalk' => 'Karere mōku',
'navigation' => 'Huarahi',
'currentevents' => 'Kōrero',
'currentevents-url' => 'Project:Kōrero',
'search' => 'Rapua',
'go' => 'Haere',
'history' => 'Kōrero Nehe',
'history_short' => 'Tuhinga/kaituhi',
'printableversion' => 'Tāia',
'permalink' => 'Hononga toitū',
'edit' => 'Whakatika',
'delete' => 'tangohia',
'protect' => 'Whakangungua',
'talk' => 'Kōrerorero',
'toolbox' => 'Pouaka utauta',
'toc' => 'Rārangi kōrero',
'showtoc' => 'whakakite',
'hidetoc' => 'hunaia',
# Short words for each namespace, by default used in the 'article' tab in monobook
'nstab-main' => 'tuhi pānui',
'nstab-template' => 'papa tauira',
'nstab-help' => 'Āwhina',
'nstab-category' => 'Wāhanga',
# Login and logout pages
'userlogout' => 'Whakarere',
# Edit pages
'savearticle' => 'Tiaki',
'showdiff' => 'Tiro rerekētanga',
# Preferences page
'preferences' => 'Kōwhiringa',
# Recent changes
'recentchanges' => 'Rerekētanga hōu',
'hide' => 'Hunaia',
'show' => 'Whakaaturia',
# Upload
'upload' => 'Tuku atu',
# Miscellaneous special pages
'allpages' => 'Ngā whārangi katoa',
'randompage' => 'Tipihaere',
'specialpages' => 'Whārangi motuhake',
'recentchangeslinked' => 'Rerekētanga pū tahi',
'move' => 'Nekehia',
# Special:Allpages
'allpagessubmit' => 'Haere',
# Watchlist
'watchlist' => 'Rārangi mātaki',
'watch' => 'Mātaki',
'unwatch' => 'kāti te mātaki',
# Contributions
'contributions' => 'Ngā mahi a tēnei mema',
'mycontris' => 'āku mahi',
# What links here
'whatlinkshere' => 'Ngā hononga mai',
# Namespace 8 related
'allmessages' => 'Pānui pūnaha',
);
?>
|