1<?php
2/**
3 * English language file for fetchmedia plugin
4 *
5 * @author Michael Große <dokuwiki@cosmocode.de>
6 */
7
8// menu entry for admin plugins
9$lang['menu'] = 'Fetch external media-files';
10
11
12$lang['label: namespace input'] = 'Namespace to download';
13$lang['label: all media'] = 'Both types of media';
14$lang['label: windows shares'] = 'Only Windows-File-Shares';
15$lang['label: common media only'] = 'Only common media files';
16$lang['label: button search'] = 'Search for external media files';
17
18$lang['title: namespace input hint'] = 'Valid namespaces can consist of lowercase letters, numbers and the "_", "-" and ":" characters';
19
20$lang['error: windows share missing'] = 'Windows share doesn\'t exist or the server hasn\'t sufficient access rights for it';
21$lang['error: windows share not readable'] = 'Windows share is not readable.';
22$lang['error: failed to open stream'] = 'Failed to open stream';
23$lang['error: failed to download file'] = 'Failed to download file';
24$lang['error: page is locked'] = 'Page is locked by %s';
25$lang['error: windows share is directory'] = 'Link goes to a directory instead of file';
26
27$lang['js']['table-heading: page'] = 'Page ��';
28$lang['js']['table-heading: links'] = 'Links ��';
29$lang['js']['table-heading: results'] = 'Results';
30$lang['js']['error: no links found'] = 'No links found in the given namespace.';
31$lang['js']['error: error retrieving links'] = 'An error occured while retrieving the media links.';
32$lang['js']['label: button download'] = 'Download Now';
33$lang['js']['message: waiting for response'] = 'Waiting for a response...';
34
35
36//Setup VIM: ex: et ts=4 :
37