1<?php 2 3$lang['menu'] = 'Synchronize Wikis'; 4 5$lang['syncstart'] = 'Start Synchronization'; 6$lang['lastsync'] = 'Last Synchronization:'; 7$lang['remotever'] = 'Remote Wiki Version:'; 8 9$lang['xmlerr'] = 'Failed to talk to remote wiki. Make sure the remote wiki allows XMLRPC requests and that you set up the endpoint URL correctly.'; 10$lang['loginerr'] = 'Failed to login at remote wiki. Make sure supplied credentials are valid at the remote wiki.'; 11$lang['versionerr'] = 'The remote wiki XMLRPC API version is too old. You need to upgrade the remote wiki to use the sync plugin.'; 12 13$lang['neversync'] = 'This profile was never synced before.'; 14$lang['profile'] = 'Sync Profile'; 15$lang['newprofile'] = 'New Profile...'; 16$lang['select'] = 'Select'; 17$lang['create'] = 'Create new Sync Profile'; 18$lang['edit'] = 'Edit Sync Profile'; 19$lang['delete'] = 'Delete Sync Profile'; 20 21$lang['server'] = 'XMLRPC URL'; 22$lang['user'] = 'Username'; 23$lang['pass'] = 'Password'; 24$lang['ns'] = 'Namespace'; 25$lang['depth'] = 'Sync Depth'; 26$lang['level0'] = 'All sub namespaces'; 27$lang['level1'] = 'No sub namespaces'; 28$lang['level2'] = 'Namespace + 1 sub namespace'; 29$lang['level3'] = 'Namespace + 2 sub namespaces'; 30$lang['type'] = 'What to sync'; 31$lang['type0'] = 'Everything'; 32$lang['type1'] = 'Pages only'; 33$lang['type2'] = 'Media files'; 34 35 36$lang['save'] = 'Save'; 37$lang['changewarn'] = 'Resaving this profile will reset the sync times. You will need to manually choose the sync directions for all files on the next sync.'; 38 39$lang['lockfail'] = 'couldn\'t lock and will skip:'; 40$lang['pullfail'] = 'pull failed:'; 41$lang['pullok'] = 'pull succeded:'; 42$lang['localdelok'] = 'local delete succeeded:'; 43$lang['localdelfail'] = 'local delete failed:'; 44$lang['pushfail'] = 'push failed:'; 45$lang['pushok'] = 'push succeded:'; 46$lang['remotedelok'] = 'remote delete succeeded:'; 47$lang['remotedelfail'] = 'remote delete failed:'; 48$lang['skipped'] = 'skipped:'; 49 50$lang['file'] = 'Page or Media File'; 51$lang['local'] = 'Local Wiki'; 52$lang['remote'] = 'Remote Wiki'; 53$lang['diff'] = 'Diff'; 54 55$lang['push'] = 'Push local revision to remote wiki.'; 56$lang['pushdel'] = 'Delete revision at the remote wiki.'; 57$lang['pull'] = 'Pull remote revision to local wiki.'; 58$lang['pulldel'] = 'Delete local revision.'; 59$lang['keep'] = 'Skip this file and keep both revisions as is.'; 60 61$lang['syncdone'] = 'Synchronization finished.'; 62$lang['timeout'] = 'Timeout'; 63