blob: c2f17f6bb0767ef5ee88f47a50f335a462ad2b31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/**
* English
*/
$english = array(
// Plugin user settings options
'landing:mode:opt:custom' => 'A Custom Page',
'landing:mode:opt:dashboard' => 'Your Dashboard',
'landing:mode:opt:default' => 'Site Default',
'landing:mode:opt:profile' => 'Your Profile',
// Plugin user settings labels
'landing:settings:choose_option' => 'Choose landing destination',
'landing:settings:custom_url_tip' => 'If you chose "A Custom Page", enter the path to the page, e.g.: "/g/lorea"',
'landing:settings:select_url' => 'Choose the default page where you want to go after you log in from the front page:',
);
add_translation('en', $english);
|