blob: 5f0f4ad7bcfa074d08f91fcc3983cfda21453232 (
plain)
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
|
<?php
/**
* External pages English language file
*/
$english = array(
/**
* Menu items and titles
*/
'expages' => "Site pages",
'admin:appearance:expages' => "Site Pages",
'expages:about' => "About",
'expages:terms' => "Terms",
'expages:privacy' => "Privacy",
'expages:contact' => "Contact",
'expages:notset' => "This page has not been set up yet.",
/**
* Status messages
*/
'expages:posted' => "Your page was successfully updated.",
'expages:error' => "Unable to save this page.",
);
add_translation("en", $english);
|