Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
288
Merge Requests
288
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
2c994156
Commit
2c994156
authored
Oct 11, 2012
by
webchick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#1808374
by SebCorbin: Fixed Wrong plural for french in locale tests.
parent
594be7b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php
...locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php
+6
-6
No files found.
core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php
View file @
2c994156
...
...
@@ -74,7 +74,7 @@ function testGetPluralFormat() {
1
=>
'@count hours'
,
),
'fr'
=>
array
(
0
=>
'
1
heure'
,
0
=>
'
@count
heure'
,
1
=>
'@count heures'
,
),
'hr'
=>
array
(
...
...
@@ -153,7 +153,7 @@ function testPluralEditExport() {
// Ensure our imported translations exist in the file.
$this
->
assertRaw
(
"msgid
\"
Monday
\"\n
msgstr
\"
lundi
\"
"
,
t
(
'French translations present in exported file.'
));
// Check for plural export specifically.
$this
->
assertRaw
(
"msgid
\"
1 hour
\"\n
msgid_plural
\"
@count hours
\"\n
msgstr[0]
\"
1 heure
\"\n
msgstr[1]
\"
@count heures
\"
"
,
t
(
'Plural translations exported properly.'
)
);
$this
->
assertRaw
(
"msgid
\"
1 hour
\"\n
msgid_plural
\"
@count hours
\"\n
msgstr[0]
\"
@count heure
\"\n
msgstr[1]
\"
@count heures
\"
"
,
'Plural translations exported properly.'
);
// Get the Croatian translations.
$this
->
drupalPost
(
'admin/config/regional/translate/export'
,
array
(
...
...
@@ -196,13 +196,13 @@ function testPluralEditExport() {
);
$this
->
drupalPost
(
'admin/config/regional/translate/translate'
,
$search
,
t
(
'Filter'
));
// Plural values for the langcode fr.
$this
->
assertText
(
'
1
heure'
);
$this
->
assertText
(
'
@count
heure'
);
$this
->
assertText
(
'@count heures'
);
$this
->
assertNoText
(
'2. plural form'
);
// Edit langcode fr translations and see if that took effect.
$edit
=
array
(
'strings[10][translations][0]'
=>
'
1
heure edited'
,
'strings[10][translations][0]'
=>
'
@count
heure edited'
,
);
$this
->
drupalPost
(
$path
,
$edit
,
t
(
'Save translations'
));
...
...
@@ -245,7 +245,7 @@ function testPluralEditExport() {
'langcode'
=>
'fr'
,
),
t
(
'Export'
));
// Check for plural export specifically.
$this
->
assertRaw
(
"msgid
\"
1 hour
\"\n
msgid_plural
\"
@count hours
\"\n
msgstr[0]
\"
1 heure edited
\"\n
msgstr[1]
\"
@count heures
\"
"
,
t
(
'Edited French plural translations for hours exported properly.'
)
);
$this
->
assertRaw
(
"msgid
\"
1 hour
\"\n
msgid_plural
\"
@count hours
\"\n
msgstr[0]
\"
@count heure edited
\"\n
msgstr[1]
\"
@count heures
\"
"
,
'Edited French plural translations for hours exported properly.'
);
$this
->
assertRaw
(
"msgid
\"
1 day
\"\n
msgid_plural
\"
@count days
\"\n
msgstr[0]
\"
1 jour
\"\n
msgstr[1]
\"
@count jours
\"
"
,
t
(
'Added French plural translations for days exported properly.'
));
// Get the Croatian translations.
...
...
@@ -288,7 +288,7 @@ function getPoFileWithSimplePlural() {
msgid
"1 hour"
msgid_plural
"@count hours"
msgstr
[
0
]
"
1
heure"
msgstr
[
0
]
"
@count
heure"
msgstr
[
1
]
"@count heures"
msgid
"Monday"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment