Skip to content

Adding translations to existing group misplaces keys #56

@danon

Description

@danon

You want to add "group.subgroup.key1000". Before:

'group' => [
    'key1' => 'value1',
    'key2' => 'value2'
]

After

'group' => [

    'subgroup' => [
        'key1000' => 'value100'
    ],              'key1' => 'value1',
    'key2' => 'value2'
]

Should be

'group' => [
    'subgroup' => [
        'key1000' => 'value100'
    ],              
    'key1' => 'value1',
    'key2' => 'value2'
]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions