1<?php
2/**
3 * English language file for farmsync plugin
4 *
5 * @author Michael Große <grosse@cosmocode.de>
6 */
7
8// menu entry for admin plugins
9$lang['menu'] = 'Farming-Updates';
10
11$lang['merge_animal'] = 'The conflicting text in the animal.';
12$lang['merge_source'] = 'The conflicting text in the source.';
13
14$lang['heading:Update animals'] = 'Update pages and media in farm animals';
15$lang['heading:Update done'] = 'Finished updating the animals:';
16$lang['heading:animal noconflict'] = '%s: updated without conflicts';
17$lang['heading:animal conflict'] = '%s: <span>%d</span> conflicts to solve';
18$lang['heading:conflicts'] = 'Remaining Conflicts:';
19$lang['heading:templates'] = 'Templates';
20$lang['heading:pages'] = 'Pages';
21$lang['heading:media'] = 'Media';
22$lang['heading:struct'] = 'Struct';
23
24$lang['legend:choose source'] = 'Source from which to update';
25$lang['legend:choose animals'] = 'Animals to update';
26$lang['legend:choose documents'] = 'Documents to update';
27
28$lang['label:source'] = 'Source';
29$lang['label:PageEntry'] = 'Pages/Namespaces to update';
30$lang['label:MediaEntry'] = "Media/Media-Namespaces to update";
31$lang['label:struct synchronisation'] = 'Synchronize struct data?';
32
33$lang['progress:pages'] = 'Pages of <b>%s</b>(%s/%s) are done';
34$lang['progress:templates'] = 'Templates of <b>%s</b>(%s/%s) are done';
35$lang['progress:media'] = 'Media-files of <b>%s</b>(%s/%s) are done';
36$lang['progress:struct'] = 'Struct-data of <b>%s</b>(%s/%s) is done';
37
38$lang['mergeresult:new file'] = 'is new file';
39$lang['mergeresult:file overwritten'] = 'was overwritten';
40$lang['mergeresult:merged without conflicts'] = 'was merged automatically';
41$lang['mergeresult:merged with conflicts'] = 'has conflicts';
42$lang['mergeresult:unchanged'] = 'remained unchanged';
43
44$lang['button:edit'] = "Edit";
45$lang['button:cancel'] = "Cancel";
46$lang['button:keep'] = "Keep theirs";
47$lang['button:overwrite'] = "Overwrite theirs";
48$lang['button:edit'] = "Edit";
49$lang['button:diff'] = "Show diff";
50$lang['button:submit'] = "Submit";
51
52$lang['link:nocoflictitems'] = 'Toggle nonconflicting items';
53$lang['link:srcversion'] = 'Source Version';
54$lang['link:dstversion'] = 'Target Version';
55
56$lang['diff:animal'] = "Page currently at Animal";
57$lang['diff:source'] = "Page to be copied from Source";
58
59$lang['notice:struct disabled'] = "To synchronize struct data, enable the plugin in the farmer.";
60
61$lang['js']['done'] = 'Done!';
62
63//Setup VIM: ex: et ts=4 :
64