ChiliProject is not maintained anymore. Please be advised that there will be no more updates.

We do not recommend that you setup new ChiliProject instances and we urge all existing users to migrate their data to a maintained system, e.g. Redmine. We will provide a migration script later. In the meantime, you can use the instructions by Christian Daehn.

Deprecation - Locales using curly braces

Reason

The i18n gem allows string interpolation so values can be passed into the locales dynamically. Due to changes in the gem, the old style is not supported anymore (some ).

How to fix

Change any double curly braces to the new %{ } format. Example:

1  # From...
2  text_deprecation: "This is a string " 
1  # To...
2  text_deprecation: "This is a string %{ foo }" 

Deprecated When

1.2.0

Removed When

2.0.0

References: https://www.chiliproject.org/boards/2/topics/243