We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e81fc6 commit dfa8a0fCopy full SHA for dfa8a0f
configurator/lib/src/utils/i18n_generator.dart
@@ -343,7 +343,8 @@ void _generateList({
343
depth: depth + 1,
344
);
345
} else if (value is ObjectNode) {
346
- final String key = depth.toString() + 'i' + i.toString();
+ // final String key = depth.toString() + 'i' + i.toString();
347
+ final String key = node.path.split('.').last.canonicalize + depth.toString() + 'i' + i.toString();
348
final String childClassNoLocale =
349
getClassName(parentName: className, childName: key);
350
configurator_flutter/pubspec.yaml
@@ -29,7 +29,7 @@ dependencies:
29
git:
30
url: [email protected]:camrongiuliani/configurator.git
31
path: configurator
32
- ref: 0.0.17
+ ref: 0.0.18
33
34
dev_dependencies:
35
flutter_test:
0 commit comments