Skip to content

Commit ca653cf

Browse files
author
JosephK
committed
Merge branch 'spelling' into 'master'
Fix typos See merge request !177
2 parents de6de7d + fd3526c commit ca653cf

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

app/inc/config.template.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
// Fully qualified domain name of your webserver.
2121
// If this is unset or empty, the servername is determined automatically.
22-
// You *have to set this* if you are running Framedate behind a reverse proxy.
22+
// You *have to set this* if you are running Framadate behind a reverse proxy.
2323
// const APP_URL = '<www.mydomain.fr>';
2424

2525
// Application name
@@ -40,7 +40,7 @@
4040
// Database server name, leave empty to use a socket
4141
const DB_CONNECTION_STRING = 'mysql:host=<database host>;dbname=<database name>;port=<database port>';
4242

43-
// Name of the table that store migration script already executed
43+
// Name of the table that stores migration script already executed
4444
const MIGRATION_TABLE = 'framadate_migration';
4545

4646
// Table name prefix
@@ -61,7 +61,7 @@
6161
'br' => 'Brezhoneg',
6262
];
6363

64-
// Nom et emplacement du fichier image contenant le titre
64+
// Path to image file with the title
6565
const IMAGE_TITRE = 'images/logo-framadate.png';
6666

6767
// Clean URLs, boolean
@@ -73,7 +73,7 @@
7373
// Path to the log file
7474
const LOG_FILE = 'admin/stdout.log';
7575

76-
// Days (after expiration date) before purge a poll
76+
// Days (after expiration date) before purging a poll
7777
const PURGE_DELAY = 60;
7878

7979
// Max slots per poll
@@ -89,7 +89,7 @@
8989
/* home */
9090
'show_what_is_that' => true, // display "how to use" section
9191
'show_the_software' => true, // display technical information about the software
92-
'show_cultivate_your_garden' => true, // display "developpement and administration" information
92+
'show_cultivate_your_garden' => true, // display "development and administration" information
9393
/* create_classic_poll.php / create_date_poll.php */
9494
'default_poll_duration' => 180, // default values for the new poll duration (number of days).
9595
/* create_classic_poll.php */

tpl/admin/config.tpl

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
// Fully qualified domain name of your webserver.
2121
// If this is unset or empty, the servername is determined automatically.
22-
// You *have to set this* if you are running Framedate behind a reverse proxy.
22+
// You *have to set this* if you are running Framadate behind a reverse proxy.
2323
// const APP_URL = '<www.mydomain.fr>';
2424

2525
// Application name
@@ -43,7 +43,7 @@ const DB_PASSWORD = '{$dbPassword|addslashes_single_quote}';
4343
// Table name prefix
4444
const TABLENAME_PREFIX = '{$dbPrefix}';
4545

46-
// Name of the table that store migration script already executed
46+
// Name of the table that stores migration script already executed
4747
const MIGRATION_TABLE = '{$migrationTable}';
4848

4949
// Default Language
@@ -61,7 +61,7 @@ $ALLOWED_LANGUAGES = [
6161
'br' => 'Brezhoneg',
6262
];
6363

64-
// Nom et emplacement du fichier image contenant le titre
64+
// Path to image file with the title
6565
const IMAGE_TITRE = 'images/logo-framadate.png';
6666

6767
// Clean URLs, boolean
@@ -73,7 +73,7 @@ const USE_REMOTE_USER = true;
7373
// Path to the log file
7474
const LOG_FILE = 'admin/stdout.log';
7575

76-
// Days (after expiration date) before purge a poll
76+
// Days (after expiration date) before purging a poll
7777
const PURGE_DELAY = 60;
7878

7979
// Max slots per poll
@@ -89,7 +89,7 @@ $config = [
8989
/* home */
9090
'show_what_is_that' => true, // display "how to use" section
9191
'show_the_software' => true, // display technical information about the software
92-
'show_cultivate_your_garden' => true, // display "developpement and administration" information
92+
'show_cultivate_your_garden' => true, // display "development and administration" information
9393
/* create_classic_poll.php / create_date_poll.php */
9494
'default_poll_duration' => 180, // default values for the new poll duration (number of days).
9595
/* create_classic_poll.php */

0 commit comments

Comments
 (0)