xref: /plugin/gitbacked/lang/en/settings.php (revision 4eba9b4410a4f784af648e9143efe5d4aa10464a)
1fa53f2a3SWolfgang Gassler<?php
2fa53f2a3SWolfgang Gassler
3fa53f2a3SWolfgang Gassler/**
4fa53f2a3SWolfgang Gassler * English strings for the gitbacked plugin
5fa53f2a3SWolfgang Gassler *
6fa53f2a3SWolfgang Gassler * @author Wolfgang Gassler <wolfgang@gassler.org>
7fa53f2a3SWolfgang Gassler */
8fa53f2a3SWolfgang Gassler
9fa53f2a3SWolfgang Gassler$lang['pushAfterCommit'] = 'Push active branch to remote origin after every commit';
10b92b117aSWolfgang Gassler$lang['periodicPull'] = 'Pull the remote git repository every "periodicMinutes" triggered by a http page request';
11b92b117aSWolfgang Gassler$lang['periodicMinutes'] = 'Timespan (in minutes) between periodic pull requests';
12442c3981SWolfgang Gassler$lang['commitPageMsg']	= 'Commit message for page edits (%user%,%summary%,%page% are replaced by the corresponding values)';
13442c3981SWolfgang Gassler$lang['commitPageMsgDel']	= 'Commit message for deleted pages (%user%,%summary%,%page% are replaced by the corresponding values)';
14442c3981SWolfgang Gassler$lang['commitMediaMsg']	= 'Commit message for media files (%user%,%media% are replaced by the corresponding values)';
15442c3981SWolfgang Gassler$lang['commitMediaMsgDel']	= 'Commit message for deleted media files (%user%,%media% are replaced by the corresponding values)';
16fa53f2a3SWolfgang Gassler$lang['repoPath']	= 'Path of the git repo (e.g. the savedir '.$GLOBALS['conf']['savedir'].')';
17*4eba9b44SDanny Lin$lang['repoWorkDir']	= 'Path of the git working tree, must contain "pages" and "media" directories (e.g. the savedir '.$GLOBALS['conf']['savedir'].')';
18be81f8ffSWolfgang Gassler$lang['addParams'] = 'Additional git parameters (added to the git execution command)';