1<?php
2/**
3 * english language file
4 */
5
6// settings must be present and set appropriately for the language
7$lang['encoding']   = 'utf-8';
8$lang['direction']  = 'ltr';
9
10// for admin plugins, the menu prompt to be displayed in the admin menu
11// if set here, the plugin doesn't need to override the getMenuText() method
12$lang['menu']           = 'darcs repository';
13
14// custom language strings for the plugin
15$lang['head_new']       = 'new patches ';
16
17$lang['name']           = 'Name';
18$lang['date']           = 'Date';
19$lang['author']         = 'Author';
20$lang['description']    = 'Description';
21$lang['remove']         = 'remove';
22$lang['update']         = 'update';
23$lang['patches']        = 'Patches';
24$lang['plugins']        = 'Plugins';
25
26$lang['bt_update']      = 'Apply all';
27$lang['bt_update_sel']  = 'Update selected';
28$lang['bt_remove_sel']  = 'Remove selected';
29$lang['bt_back']        = 'Back';
30
31$lang['yes']            = 'Yes';
32$lang['no']             = 'No';
33
34
35$lang['stdout']         = 'darcs output';
36
37$lang['install_plugin'] = 'Install a new plugin using darcs';
38$lang['remove_warn']    = 'Really remove these plugins?';
39
40$lang['get_plugin']     = 'Get';
41
42
43$lang['error_dir']      = 'directory does not exist';
44$lang['error_darcs']    = 'repository error';
45$lang['error_u2d']      = 'repository is up to date';
46$lang['error_ndp']      = 'no plugin repositories found';
47$lang['error_pe']       = 'plugin already exists \\\\ remove it first';
48