For romanian and french-canadian translations there are next lines in the __Latest.SqlDataProvider.sql__
```
INSERT INTO [dbo].[BugNet_Languages] ([CultureCode], [CultureName], [FallbackCulture]) VALUES('ro-RO', 'Romanian (Romania)', 'ro-RO')
GO
INSERT INTO [dbo].[BugNet_Languages] ([CultureCode], [CultureName], [FallbackCulture]) VALUES('fr-CA', 'French (Canadian)', 'fr-CA')
GO
```
Why fallback culture codes points to itself instead of en-US?
```
INSERT INTO [dbo].[BugNet_Languages] ([CultureCode], [CultureName], [FallbackCulture]) VALUES('ro-RO', 'Romanian (Romania)', 'ro-RO')
GO
INSERT INTO [dbo].[BugNet_Languages] ([CultureCode], [CultureName], [FallbackCulture]) VALUES('fr-CA', 'French (Canadian)', 'fr-CA')
GO
```
Why fallback culture codes points to itself instead of en-US?