Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!9650
Load locale settings instead of hardcoding them
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Load locale settings instead of hardcoding them
issue/drupal-3477277:3477277-locale-settings-not
into
11.x
Overview
20
Commits
22
Pipelines
15
Changes
4
Closed
Fran Garcia-Linares
requested to merge
issue/drupal-3477277:3477277-locale-settings-not
into
11.x
8 months ago
Overview
15
Commits
22
Pipelines
15
Changes
4
Expand
Closes
#3477277
0
0
Merge request reports
Compare
11.x
version 14
dc78182c
6 months ago
version 13
a56d69c6
6 months ago
version 12
37163de6
6 months ago
version 11
0c80b8d4
6 months ago
version 10
7a15b809
6 months ago
version 9
22f9ac8b
6 months ago
version 8
18d4b4aa
6 months ago
version 7
935d2ede
6 months ago
version 6
7a5a2a56
6 months ago
version 5
4afe32f8
6 months ago
version 4
8292c82d
7 months ago
version 3
930b4f56
8 months ago
version 2
d57e4255
8 months ago
version 1
2cf12782
8 months ago
11.x (base)
and
latest version
latest version
46f56d78
22 commits,
6 months ago
version 14
dc78182c
21 commits,
6 months ago
version 13
a56d69c6
20 commits,
6 months ago
version 12
37163de6
19 commits,
6 months ago
version 11
0c80b8d4
18 commits,
6 months ago
version 10
7a15b809
17 commits,
6 months ago
version 9
22f9ac8b
16 commits,
6 months ago
version 8
18d4b4aa
15 commits,
6 months ago
version 7
935d2ede
14 commits,
6 months ago
version 6
7a5a2a56
13 commits,
6 months ago
version 5
4afe32f8
12 commits,
6 months ago
version 4
8292c82d
11 commits,
7 months ago
version 3
930b4f56
10 commits,
8 months ago
version 2
d57e4255
2 commits,
8 months ago
version 1
2cf12782
1 commit,
8 months ago
4 files
+
15
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
core/includes/install.core.inc
+
1
−
1
Options
@@ -249,7 +249,7 @@ function install_state_defaults() {
// The server URL where the interface translation files can be downloaded.
// Tokens in the pattern will be replaced by appropriate values for the
// required translation file.
'server_pattern'
=>
'https://ftp.drupal.org/files/translations/%core/%project/%project-%version.%language.po'
,
'server_pattern'
=>
\Drupal
::
TRANSLATION_DEFAULT_SERVER_PATTERN
,
// Installation tasks can set this to TRUE to force the page request to
// end (even if there is no themeable output), in the case of an interactive
// installation. This is needed only rarely; for example, it would be used
Loading