Adding gitbacked version 2023-05-07 (00885c3).
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e643a7cdf9
commit
21dcd0a5ac
24 changed files with 2270 additions and 0 deletions
6
plugins/55/gitbacked/lang/de/lang.php
Normal file
6
plugins/55/gitbacked/lang/de/lang.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
$lang['mail_create_new_error_subject'] = 'gitbacked plugin: FEHLER beim Anlegen eines neuen Git Repositories';
|
||||
$lang['mail_repo_path_error_subject'] = 'gitbacked plugin: Ein FEHLER mit dem konfigurierten Pfad zum Git Repository ist aufgetreten';
|
||||
$lang['mail_command_error_subject'] = 'gitbacked plugin: Ein Git Befehl ist FEHLGESCHLAGEN';
|
||||
$lang['mail_command_success_subject'] = 'gitbacked plugin: Ein Git Befehl wurde ausgeführt';
|
19
plugins/55/gitbacked/lang/de/mail_command_error.txt
Normal file
19
plugins/55/gitbacked/lang/de/mail_command_error.txt
Normal file
|
@ -0,0 +1,19 @@
|
|||
==== Der folgende Git Befehl ist FEHLGESCHLAGEN auf @DOKUWIKIURL@ ====
|
||||
|
||||
* **Repo Pfad:** <code>@GIT_REPO_PATH@</code>
|
||||
|
||||
* **Aktuelles Arbeitsverzeichnis:** <code>@GIT_CWD@</code>
|
||||
|
||||
* **Befehl:** <code>@GIT_COMMAND@</code>
|
||||
|
||||
* **Exitcode:** <code>@GIT_COMMAND_EXITCODE@</code>
|
||||
|
||||
* **Fehler:** <code>@GIT_ERROR_MESSAGE@</code>
|
||||
|
||||
* **Anwender:** <code>@NAME@</code>
|
||||
|
||||
* **eMail:** <code>@MAIL@</code>
|
||||
|
||||
* **Browser:** <code>@BROWSER@</code>
|
||||
|
||||
* **Wiki:** <code>@TITLE@ @DOKUWIKIURL@</code>
|
15
plugins/55/gitbacked/lang/de/mail_command_success.txt
Normal file
15
plugins/55/gitbacked/lang/de/mail_command_success.txt
Normal file
|
@ -0,0 +1,15 @@
|
|||
==== Der folgende Git Befehl wurde ausgeführt auf @DOKUWIKIURL@ ====
|
||||
|
||||
* **Repo Pfad:** <code>@GIT_REPO_PATH@</code>
|
||||
|
||||
* **Aktuelles Arbeitsverzeichnis:** <code>@GIT_CWD@</code>
|
||||
|
||||
* **Befehl:** <code>@GIT_COMMAND@</code>
|
||||
|
||||
* **Anwender:** <code>@NAME@</code>
|
||||
|
||||
* **eMail:** <code>@MAIL@</code>
|
||||
|
||||
* **Browser:** <code>@BROWSER@</code>
|
||||
|
||||
* **Wiki:** <code>@TITLE@ @DOKUWIKIURL@</code>
|
15
plugins/55/gitbacked/lang/de/mail_create_new_error.txt
Normal file
15
plugins/55/gitbacked/lang/de/mail_create_new_error.txt
Normal file
|
@ -0,0 +1,15 @@
|
|||
==== FEHLER beim Anlegen eines neuen Git Repositories auf @DOKUWIKIURL@ ====
|
||||
|
||||
* **Repo Pfad:** <code>@GIT_REPO_PATH@</code>
|
||||
|
||||
* **Referenz:** <code>@GIT_REFERENCE@</code>
|
||||
|
||||
* **Fehler:** <code>@GIT_ERROR_MESSAGE@</code>
|
||||
|
||||
* **Anwender:** <code>@NAME@</code>
|
||||
|
||||
* **eMail:** <code>@MAIL@</code>
|
||||
|
||||
* **Browser:** <code>@BROWSER@</code>
|
||||
|
||||
* **Wiki:** <code>@TITLE@ @DOKUWIKIURL@</code>
|
13
plugins/55/gitbacked/lang/de/mail_repo_path_error.txt
Normal file
13
plugins/55/gitbacked/lang/de/mail_repo_path_error.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
==== Ein FEHLER mit dem konfigurierten Git Repository Pfad ist aufgetreten auf @DOKUWIKIURL@ ====
|
||||
|
||||
* **Repo Pfad:** <code>@GIT_REPO_PATH@</code>
|
||||
|
||||
* **Fehler:** <code>@GIT_ERROR_MESSAGE@</code>
|
||||
|
||||
* **Anwender:** <code>@NAME@</code>
|
||||
|
||||
* **eMail:** <code>@MAIL@</code>
|
||||
|
||||
* **Browser:** <code>@BROWSER@</code>
|
||||
|
||||
* **Wiki:** <code>@TITLE@ @DOKUWIKIURL@</code>
|
22
plugins/55/gitbacked/lang/de/settings.php
Normal file
22
plugins/55/gitbacked/lang/de/settings.php
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* German strings for the gitbacked plugin
|
||||
*
|
||||
* @author Markus Hoffrogge <mhoffrogge@gmail.com>
|
||||
*/
|
||||
|
||||
$lang['pushAfterCommit'] = 'Push des aktiven Branch zum remote origin nach jedem commit';
|
||||
$lang['periodicPull'] = 'Pull des remote git Repositories alle "periodicMinutes", getriggert von einem http Page Request';
|
||||
$lang['periodicMinutes'] = 'Zeitraum (in Minuten) zwischen den periodischen pull requests';
|
||||
$lang['commitPageMsg'] = 'Commit Kommentar für Seitenänderungen (%user%,%summary%,%page% werden durch die tatsächlichen Werte ersetzt)';
|
||||
$lang['commitPageMsgDel'] = 'Commit Kommentar für gelöschte Seiten (%user%,%summary%,%page% werden durch die tatsächlichen Werte ersetzt)';
|
||||
$lang['commitMediaMsg'] = 'Commit Kommentar for media Dateien (%user%,%media% werden durch die tatsächlichen Werte ersetzt)';
|
||||
$lang['commitMediaMsgDel'] = 'Commit Kommentar für gelöschte media Dateien (%user%,%media% werden durch die tatsächlichen Werte ersetzt)';
|
||||
$lang['repoPath'] = 'Pfad des git repo (z.B. das <code>savedir</code> '.$GLOBALS['conf']['savedir'].')';
|
||||
$lang['repoWorkDir'] = 'Pfad des git working tree. Dieser muss die "pages" and "media" Verzeichnisse enthalten (z.B. das <code>savedir</code> '.$GLOBALS['conf']['savedir'].')';
|
||||
$lang['gitPath'] = 'Pfad zum git binary (Wenn leer, dann wird der Standard "/usr/bin/git" verwendet)';
|
||||
$lang['addParams'] = 'Zusätzliche git Parameter (diese werden dem git Kommando zugefügt) (%user% und %mail% werden durch die tatsächlichen Werte ersetzt)';
|
||||
$lang['ignorePaths'] = 'Pfade/Dateien die ignoriert werden und nicht von git archiviert werden sollen (durch Kommata getrennt)';
|
||||
$lang['emailAddressOnError'] = 'Wenn definiert, dann wird bei einem Fehler eine eMail an diese Adresse(n) gesendet, anstatt den aktuellen Endanwender mit einer Exception zu verunsichern. Mehrere Adressen können durch Kommata getrennt konfiguriert werden';
|
||||
$lang['notifyByMailOnSuccess'] = 'Wenn <code>emailAddressOnError</code> definiert ist, dann wird bei jedem Commit eine eMail gesendet. Diese Einstellung sollte nur zum Testen der eMail Benachrichtigung aktiviert werden';
|
6
plugins/55/gitbacked/lang/en/lang.php
Normal file
6
plugins/55/gitbacked/lang/en/lang.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
$lang['mail_create_new_error_subject'] = 'gitbacked plugin: The creation of a new Git repo FAILED';
|
||||
$lang['mail_repo_path_error_subject'] = 'gitbacked plugin: A FAILURE with the Git repo path occurred';
|
||||
$lang['mail_command_error_subject'] = 'gitbacked plugin: A Git command FAILED';
|
||||
$lang['mail_command_success_subject'] = 'gitbacked plugin: A Git command was performed';
|
19
plugins/55/gitbacked/lang/en/mail_command_error.txt
Normal file
19
plugins/55/gitbacked/lang/en/mail_command_error.txt
Normal file
|
@ -0,0 +1,19 @@
|
|||
==== The following Git command FAILED on @DOKUWIKIURL@ ====
|
||||
|
||||
* **Repo path:** <code>@GIT_REPO_PATH@</code>
|
||||
|
||||
* **Current working dir:** <code>@GIT_CWD@</code>
|
||||
|
||||
* **Command:** <code>@GIT_COMMAND@</code>
|
||||
|
||||
* **Exitcode:** <code>@GIT_COMMAND_EXITCODE@</code>
|
||||
|
||||
* **Error:** <code>@GIT_ERROR_MESSAGE@</code>
|
||||
|
||||
* **User:** <code>@NAME@</code>
|
||||
|
||||
* **eMail:** <code>@MAIL@</code>
|
||||
|
||||
* **Browser:** <code>@BROWSER@</code>
|
||||
|
||||
* **Wiki:** <code>@TITLE@ @DOKUWIKIURL@</code>
|
15
plugins/55/gitbacked/lang/en/mail_command_success.txt
Normal file
15
plugins/55/gitbacked/lang/en/mail_command_success.txt
Normal file
|
@ -0,0 +1,15 @@
|
|||
==== The following Git command was performed on @DOKUWIKIURL@ ====
|
||||
|
||||
* **Repo path:** <code>@GIT_REPO_PATH@</code>
|
||||
|
||||
* **Current working dir:** <code>@GIT_CWD@</code>
|
||||
|
||||
* **Command:** <code>@GIT_COMMAND@</code>
|
||||
|
||||
* **User:** <code>@NAME@</code>
|
||||
|
||||
* **eMail:** <code>@MAIL@</code>
|
||||
|
||||
* **Browser:** <code>@BROWSER@</code>
|
||||
|
||||
* **Wiki:** <code>@TITLE@ @DOKUWIKIURL@</code>
|
15
plugins/55/gitbacked/lang/en/mail_create_new_error.txt
Normal file
15
plugins/55/gitbacked/lang/en/mail_create_new_error.txt
Normal file
|
@ -0,0 +1,15 @@
|
|||
==== The creation of a new Git repo FAILED on @DOKUWIKIURL@ ====
|
||||
|
||||
* **Repo path:** <code>@GIT_REPO_PATH@</code>
|
||||
|
||||
* **Reference:** <code>@GIT_REFERENCE@</code>
|
||||
|
||||
* **Error:** <code>@GIT_ERROR_MESSAGE@</code>
|
||||
|
||||
* **User:** <code>@NAME@</code>
|
||||
|
||||
* **eMail:** <code>@MAIL@</code>
|
||||
|
||||
* **Browser:** <code>@BROWSER@</code>
|
||||
|
||||
* **Wiki:** <code>@TITLE@ @DOKUWIKIURL@</code>
|
13
plugins/55/gitbacked/lang/en/mail_repo_path_error.txt
Normal file
13
plugins/55/gitbacked/lang/en/mail_repo_path_error.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
==== An FAILURE with the Git repo path occurred on @DOKUWIKIURL@ ====
|
||||
|
||||
* **Repo path:** <code>@GIT_REPO_PATH@</code>
|
||||
|
||||
* **Error:** <code>@GIT_ERROR_MESSAGE@</code>
|
||||
|
||||
* **User:** <code>@NAME@</code>
|
||||
|
||||
* **eMail:** <code>@MAIL@</code>
|
||||
|
||||
* **Browser:** <code>@BROWSER@</code>
|
||||
|
||||
* **Wiki:** <code>@TITLE@ @DOKUWIKIURL@</code>
|
22
plugins/55/gitbacked/lang/en/settings.php
Normal file
22
plugins/55/gitbacked/lang/en/settings.php
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* English strings for the gitbacked plugin
|
||||
*
|
||||
* @author Wolfgang Gassler <wolfgang@gassler.org>
|
||||
*/
|
||||
|
||||
$lang['pushAfterCommit'] = 'Push active branch to remote origin after every commit';
|
||||
$lang['periodicPull'] = 'Pull the remote git repository every "periodicMinutes" triggered by a http page request';
|
||||
$lang['periodicMinutes'] = 'Timespan (in minutes) between periodic pull requests';
|
||||
$lang['commitPageMsg'] = 'Commit message for page edits (%user%,%summary%,%page% are replaced by the corresponding values)';
|
||||
$lang['commitPageMsgDel'] = 'Commit message for deleted pages (%user%,%summary%,%page% are replaced by the corresponding values)';
|
||||
$lang['commitMediaMsg'] = 'Commit message for media files (%user%,%media% are replaced by the corresponding values)';
|
||||
$lang['commitMediaMsgDel'] = 'Commit message for deleted media files (%user%,%media% are replaced by the corresponding values)';
|
||||
$lang['repoPath'] = 'Path of the git repo(s) (e.g. the savedir '.$GLOBALS['conf']['savedir'].')';
|
||||
$lang['repoWorkDir'] = 'Path of the git working tree, must contain "pages" and "media" directories (e.g. the savedir '.$GLOBALS['conf']['savedir'].')';
|
||||
$lang['gitPath'] = 'Path to the git binary (if empty, the default "/usr/bin/git" will be used)';
|
||||
$lang['addParams'] = 'Additional git parameters (added to the git execution command) (%user% and %mail% are replaced by the corresponding values)';
|
||||
$lang['ignorePaths'] = 'Paths/files which are ignored and not added to git (comma-separated)';
|
||||
$lang['emailAddressOnError'] = 'If set, in case of a git error an eMail will be sent to this address rather than confusing the end user by the Exception raised. Multiple mail addresses can be configured comma separated';
|
||||
$lang['notifyByMailOnSuccess'] = 'If <code>emailAddressOnError</code> is defined, an eMail will be sent on any git commit. This is supposed to be used for eMail notification test purposes only';
|
Loading…
Add table
Add a link
Reference in a new issue