smartnsoft / FlappyTranslator

A tool which automatically generates Flutter localization resources from CSV and Excel files.
MIT License
57 stars 20 forks source link

For strings with parameters, validate names #35

Closed defuncart closed 3 years ago

defuncart commented 3 years ago

For a loca strings of the form

test;My var: %do$d
test2;Another var: %new$d
...

code generator will fail as the variable name is a reserved keyword in dart. Thus, before generating methods for a loca string with a variable, the variable name should be tested to ensure that it is not a reserved keyword.