Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo: function is missing closing parenthesis #585

Conversation

patrickgramatowski
Copy link
Contributor

Fixes typo for 'store_translations' function - issue #575

Fixes typo for 'store_translations' function - issue ruby-i18n#575
@patrickgramatowski patrickgramatowski marked this pull request as ready for review November 20, 2021 16:02
Comment on lines +266 to +269
# rule: {
# 'ü' => 'ue',
# 'ö' => 'oe'
# }
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure why rubocop sees this hash with '=>' syntax as valid.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As valid or invalid?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As valid, as far as I understand, rubocop should shout at me to change this but it actually does not do it and maybe it's because of multi-level nesting?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@radar so WDYT, should we stick to the rubocop convention and add something like this:

#     store_translations(:de, i18n: {
#                          transliterate: {
#                            rule: {
#                              'ü': 'ue',
#                              'ö': 'oe'
#                            }
#                          }
#                        })

or maybe stick to the existing convention like that:

    #     store_translations(:de, :i18n => {
    #       :transliterate => {
    #         :rule => {
    #           "ü" => "ue",
    #           "ö" => "oe"
    #         }
    #       }
    #     })

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm guessing Rubocop doesn't mind if it's a string or a symbol in this case because it's not an ascii character. I don't know the exact reason, and I don't have a preference for one over the other.

@radar radar merged commit 3ae91d3 into ruby-i18n:master Nov 25, 2021
@patrickgramatowski patrickgramatowski deleted the Fix-typo-function-is-missing-closing-parenthesis branch November 25, 2021 08:00
@patrickgramatowski patrickgramatowski restored the Fix-typo-function-is-missing-closing-parenthesis branch November 25, 2021 08:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants