Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
f35a5d0d
Commit
f35a5d0d
authored
Aug 30, 2017
by
Bob Van Landuyt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Split translation & metadata entries into classes
parent
c6d96994
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
271 additions
and
238 deletions
+271
-238
lib/gitlab/i18n/metadata_entry.rb
lib/gitlab/i18n/metadata_entry.rb
+24
-0
lib/gitlab/i18n/po_entry.rb
lib/gitlab/i18n/po_entry.rb
+8
-86
lib/gitlab/i18n/po_linter.rb
lib/gitlab/i18n/po_linter.rb
+14
-10
lib/gitlab/i18n/translation_entry.rb
lib/gitlab/i18n/translation_entry.rb
+68
-0
spec/lib/gitlab/i18n/metadata_entry_spec.rb
spec/lib/gitlab/i18n/metadata_entry_spec.rb
+28
-0
spec/lib/gitlab/i18n/po_entry_spec.rb
spec/lib/gitlab/i18n/po_entry_spec.rb
+7
-127
spec/lib/gitlab/i18n/po_linter_spec.rb
spec/lib/gitlab/i18n/po_linter_spec.rb
+16
-15
spec/lib/gitlab/i18n/translation_entry_spec.rb
spec/lib/gitlab/i18n/translation_entry_spec.rb
+106
-0
No files found.
lib/gitlab/i18n/metadata_entry.rb
0 → 100644
View file @
f35a5d0d
module
Gitlab
module
I18n
class
MetadataEntry
<
PoEntry
def
expected_plurals
return
nil
unless
plural_information
nplurals
=
plural_information
[
'nplurals'
].
to_i
if
nplurals
>
0
nplurals
end
end
private
def
plural_information
return
@plural_information
if
defined?
(
@plural_information
)
if
plural_line
=
entry_data
[
:msgstr
].
detect
{
|
metadata_line
|
metadata_line
.
starts_with?
(
'Plural-Forms: '
)
}
@plural_information
=
Hash
[
plural_line
.
scan
(
/(\w+)=([^;\n]+)/
)]
end
end
end
end
end
lib/gitlab/i18n/po_entry.rb
View file @
f35a5d0d
module
Gitlab
module
Gitlab
module
I18n
module
I18n
class
PoEntry
class
PoEntry
attr_reader
:entry_data
def
self
.
build
(
entry_data
)
if
entry_data
[
:msgid
].
empty?
def
initialize
(
entry_data
)
MetadataEntry
.
new
(
entry_data
)
@entry_data
=
entry_data
else
end
TranslationEntry
.
new
(
entry_data
)
def
msgid
entry_data
[
:msgid
]
end
def
metadata?
msgid
.
empty?
end
def
plural_id
entry_data
[
:msgid_plural
]
end
def
plural?
plural_id
.
present?
end
def
singular_translation
plural?
?
entry_data
[
'msgstr[0]'
]
:
entry_data
[
:msgstr
]
end
def
all_translations
@all_translations
||=
entry_data
.
fetch_values
(
*
translation_keys
).
reject
(
&
:empty?
)
end
def
translated?
all_translations
.
any?
end
def
plural_translations
return
[]
unless
plural?
return
[]
unless
translated?
# The singular translation is used if there's only translation. This is
# the case for languages without plurals.
return
all_translations
if
all_translations
.
size
==
1
entry_data
.
fetch_values
(
*
plural_translation_keys
)
end
def
flag
entry_data
[
:flag
]
end
def
expected_plurals
return
nil
unless
metadata?
return
nil
unless
plural_information
nplurals
=
plural_information
[
'nplurals'
].
to_i
if
nplurals
>
0
nplurals
end
end
# When a translation is a plural, but only has 1 translation, we could be
# talking about a language in which plural and singular is the same thing.
# In which case we always translate as a plural.
def
has_singular?
!
plural?
||
all_translations
.
size
>
1
end
private
def
plural_information
return
nil
unless
metadata?
return
@plural_information
if
defined?
(
@plural_information
)
if
plural_line
=
entry_data
[
:msgstr
].
detect
{
|
metadata_line
|
metadata_line
.
starts_with?
(
'Plural-Forms: '
)
}
@plural_information
=
Hash
[
plural_line
.
scan
(
/(\w+)=([^;\n]+)/
)]
end
end
end
end
def
plural_translation_keys
attr_reader
:entry_data
@plural_translation_keys
||=
translation_keys
.
select
do
|
key
|
plural_index
=
key
.
scan
(
/\d+/
).
first
.
to_i
plural_index
>
0
end
end
def
translation_keys
def
initialize
(
entry_data
)
@translation_keys
||=
if
plural?
@entry_data
=
entry_data
entry_data
.
keys
.
select
{
|
key
|
key
=~
/msgstr\[\d+\]/
}
else
[
:msgstr
]
end
end
end
end
end
end
end
...
...
lib/gitlab/i18n/po_linter.rb
View file @
f35a5d0d
...
@@ -3,7 +3,7 @@ require 'simple_po_parser'
...
@@ -3,7 +3,7 @@ require 'simple_po_parser'
module
Gitlab
module
Gitlab
module
I18n
module
I18n
class
PoLinter
class
PoLinter
attr_reader
:po_path
,
:
entries
,
:metadata
,
:locale
attr_reader
:po_path
,
:
translation_entries
,
:metadata_entry
,
:locale
VARIABLE_REGEX
=
/%{\w*}|%[a-z]/
.
freeze
VARIABLE_REGEX
=
/%{\w*}|%[a-z]/
.
freeze
...
@@ -25,20 +25,23 @@ module Gitlab
...
@@ -25,20 +25,23 @@ module Gitlab
end
end
def
parse_po
def
parse_po
@entries
=
SimplePoParser
.
parse
(
po_path
).
map
{
|
data
|
Gitlab
::
I18n
::
PoEntry
.
new
(
data
)
}
entries
=
SimplePoParser
.
parse
(
po_path
).
map
{
|
data
|
Gitlab
::
I18n
::
PoEntry
.
build
(
data
)
}
@metadata
=
@entries
.
detect
{
|
entry
|
entry
.
metadata?
}
# The first entry is the metadata entry if there is one.
# This is an entry when empty `msgid`
@metadata_entry
=
entries
.
shift
if
entries
.
first
.
is_a?
(
Gitlab
::
I18n
::
MetadataEntry
)
@translation_entries
=
entries
nil
nil
rescue
SimplePoParser
::
ParserError
=>
e
rescue
SimplePoParser
::
ParserError
=>
e
@entries
=
[]
@
translation_
entries
=
[]
e
.
message
e
.
message
end
end
def
validate_entries
def
validate_entries
errors
=
{}
errors
=
{}
entries
.
each
do
|
entry
|
translation_entries
.
each
do
|
entry
|
next
if
entry
.
metadata?
errors_for_entry
=
validate_entry
(
entry
)
errors_for_entry
=
validate_entry
(
entry
)
errors
[
join_message
(
entry
.
msgid
)]
=
errors_for_entry
if
errors_for_entry
.
any?
errors
[
join_message
(
entry
.
msgid
)]
=
errors_for_entry
if
errors_for_entry
.
any?
end
end
...
@@ -58,11 +61,12 @@ module Gitlab
...
@@ -58,11 +61,12 @@ module Gitlab
end
end
def
validate_number_of_plurals
(
errors
,
entry
)
def
validate_number_of_plurals
(
errors
,
entry
)
return
unless
metadata
&
.
expected_plurals
return
unless
metadata
_entry
&
.
expected_plurals
return
unless
entry
.
translated?
return
unless
entry
.
translated?
if
entry
.
plural?
&&
entry
.
all_translations
.
size
!=
metadata
.
expected_plurals
if
entry
.
plural?
&&
entry
.
all_translations
.
size
!=
metadata_entry
.
expected_plurals
errors
<<
"should have
#{
metadata
.
expected_plurals
}
#{
'translations'
.
pluralize
(
metadata
.
expected_plurals
)
}
"
errors
<<
"should have
#{
metadata_entry
.
expected_plurals
}
"
\
"
#{
'translations'
.
pluralize
(
metadata_entry
.
expected_plurals
)
}
"
end
end
end
end
...
...
lib/gitlab/i18n/translation_entry.rb
0 → 100644
View file @
f35a5d0d
module
Gitlab
module
I18n
class
TranslationEntry
<
PoEntry
def
msgid
entry_data
[
:msgid
]
end
def
plural_id
entry_data
[
:msgid_plural
]
end
def
plural?
plural_id
.
present?
end
def
singular_translation
plural?
?
entry_data
[
'msgstr[0]'
]
:
entry_data
[
:msgstr
]
end
def
all_translations
@all_translations
||=
entry_data
.
fetch_values
(
*
translation_keys
).
reject
(
&
:empty?
)
end
def
translated?
all_translations
.
any?
end
def
plural_translations
return
[]
unless
plural?
return
[]
unless
translated?
# The singular translation is used if there's only translation. This is
# the case for languages without plurals.
return
all_translations
if
all_translations
.
size
==
1
entry_data
.
fetch_values
(
*
plural_translation_keys
)
end
def
flag
entry_data
[
:flag
]
end
# When a translation is a plural, but only has 1 translation, we could be
# talking about a language in which plural and singular is the same thing.
# In which case we always translate as a plural.
def
has_singular?
!
plural?
||
all_translations
.
size
>
1
end
private
def
plural_translation_keys
@plural_translation_keys
||=
translation_keys
.
select
do
|
key
|
plural_index
=
key
.
scan
(
/\d+/
).
first
.
to_i
plural_index
>
0
end
end
def
translation_keys
@translation_keys
||=
if
plural?
entry_data
.
keys
.
select
{
|
key
|
key
=~
/msgstr\[\d+\]/
}
else
[
:msgstr
]
end
end
end
end
end
spec/lib/gitlab/i18n/metadata_entry_spec.rb
0 → 100644
View file @
f35a5d0d
require
'spec_helper'
describe
Gitlab
::
I18n
::
MetadataEntry
do
describe
'#expected_plurals'
do
it
'returns the number of plurals'
do
data
=
{
msgid:
""
,
msgstr:
[
""
,
"Project-Id-Version: gitlab 1.0.0
\\
n"
,
"Report-Msgid-Bugs-To:
\\
n"
,
"PO-Revision-Date: 2017-07-13 12:10-0500
\\
n"
,
"Language-Team: Spanish
\\
n"
,
"Language: es
\\
n"
,
"MIME-Version: 1.0
\\
n"
,
"Content-Type: text/plain; charset=UTF-8
\\
n"
,
"Content-Transfer-Encoding: 8bit
\\
n"
,
"Plural-Forms: nplurals=2; plural=n != 1;
\\
n"
,
"Last-Translator: Bob Van Landuyt <bob@gitlab.com>
\\
n"
,
"X-Generator: Poedit 2.0.2
\\
n"
]
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
expected_plurals
).
to
eq
(
2
)
end
end
end
spec/lib/gitlab/i18n/po_entry_spec.rb
View file @
f35a5d0d
require
'spec_helper'
require
'spec_helper'
describe
Gitlab
::
I18n
::
PoEntry
do
describe
Gitlab
::
I18n
::
PoEntry
do
describe
'#singular_translation'
do
describe
'.build'
do
it
'returns the normal `msgstr` for translations without plural'
do
it
'builds a metadata entry when the msgid is empty'
do
data
=
{
msgid:
'Hello world'
,
msgstr:
'Bonjour monde'
}
entry
=
described_class
.
build
(
msgid:
''
)
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
singular_translation
).
to
eq
(
'Bonjour monde'
)
expect
(
entry
).
to
be_kind_of
(
Gitlab
::
I18n
::
MetadataEntry
)
end
end
it
'returns the first string for entries with plurals'
do
it
'builds a translation entry when the msgid is empty'
do
data
=
{
entry
=
described_class
.
build
(
msgid:
'Hello world'
)
msgid:
'Hello world'
,
msgid_plural:
'Hello worlds'
,
'msgstr[0]'
=>
'Bonjour monde'
,
'msgstr[1]'
=>
'Bonjour mondes'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
singular_translation
).
to
eq
(
'Bonjour monde'
)
expect
(
entry
).
to
be_kind_of
(
Gitlab
::
I18n
::
TranslationEntry
)
end
end
describe
'#all_translations'
do
it
'returns all translations for singular translations'
do
data
=
{
msgid:
'Hello world'
,
msgstr:
'Bonjour monde'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
all_translations
).
to
eq
([
'Bonjour monde'
])
end
it
'returns all translations when including plural translations'
do
data
=
{
msgid:
'Hello world'
,
msgid_plural:
'Hello worlds'
,
'msgstr[0]'
=>
'Bonjour monde'
,
'msgstr[1]'
=>
'Bonjour mondes'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
all_translations
).
to
eq
([
'Bonjour monde'
,
'Bonjour mondes'
])
end
end
describe
'#plural_translations'
do
it
'returns all translations if there is only one plural'
do
data
=
{
msgid:
'Hello world'
,
msgid_plural:
'Hello worlds'
,
'msgstr[0]'
=>
'Bonjour monde'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
plural_translations
).
to
eq
([
'Bonjour monde'
])
end
it
'returns all translations except for the first one if there are multiple'
do
data
=
{
msgid:
'Hello world'
,
msgid_plural:
'Hello worlds'
,
'msgstr[0]'
=>
'Bonjour monde'
,
'msgstr[1]'
=>
'Bonjour mondes'
,
'msgstr[2]'
=>
'Bonjour tous les mondes'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
plural_translations
).
to
eq
([
'Bonjour mondes'
,
'Bonjour tous les mondes'
])
end
end
end
describe
'#expected_plurals'
do
it
'returns nil when the entry is an actual translation'
do
data
=
{
msgid:
'Hello world'
,
msgstr:
'Bonjour monde'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
expected_plurals
).
to
be_nil
end
it
'returns the number of plurals'
do
data
=
{
msgid:
""
,
msgstr:
[
""
,
"Project-Id-Version: gitlab 1.0.0
\\
n"
,
"Report-Msgid-Bugs-To:
\\
n"
,
"PO-Revision-Date: 2017-07-13 12:10-0500
\\
n"
,
"Language-Team: Spanish
\\
n"
,
"Language: es
\\
n"
,
"MIME-Version: 1.0
\\
n"
,
"Content-Type: text/plain; charset=UTF-8
\\
n"
,
"Content-Transfer-Encoding: 8bit
\\
n"
,
"Plural-Forms: nplurals=2; plural=n != 1;
\\
n"
,
"Last-Translator: Bob Van Landuyt <bob@gitlab.com>
\\
n"
,
"X-Generator: Poedit 2.0.2
\\
n"
]
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
expected_plurals
).
to
eq
(
2
)
end
end
describe
'#has_singular?'
do
it
'has a singular when the translation is not pluralized'
do
data
=
{
msgid:
'hello world'
,
msgstr:
'hello'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
).
to
have_singular
end
it
'has a singular when plural and singular are separately defined'
do
data
=
{
msgid:
'hello world'
,
msgid_plural:
'hello worlds'
,
"msgstr[0]"
=>
'hello world'
,
"msgstr[1]"
=>
'hello worlds'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
).
to
have_singular
end
it
'does not have a separate singular if the plural string only has one translation'
do
data
=
{
msgid:
'hello world'
,
msgid_plural:
'hello worlds'
,
"msgstr[0]"
=>
'hello worlds'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
).
not_to
have_singular
end
end
end
end
end
spec/lib/gitlab/i18n/po_linter_spec.rb
View file @
f35a5d0d
...
@@ -102,7 +102,8 @@ describe Gitlab::I18n::PoLinter do
...
@@ -102,7 +102,8 @@ describe Gitlab::I18n::PoLinter do
it
'fills in the entries'
do
it
'fills in the entries'
do
linter
.
parse_po
linter
.
parse_po
expect
(
linter
.
entries
).
not_to
be_empty
expect
(
linter
.
translation_entries
).
not_to
be_empty
expect
(
linter
.
metadata_entry
).
to
be_kind_of
(
Gitlab
::
I18n
::
MetadataEntry
)
end
end
it
'does not have errors'
do
it
'does not have errors'
do
...
@@ -120,21 +121,18 @@ describe Gitlab::I18n::PoLinter do
...
@@ -120,21 +121,18 @@ describe Gitlab::I18n::PoLinter do
it
'sets the entries to an empty array'
do
it
'sets the entries to an empty array'
do
linter
.
parse_po
linter
.
parse_po
expect
(
linter
.
entries
).
to
eq
([])
expect
(
linter
.
translation_
entries
).
to
eq
([])
end
end
end
end
end
end
describe
'#validate_entries'
do
describe
'#validate_entries'
do
it
'skips entries without a `msgid`'
do
allow
(
linter
).
to
receive
(
:entries
)
{
[
Gitlab
::
I18n
::
PoEntry
.
new
({
msgid:
""
})]
}
expect
(
linter
.
validate_entries
).
to
be_empty
end
it
'keeps track of errors for entries'
do
it
'keeps track of errors for entries'
do
fake_invalid_entry
=
Gitlab
::
I18n
::
PoEntry
.
new
({
msgid:
"Hello %{world}"
,
msgstr:
"Bonjour %{monde}"
})
fake_invalid_entry
=
Gitlab
::
I18n
::
TranslationEntry
.
new
(
allow
(
linter
).
to
receive
(
:entries
)
{
[
fake_invalid_entry
]
}
msgid:
"Hello %{world}"
,
msgstr:
"Bonjour %{monde}"
)
allow
(
linter
).
to
receive
(
:translation_entries
)
{
[
fake_invalid_entry
]
}
expect
(
linter
).
to
receive
(
:validate_entry
)
expect
(
linter
).
to
receive
(
:validate_entry
)
.
with
(
fake_invalid_entry
)
.
with
(
fake_invalid_entry
)
...
@@ -161,9 +159,9 @@ describe Gitlab::I18n::PoLinter do
...
@@ -161,9 +159,9 @@ describe Gitlab::I18n::PoLinter do
it
'validates when there are an incorrect number of translations'
do
it
'validates when there are an incorrect number of translations'
do
fake_metadata
=
double
fake_metadata
=
double
allow
(
fake_metadata
).
to
receive
(
:expected_plurals
).
and_return
(
2
)
allow
(
fake_metadata
).
to
receive
(
:expected_plurals
).
and_return
(
2
)
allow
(
linter
).
to
receive
(
:metadata
).
and_return
(
fake_metadata
)
allow
(
linter
).
to
receive
(
:metadata
_entry
).
and_return
(
fake_metadata
)
fake_entry
=
Gitlab
::
I18n
::
Po
Entry
.
new
(
fake_entry
=
Gitlab
::
I18n
::
Translation
Entry
.
new
(
msgid:
'the singular'
,
msgid:
'the singular'
,
msgid_plural:
'the plural'
,
msgid_plural:
'the plural'
,
'msgstr[0]'
=>
'the singular'
'msgstr[0]'
=>
'the singular'
...
@@ -178,7 +176,7 @@ describe Gitlab::I18n::PoLinter do
...
@@ -178,7 +176,7 @@ describe Gitlab::I18n::PoLinter do
describe
'#validate_variables'
do
describe
'#validate_variables'
do
it
'validates both signular and plural in a pluralized string when the entry has a singular'
do
it
'validates both signular and plural in a pluralized string when the entry has a singular'
do
pluralized_entry
=
Gitlab
::
I18n
::
Po
Entry
.
new
({
pluralized_entry
=
Gitlab
::
I18n
::
Translation
Entry
.
new
({
msgid:
'Hello %{world}'
,
msgid:
'Hello %{world}'
,
msgid_plural:
'Hello all %{world}'
,
msgid_plural:
'Hello all %{world}'
,
'msgstr[0]'
=>
'Bonjour %{world}'
,
'msgstr[0]'
=>
'Bonjour %{world}'
,
...
@@ -194,7 +192,7 @@ describe Gitlab::I18n::PoLinter do
...
@@ -194,7 +192,7 @@ describe Gitlab::I18n::PoLinter do
end
end
it
'only validates plural when there is no separate singular'
do
it
'only validates plural when there is no separate singular'
do
pluralized_entry
=
Gitlab
::
I18n
::
Po
Entry
.
new
({
pluralized_entry
=
Gitlab
::
I18n
::
Translation
Entry
.
new
({
msgid:
'Hello %{world}'
,
msgid:
'Hello %{world}'
,
msgid_plural:
'Hello all %{world}'
,
msgid_plural:
'Hello all %{world}'
,
'msgstr[0]'
=>
'Bonjour %{world}'
'msgstr[0]'
=>
'Bonjour %{world}'
...
@@ -207,7 +205,10 @@ describe Gitlab::I18n::PoLinter do
...
@@ -207,7 +205,10 @@ describe Gitlab::I18n::PoLinter do
end
end
it
'validates the message variables'
do
it
'validates the message variables'
do
entry
=
Gitlab
::
I18n
::
PoEntry
.
new
({
msgid:
'Hello'
,
msgstr:
'Bonjour'
})
entry
=
Gitlab
::
I18n
::
TranslationEntry
.
new
(
msgid:
'Hello'
,
msgstr:
'Bonjour'
)
expect
(
linter
).
to
receive
(
:validate_variables_in_message
)
expect
(
linter
).
to
receive
(
:validate_variables_in_message
)
.
with
([],
'Hello'
,
'Bonjour'
)
.
with
([],
'Hello'
,
'Bonjour'
)
...
...
spec/lib/gitlab/i18n/translation_entry_spec.rb
0 → 100644
View file @
f35a5d0d
require
'spec_helper'
describe
Gitlab
::
I18n
::
TranslationEntry
do
describe
'#singular_translation'
do
it
'returns the normal `msgstr` for translations without plural'
do
data
=
{
msgid:
'Hello world'
,
msgstr:
'Bonjour monde'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
singular_translation
).
to
eq
(
'Bonjour monde'
)
end
it
'returns the first string for entries with plurals'
do
data
=
{
msgid:
'Hello world'
,
msgid_plural:
'Hello worlds'
,
'msgstr[0]'
=>
'Bonjour monde'
,
'msgstr[1]'
=>
'Bonjour mondes'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
singular_translation
).
to
eq
(
'Bonjour monde'
)
end
end
describe
'#all_translations'
do
it
'returns all translations for singular translations'
do
data
=
{
msgid:
'Hello world'
,
msgstr:
'Bonjour monde'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
all_translations
).
to
eq
([
'Bonjour monde'
])
end
it
'returns all translations when including plural translations'
do
data
=
{
msgid:
'Hello world'
,
msgid_plural:
'Hello worlds'
,
'msgstr[0]'
=>
'Bonjour monde'
,
'msgstr[1]'
=>
'Bonjour mondes'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
all_translations
).
to
eq
([
'Bonjour monde'
,
'Bonjour mondes'
])
end
end
describe
'#plural_translations'
do
it
'returns all translations if there is only one plural'
do
data
=
{
msgid:
'Hello world'
,
msgid_plural:
'Hello worlds'
,
'msgstr[0]'
=>
'Bonjour monde'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
plural_translations
).
to
eq
([
'Bonjour monde'
])
end
it
'returns all translations except for the first one if there are multiple'
do
data
=
{
msgid:
'Hello world'
,
msgid_plural:
'Hello worlds'
,
'msgstr[0]'
=>
'Bonjour monde'
,
'msgstr[1]'
=>
'Bonjour mondes'
,
'msgstr[2]'
=>
'Bonjour tous les mondes'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
.
plural_translations
).
to
eq
([
'Bonjour mondes'
,
'Bonjour tous les mondes'
])
end
end
describe
'#has_singular?'
do
it
'has a singular when the translation is not pluralized'
do
data
=
{
msgid:
'hello world'
,
msgstr:
'hello'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
).
to
have_singular
end
it
'has a singular when plural and singular are separately defined'
do
data
=
{
msgid:
'hello world'
,
msgid_plural:
'hello worlds'
,
"msgstr[0]"
=>
'hello world'
,
"msgstr[1]"
=>
'hello worlds'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
).
to
have_singular
end
it
'does not have a separate singular if the plural string only has one translation'
do
data
=
{
msgid:
'hello world'
,
msgid_plural:
'hello worlds'
,
"msgstr[0]"
=>
'hello worlds'
}
entry
=
described_class
.
new
(
data
)
expect
(
entry
).
not_to
have_singular
end
end
end
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