<?php
/**
 * english language file
 */
 
// settings must be present and set appropriately for the language
$lang['encoding']   = 'utf-8';
$lang['direction']  = 'ltr';
 
// for admin plugins, the menu prompt to be displayed in the admin menu
// if set here, the plugin doesn't need to override the getMenuText() method
$lang['menu']           = 'darcs repository';

// custom language strings for the plugin
$lang['head_new']       = 'new patches ';

$lang['name']           = 'Name';
$lang['date']           = 'Date';
$lang['author']         = 'Author';
$lang['description']    = 'Description';
$lang['remove']         = 'remove';
$lang['update']         = 'update';
$lang['patches']        = 'Patches';
$lang['plugins']        = 'Plugins';

$lang['bt_update']      = 'Apply all';
$lang['bt_update_sel']  = 'Update selected';
$lang['bt_remove_sel']  = 'Remove selected';
$lang['bt_back']        = 'Back';

$lang['yes']            = 'Yes';
$lang['no']             = 'No';


$lang['stdout']         = 'darcs output';

$lang['install_plugin'] = 'Install a new plugin using darcs';
$lang['remove_warn']    = 'Really remove these plugins?';

$lang['get_plugin']     = 'Get';


$lang['error_dir']      = 'directory does not exist';
$lang['error_darcs']    = 'repository error';
$lang['error_u2d']      = 'repository is up to date';
$lang['error_ndp']      = 'no plugin repositories found';
$lang['error_pe']       = 'plugin already exists \\\\ remove it first';
