blob: 4acaad1306973b098294446b9ed276cd9358fe98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* English favorites translations
*/
$english = array(
'favorites:items' => 'Favorites',
'favorites:menu' => 'Favorites',
'favorites:groups' => 'Favorite Groups',
'favorites:users' => 'Favorite Inhabitants',
'favorites:add' => 'Click to mark as Favorite',
'favorites:remove' => 'Click to remove from Favorites',
'favorites:widget:title' => 'Favorites',
'favorites:widget:description' => 'Shows the recent Favorites',
'favorites:removed' => 'Item removed from Favorites',
'favorites:removefailed' => 'Could not remove item from Favorites',
'favorites:added' => 'Item added to Favorites',
'favorites:addfailed' => 'Could not add item to Favorites',
'favorites:numbertodisplay' => 'Select the number of Favorites to display'
);
add_translation("en",$english);
|